@@ -18,5 +18,7 @@ namespace SAGA.MBI.RevitExport
BoundarySegments = new List<List<BimId>>();
}
public List<List<BimId>> BoundarySegments { get; private set; }
+
+ public double Height { get; set; }
@@ -42,7 +42,8 @@ namespace SAGA.MBI.RevitExport.ParseElement
mbiSpace.Location =
GeometryLocation.CreatePointLocation(BimConvert.ConvertToXYZ(location));
-
+ mbiSpace.Height = (space.GetTopStaticHeight() - space.GetBaseStaticHeight()).FtToUse();
var segments = space.GetBoundarySegments(new SpatialElementBoundaryOptions());
if (segments != null)
{