BimCT SDK / WebGL2 Viewer
    Preparing search index...

    Interface ModelInfo

    Represents information about a model.

    interface ModelInfo {
        id64: Int64;
        id: number;
        name: string;
        revision: string;
        filepath: string;
        fileformat: string;
        offsetX: number;
        offsetY: number;
        offsetZ: number;
        factor: number;
        is2D: boolean;
        camera: number[];
        matrix: number[];
        textures: Map<string, number>;
        dynamicElementInternalIds: Int64[];
        billboardElementInternalIds: Int64[];
        containsPointCloud?: boolean;
        location?: ModelLocation;
        cacheInfo?: ModelCacheInfo;
        mapping?: ModelIdMapping;
        splittedElements?: Map<bigint, Int64[]>;
        elementsFromSplit?: Map<bigint, SplitPartInfo>;
        elementsFromSplitByGUID?: Map<string, bigint>;
        cuttingElementModels?: Int64[];
    }
    Index

    Properties

    id64: Int64
    id: number
    name: string
    revision: string
    filepath: string
    fileformat: string
    offsetX: number
    offsetY: number
    offsetZ: number
    factor: number
    is2D: boolean
    camera: number[]
    matrix: number[]
    textures: Map<string, number>
    dynamicElementInternalIds: Int64[]
    billboardElementInternalIds: Int64[]
    containsPointCloud?: boolean
    location?: ModelLocation
    cacheInfo?: ModelCacheInfo
    mapping?: ModelIdMapping
    splittedElements?: Map<bigint, Int64[]>
    elementsFromSplit?: Map<bigint, SplitPartInfo>
    elementsFromSplitByGUID?: Map<string, bigint>
    cuttingElementModels?: Int64[]