BufferGeometryUtils.d.ts 382 B

1234567
  1. import { BufferAttribute, BufferGeometry } from '../../../src/Three';
  2. export namespace BufferGeometryUtils {
  3. export function mergeBufferGeometries(geometries: BufferGeometry[], useGroups?: boolean): BufferGeometry;
  4. export function computeTangents(geometry: BufferGeometry): null;
  5. export function mergeBufferAttributes(attributes: BufferAttribute[]): BufferAttribute;
  6. }