0
Revit APIを使用して部屋の現在の床と現在の天井を取得するにはどうすればよいですか?私は2012年版を使用しています。部屋の床と天井を取得
I`veは試してみました:
segments = el.GetBoundarySegments(new SpatialElementBoundaryOptions());
と:
var cs = el.ClosedShell;
もこの:
SpatialElementGeometryCalculator calculator =
new SpatialElementGeometryCalculator(doc);
SpatialElementGeometryResults results =
calculator.CalculateSpatialElementGeometry(el);
Solid roomSolid = results.GetGeometry();
foreach (Face face in roomSolid.Faces)
{
// Subface Code
}