faster upper bound for line-rect intersection #1463
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
CHANGES.mdif knowledge of this change could be valuable to users.Description
Flatten the performance of Line-Rect intersection checks to ~ 4ns
The old best case scenario of Line Start being inside the Rect is slower (was ~ 2ns)
But the worst case of disjoint geoms drops dramatically (was ~ 15ns)
Approach
Rectare all to the left or all to the right of the infinitely extendedLine, theRectcannot intersect theLineRectwhich intersects or crosses the infinitely extendedLine, then theLinemust be pointing "toward" theRectLine's bounding box which is closest to theRectis one of the terminals of theLineLine's bounding box intersects theRect, theLinemust also intersect theRectusing explicit variables instead of coords_iter because iter-map-collect approach benches at ~26ns
Benches