starry / backend /libs /three /geometries /ConeGeometry.js
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { CylinderGeometry } from './CylinderGeometry.js';
class ConeGeometry extends CylinderGeometry {
constructor(radius = 1, height = 1, radialSegments = 8, heightSegments = 1, openEnded = false, thetaStart = 0, thetaLength = Math.PI * 2) {
super(0, radius, height, radialSegments, heightSegments, openEnded, thetaStart, thetaLength);
this.type = 'ConeGeometry';
this.parameters = {
radius: radius,
height: height,
radialSegments: radialSegments,
heightSegments: heightSegments,
openEnded: openEnded,
thetaStart: thetaStart,
thetaLength: thetaLength,
};
}
static fromJSON(data) {
return new ConeGeometry(data.radius, data.height, data.radialSegments, data.heightSegments, data.openEnded, data.thetaStart, data.thetaLength);
}
}
export { ConeGeometry, ConeGeometry as ConeBufferGeometry };