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 1e3b45c0b8
commit 60ea504267
+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":