web3d / node_modules /three /src /geometries /ShapeGeometry.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
502 Bytes
import { Shape } from './../extras/core/Shape';
import { Geometry } from './../core/Geometry';
import { BufferGeometry } from './../core/BufferGeometry';
export class ShapeBufferGeometry extends BufferGeometry {
constructor(shapes: Shape | Shape[], curveSegments?: number);
}
export class ShapeGeometry extends Geometry {
constructor(shapes: Shape | Shape[], curveSegments?: number);
addShapeList(shapes: Shape[], options: any): ShapeGeometry;
addShape(shape: Shape, options?: any): void;
}