You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the intersection point (I) is generated, it may end up being far away from the previous (P)
and next (N) points, even though it satisfies the condition of having a small vertical distance
from the previous(P)-current(C) segment.
This commit fixes that by also checking whether the distance I-P and I-C are also smaller than
the smallest_line_segment provided by the user. If these distances are bigger than that, then the
intersection point (I) should not replace the current point (C) and C should remain inside the
path.
CURA-7709
0 commit comments