@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.
11 lines (10 loc) • 440 B
TypeScript
import { SerializedVector } from '../BaseDefinitions';
import { FlatMesh as WebIfcFlatMesh, Vector as WebIfcVector } from 'web-ifc';
import { Serializer } from './Serializer';
export declare class FlatMeshVector implements WebIfcVector<WebIfcFlatMesh> {
private readonly _size;
private _data;
constructor(serializer: Serializer, vector: SerializedVector);
size(): number;
get(index: number): WebIfcFlatMesh;
}