UNPKG

three

Version:

JavaScript 3D library

18 lines (9 loc) 230 B
import { Line } from './Line.js'; class LineLoop extends Line { constructor( geometry, material ) { super( geometry, material ); this.type = 'LineLoop'; } } LineLoop.prototype.isLineLoop = true; export { LineLoop };