Add support for Point representations too, not just point cloud.

This commit is contained in:
Dion Moult
2023-07-10 10:23:20 +10:00
parent 4ed1eedbfc
commit a99f1e15cb
+1 -1
View File
@@ -892,7 +892,7 @@ class IfcImporter:
return None
for representation in representations:
if representation.RepresentationType == "PointCloud":
if representation.RepresentationType in ("PointCloud", "Point"):
return representation
elif self.file.schema == "IFC2X3" and representation.RepresentationType == "GeometricSet":