File size: 361 Bytes
6cd9596
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { BufferAttribute, BufferGeometry } from '../../../src/Three';

export namespace BufferGeometryUtils {
    export function mergeBufferGeometries(geometries: BufferGeometry[]): BufferGeometry;
    export function computeTangents(geometry: BufferGeometry): null;
    export function mergeBufferAttributes(attributes: BufferAttribute[]): BufferAttribute;
}