Spaces:
Running
Running
| import { Line } from './Line.js'; | |
| class LineLoop extends Line { | |
| constructor(geometry, material) { | |
| super(geometry, material); | |
| this.type = 'LineLoop'; | |
| } | |
| } | |
| LineLoop.prototype.isLineLoop = true; | |
| export { LineLoop }; | |