three
Version:
JavaScript 3D library
16 lines (10 loc) • 353 B
TypeScript
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 );
}
export { ShapeGeometry as ShapeBufferGeometry };