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) 313 B
import { SerializedVector } from '../BaseDefinitions'; import { Vector as WebIfcVector } from 'web-ifc'; export declare class Vector<T> implements WebIfcVector<T> { private readonly _size; private _data; constructor(vector: SerializedVector); size(): number; get(index: number): T; }