|
@@ -220,7 +220,8 @@ namespace RevitToJBim.Common
|
|
|
public static List<XYZ> GetVertexPoints(Element element)
|
|
|
{
|
|
|
List<XYZ> xyzs = new List<XYZ>();
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -228,7 +229,7 @@ namespace RevitToJBim.Common
|
|
|
|
|
|
|
|
|
|
|
|
- var curves= Extension.GeometryElementExtension.GetGeometryObjects<Curve>(element, element.Document.GetUseView());
|
|
|
+ var curves= Extension.GeometryElementExtension.GetGeometryObjects<Curve>(element, element.Document.GetUseView(), true);
|
|
|
foreach (var curve in curves)
|
|
|
{
|
|
|
xyzs.AddRange(curve.Tessellate());
|