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.
14 lines (13 loc) • 461 B
TypeScript
import { IFCModel } from '../../components/IFCModel';
import { SerializedMaterial } from './Material';
import { SerializedGeometry } from './Geometry';
export declare class SerializedMesh {
modelID: number;
geometry: SerializedGeometry;
materials: SerializedMaterial[];
constructor(model: IFCModel);
}
export declare class MeshReconstructor {
static new(serialized: SerializedMesh): IFCModel;
private static getMaterials;
}