File size: 395 Bytes
2b7aae2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 };