LineLoop.js 257 B

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