Skip to content

Commit

Permalink
removed bad tolerance multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
obucklin committed Sep 16, 2024
1 parent 217501b commit b19b512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compas_timber/design/wall_from_surface.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def create_model(self):
found_pairs = solver.find_intersecting_pairs(list(model.beams), rtree=True, max_distance=self.dist_tolerance)
for pair in found_pairs:
beam_a, beam_b = pair
detected_topo, beam_a, beam_b = solver.find_topology(beam_a, beam_b, max_distance=self.dist_tolerance * 100)
detected_topo, beam_a, beam_b = solver.find_topology(beam_a, beam_b, max_distance=self.dist_tolerance)
if not detected_topo == JointTopology.TOPO_UNKNOWN:
topologies.append({"detected_topo": detected_topo, "beam_a": beam_a, "beam_b": beam_b})
for rule in self.rules:
Expand Down

0 comments on commit b19b512

Please sign in to comment.