Autodesk.Revit.DB.SpatialElementCalculationPoint是Revit API中的一个类,用于表示空间元素(例如房间或区域)的计算点。该计算点用于计算空间元素的位置和边界。
Autodesk.Revit.DB.SpatialElementCalculationPoint包括以下成员:
Method:SpatialElementCalculationPoint()
Property:Coordinate
Property:RoomVolumeComputationType
Property:RoomHeight
Property:IsRoomHeightCalculated
以下代码示例演示如何创建和设置SpatialElementCalculationPoint对象:
// 创建SpatialElementCalculationPoint对象
var calculationPoint = new SpatialElementCalculationPoint();
// 设置计算点坐标
calculationPoint.Coordinate = new XYZ(10.0, 10.0, 5.0);
// 设置房间计算方法为Simplified。
calculationPoint.RoomVolumeComputationType = RoomVolumeComputationType.Simplified;
// 设置房间高度为3.5米。
calculationPoint.RoomHeight = 3.5;
// 将自动计算房间高度设置为false。
calculationPoint.IsRoomHeightCalculated = false;
Autodesk.Revit.DB.SpatialElementCalculationPoint类是用于表示空间元素计算点的API类。可以通过设置坐标,房间计算方法和高度等属性来配置此类的实例。