下载app免费领取会员
获取房间内的构件,大致思路如下
房间是有边界和高度的,所以我们可以得到房间的边界和高度
来构造一个Solid,然后用过滤和这个Solid相交的构件
Revit API 提供了SpatialElementGeometryCalculator 这个类
可以方便的获取到房间的Solid
注意:这个Solid无法过滤到房间内部为房间边界的构件,如建筑柱勾选了房间边界后就过滤不到了
代码如下:
ElementId roomId = new ElementId(313062);
Document doc = commandData.Application.ActiveUIDocument.Document;
Room room = doc.GetElement(roomId) as Room;
SpatialElementGeometryCalculator segc = new SpatialElementGeometryCalculator(doc);
SpatialElementGeometryResults segr = segc.CalculateSpatialElementGeometry(room);
Solid solid = segr.GetGeometry();
FilteredElementCollector temc = new FilteredElementCollector(doc);
ElementIntersectsSolidFilter filter = new ElementIntersectsSolidFilter(solid);
temc.WherePasses(filter);
TaskDialog.Show("Num", temc.Count().ToString());
本文版权归腿腿教学网及原创作者所有,未经授权,谢绝转载。