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