Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
chenkasirer committed Feb 13, 2025
1 parent 696a440 commit 0c28371
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/compas_timber/design/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ def joints_from_beams_and_rules(elements, rules, max_distance=TOL.absolute, hand

element_pairs = solver.find_intersecting_pairs(elements, rtree=True, max_distance=max_rule_distance)

# these pairs were already handled by some external logic and shouldn't be processed again
# e.g. the beams within a wall are joined by wall specific logic
# however, other beams in the model should be allowed to be joined with them, thus they cannot be altogether excluded
for pair in handled_pairs:
if pair in element_pairs:
element_pairs.remove(pair)
Expand Down

0 comments on commit 0c28371

Please sign in to comment.