Skip to content

Commit

Permalink
fix IfcShapeRepresentationTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
SergejMuhic committed Jun 4, 2024
1 parent ff37ad5 commit 6ee0e41
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
CASE RepType OF
'Point' :
BEGIN
Count := SIZEOF(QUERY(temp <* Items | ('IFCGEOMETRYRESOURCE.IFCPOINT' IN TYPEOF(temp))));
Count := SIZEOF(QUERY(temp <* Items | ('IFCGEOMETRYRESOURCE.IFCPOINT' IN TYPEOF(temp))
OR ('IFCGEOMETRICMODELRESOURCE.IFCCARTESIANPOINTLIST' IN TYPEOF(temp))));
END;

'PointCloud' :
BEGIN
Count := SIZEOF(QUERY(temp <* Items | ('IFCGEOMETRYRESOURCE.IFCCARTESIANPOINTLIST3D' IN TYPEOF(temp))));
Count := SIZEOF(QUERY(temp <* Items | ('IFCGEOMETRICMODELRESOURCE.IFCCARTESIANPOINTLIST3D' IN TYPEOF(temp))));
END;

'Curve' :
Expand Down

0 comments on commit 6ee0e41

Please sign in to comment.