IfcViewerApi.addClippingPlane
简介: IfcViewerApi.addClippingPlane函数用于在IFC模型上添加剖切面。剖切面将在IFC模型中创建一个平面,从而达到将IFC模型剖开的效果。
方法原型: IfcViewerApi.addClippingPlane(planeNormal, planePoint, planeColor)
参数介绍:
示例代码:
var planeNormal = [1, 0, 0]; // 剖切面法线
var planePoint = [0, 0, 0]; // 剖切面过原点的点
var planeColor = [255, 0, 0, 255]; // 剖切面的颜色
IfcViewerApi.addClippingPlane(planeNormal, planePoint, planeColor);
以上代码将在IFC模型上添加一个法向量为(1, 0, 0)、过原点的点为(0, 0, 0)、颜色为红色的剖切面。若不需要剖切面的颜色,则可省略第三个参数。
注意: