LineLoop.js 230 B

1234567891011121314151617
  1. import { Line } from './Line.js';
  2. class LineLoop extends Line {
  3. constructor( geometry, material ) {
  4. super( geometry, material );
  5. this.type = 'LineLoop';
  6. }
  7. }
  8. LineLoop.prototype.isLineLoop = true;
  9. export { LineLoop };