UNPKG

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) 523 B
import { SerializedIfcGeometry } from '../BaseDefinitions'; import { IfcGeometry as WebIfcIfcGeometry } from 'web-ifc'; export declare class IfcGeometry implements WebIfcIfcGeometry { private readonly _GetVertexData; private readonly _GetVertexDataSize; private readonly _GetIndexData; private readonly _GetIndexDataSize; constructor(vector: SerializedIfcGeometry); GetVertexData(): number; GetVertexDataSize(): number; GetIndexData(): number; GetIndexDataSize(): number; }