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.

10 lines (9 loc) 408 B
import { SerializedFlatMesh } from '../BaseDefinitions'; import { FlatMesh as WebIfcFlatMesh, PlacedGeometry } from 'web-ifc'; import { Vector } from './Vector'; import { Serializer } from './Serializer'; export declare class FlatMesh implements WebIfcFlatMesh { geometries: Vector<PlacedGeometry>; expressID: number; constructor(serializer: Serializer, flatMesh: SerializedFlatMesh); }