LineLoop.js 218 B

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