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

/**
 * see {@link https://github.com/mrdoob/three.js/blob/master/src/core/InstancedBufferGeometry.js|src/core/InstancedBufferGeometry.js}
 */
export class InstancedBufferGeometry extends BufferGeometry {
	constructor();

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

	isInstancedBufferGeometry: boolean;

	/**
	 * @default Infinity
	 */
	instanceCount: number;
}