starry / backend /libs /three /geometries /ShapeGeometry.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { Shape } from './../extras/core/Shape';
import { BufferGeometry } from './../core/BufferGeometry';
export class ShapeGeometry extends BufferGeometry {
/**
* @default 'ShapShapeGeometryeBufferGeometry'
*/
type: string;
constructor(shapes?: Shape | Shape[], curveSegments?: number);
static fromJSON(data: any): ShapeGeometry;
}
export { ShapeGeometry as ShapeBufferGeometry };