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
This line is getting this ugly shape after trim. The reason is that we don't build a straight segment between the intersection of the two lines and the end point, but we try to maintain the original curvature of the line.
We can fix that by checking if something peculiar happens (e.g., in this case the length gets almost twice as long as the original) in which case we fall back to constructing a straight segment.
The text was updated successfully, but these errors were encountered:
This line is getting this ugly shape after
trim
. The reason is that we don't build a straight segment between the intersection of the two lines and the end point, but we try to maintain the original curvature of the line.We can fix that by checking if something peculiar happens (e.g., in this case the length gets almost twice as long as the original) in which case we fall back to constructing a straight segment.
The text was updated successfully, but these errors were encountered: