From a99f1e15cb978410690657fcd89cbaf538642ddc Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Mon, 10 Jul 2023 10:23:20 +1000 Subject: [PATCH] Add support for Point representations too, not just point cloud. --- src/blenderbim/blenderbim/bim/import_ifc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blenderbim/blenderbim/bim/import_ifc.py b/src/blenderbim/blenderbim/bim/import_ifc.py index c2b85088ca..8018f7db72 100644 --- a/src/blenderbim/blenderbim/bim/import_ifc.py +++ b/src/blenderbim/blenderbim/bim/import_ifc.py @@ -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":