UNPKG

377 BTypeScriptView Raw
1import { BufferGeometry } from '../core/BufferGeometry';
2
3export class EdgesGeometry extends BufferGeometry {
4 /**
5 * @param geometry
6 * @param [thresholdAngle=1]
7 */
8 constructor(geometry: BufferGeometry, thresholdAngle?: number);
9
10 /**
11 * @default 'EdgesGeometry'
12 */
13 type: string;
14
15 parameters: {
16 thresholdAngle: number;
17 };
18}