IfcApi
IfcLoader
IfcViewerApi

IfcApi.GetIndexArray

简介

IfcApi.GetIndexArray是ifc.js库中的一个方法,用于获取指定实体对象的索引数组。ifc.js库是一个用于解析、查询IFC文件的JavaScript库。

方法原型

IfcApi.GetIndexArray(entity: IfcEntity): number[]

参数介绍

  • entity:类型为IfcEntity,表示要获取索引数组的实体对象。

示例代码

下面是一个示例代码,用于获取一个IfcWall标准墙的索引数组:

const ifcWall = // 获取IfcWall实体对象
const indexArray = IfcApi.GetIndexArray(ifcWall);
console.log(indexArray); // 输出索引数组

返回值

  • 返回值类型为number[],表示实体对象的索引数组。如果实体对象没有索引数组,则返回一个空数组。