Merge remote-tracking branch 'origin/v0.8.0' into tfk-rocksdb-storage

This commit is contained in:
Thomas Krijnen
2025-08-26 13:28:21 +02:00
2 changed files with 8 additions and 11 deletions
@@ -1146,7 +1146,7 @@ class ShapeBuilder:
if polyline.is_a("IfcIndexedPolyCurve"):
coords = np.array(polyline.Points.CoordList)
elif polyline.is_a("IfcPolyline"):
coords = np.array(p.Coordinates for p in polyline.Points)
coords = np.array(tuple(p.Coordinates for p in polyline.Points))
else:
raise Exception(f"Unsupported polyline type: {polyline.is_a()}")
return coords