UNPKG

three

Version:

JavaScript 3D library

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