IfcApi
IfcLoader
IfcViewerApi

IfcViewerApi.addGrid

简介

IfcViewerApi.addGrid方法用于在模型中添加网格。

方法原型

IfcViewerApi.addGrid(color, size, divisions)

参数介绍

  • color:网格颜色,可填写16进制颜色值或RGB颜色值。
  • size:网格大小,单位为米。
  • divisions:网格间隔数量。

示例代码

IfcViewerApi.addGrid('#cccccc', 10, 20);

以上代码将在模型中添加颜色为#cccccc的网格,大小为10米,间隔数量为20。