k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { Line } from './Line.js';
class LineLoop extends Line {
constructor(geometry, material) {
super(geometry, material);
this.type = 'LineLoop';
}
}
LineLoop.prototype.isLineLoop = true;
export { LineLoop };