Files
IfcOpenShell/src/ifcopenshell-python/ifcopenshell/api/structural/remove_structural_boundary_condition.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
539 B
Python
Raw Normal View History

class Usecase:
def __init__(self, file, **settings):
self.file = file
self.settings = {"connection": None}
for key, value in settings.items():
self.settings[key] = value
def execute(self):
if not self.settings["connection"].AppliedCondition:
return
if len(self.file.get_inverse(self.settings["connection"].AppliedCondition)) == 1:
2021-03-19 23:38:28 +01:00
self.file.remove(self.settings["connection"].AppliedCondition)
self.settings["connection"].AppliedCondition = None