Purge old dynamic void system as Blender booleans are not sufficient.

This commit is contained in:
Dion Moult
2022-10-19 12:32:02 +11:00
parent f55b47dcb3
commit 80020970e1
14 changed files with 3 additions and 107 deletions
-11
View File
@@ -139,17 +139,6 @@ class TestGetRepresentationContext(NewFile):
assert subject.get_representation_context(representation) == context
class TestHasDynamicVoids(NewFile):
def test_run(self):
obj = bpy.data.objects.new("Object", None)
assert subject.has_dynamic_voids(obj) is False
def test_checking_modifiers(self):
obj = bpy.data.objects.new("Object", bpy.data.meshes.new("Mesh"))
obj.modifiers.new("IfcOpeningElement", "BOOLEAN")
assert subject.has_dynamic_voids(obj) is True
class TestHasMaterialUsage(NewFile):
def test_getting_a_profile_set_usage(self):
ifc = ifcopenshell.file()