Interface GeometryAsset<AssetID>

One shareable geometry payload an instance needs resident: the asset's identity and its byte size. For IFC, the asset is a representation's tessellated geometry and byteSize comes from the wasm-side extract.

interface GeometryAsset<AssetID> {
    assetID: AssetID;
    byteSize: number;
}

Type Parameters

  • AssetID

Properties

Properties

assetID: AssetID
byteSize: number