UNPKG

@ecogis/gis-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.

13 lines (12 loc) 509 B
import { IfcState } from '../BaseDefinitions'; export declare class IFCUtils { state: IfcState; map: { [key: string]: number; }; constructor(state: IfcState); isA(entity: any, entity_class: string): string | boolean | Promise<string>; byId(modelID: number, id: number): Promise<any>; idsByType(modelID: number, entity_class: string): Promise<import("web-ifc").Vector<number>>; byType(modelID: number, entity_class: string): Promise<number[] | undefined>; }