File size: 426 Bytes
2b7aae2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { BufferGeometry } from '../core/BufferGeometry';

export class EdgesGeometry<TBufferGeometry extends BufferGeometry = BufferGeometry> extends BufferGeometry {
	/**
	 * @param geometry
	 * @param [thresholdAngle=1]
	 */
	constructor(geometry?: TBufferGeometry, thresholdAngle?: number);

	/**
	 * @default 'EdgesGeometry'
	 */
	type: string;

	parameters: {
		geometry: TBufferGeometry;
		thresholdAngle: number;
	};
}