web-ifc-three
Version:
This library is the implementation of [web-ifc](https://github.com/tomvandig/web-ifc) for [THREE.js](https://github.com/mrdoob/three.js/). This is the official IFCLoader of Three.js.
18 lines (17 loc) • 508 B
TypeScript
import { BufferGeometry } from 'three';
export declare class SerializedGeometry {
position: ArrayLike<number>;
normal: ArrayLike<number>;
expressID: ArrayLike<number>;
index: ArrayLike<number>;
groups: {
start: number;
count: number;
materialIndex?: number;
}[];
constructor(geometry: BufferGeometry);
}
export declare class GeometryReconstructor {
static new(serialized: SerializedGeometry): BufferGeometry;
private static set;
}