UNPKG

412 BTypeScriptView Raw
1import { Shape } from './../extras/core/Shape';
2import { BufferGeometry } from './../core/BufferGeometry';
3
4export class ShapeGeometry extends BufferGeometry {
5 /**
6 * @default 'ShapShapeGeometryeBufferGeometry'
7 */
8 type: string;
9
10 constructor(shapes: Shape | Shape[], curveSegments?: number);
11
12 static fromJSON(data: any): ShapeGeometry;
13}
14
15export { ShapeGeometry as ShapeBufferGeometry };