mirror of
https://github.com/gumyr/build123d.git
synced 2026-03-13 10:11:17 -07:00
Relaxing is_parallel check of DoubleTangentArc to avoid false negatives Issue #728
This commit is contained in:
parent
b81fecd8dc
commit
8e798f2b57
1 changed files with 1 additions and 1 deletions
|
|
@ -230,7 +230,7 @@ class DoubleTangentArc(BaseLineObject):
|
|||
continue
|
||||
other_axis = Axis(p1, other.tangent_at(p1))
|
||||
circle_axis = Axis(p2, circle.tangent_at(p2))
|
||||
if other_axis.is_parallel(circle_axis):
|
||||
if other_axis.is_parallel(circle_axis, 0.05):
|
||||
arc_centers.append(arc_center)
|
||||
|
||||
if len(arc_centers) == 0:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue