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
#373 updated Segment.intersects() to fix a bug where single point intersections would sometimes be mis-computed, due to a precision error. However, it did not update the companion method, Segment.intersection(), that returns the actual intersections. So Segment.intersects() can now return true but Segment.intersection() will return null for the same segments. This can create NullPointerErrors when the methods are used in conjunction.
The text was updated successfully, but these errors were encountered:
#373 updated
Segment.intersects()
to fix a bug where single point intersections would sometimes be mis-computed, due to a precision error. However, it did not update the companion method,Segment.intersection()
, that returns the actual intersections. SoSegment.intersects()
can now return true butSegment.intersection()
will return null for the same segments. This can create NullPointerErrors when the methods are used in conjunction.The text was updated successfully, but these errors were encountered: