Purge data recipe now also purges shape aspect names and layers.

This commit is contained in:
Dion Moult
2023-11-15 14:22:08 +11:00
parent c6454803ee
commit ad9ad3f060
@@ -173,3 +173,10 @@ class Patcher:
for element in self.file.by_type("IfcProfileDef"):
element.ProfileName = None
for element in self.file.by_type("IfcShapeAspect"):
element.Name = None
element.Description = None
for element in self.file.by_type("IfcPresentationLayerAssignment"):
self.file.remove(element)