mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 17:58:20 +00:00
Skip clash_set if it has 0 clashes
This commit is contained in:
committed by
Dion Moult
parent
b407b815e2
commit
957c719224
@@ -281,6 +281,8 @@ class IfcClasher:
|
||||
print(f"Skipping clash set [{clash_set['name']}] since it contains no clash results.")
|
||||
continue
|
||||
clashes = clash_set["clashes"]
|
||||
if len(clashes) == 0:
|
||||
continue
|
||||
count_of_input_clashes += len(clashes)
|
||||
|
||||
positions = []
|
||||
|
||||
Reference in New Issue
Block a user