-
-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve shapecast range intersect function return options #229
Comments
This was referenced Mar 11, 2021
Merged
Alternatively all those examples could use Change class name to |
Closed
Unneeded, I think, with the solo intersects range function. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Related to #228, #218, #173
As of #228 the
intersectsRange
function is allowed to returntrue
orfalse
.false
causes traversal and triangle iteration to continue while returningtrue
stops traversal and prevents triangle traversal.Examples like
collectTriangles
,selection
, andsculpt
might benefit from more granularity to prevent triangle iteration while still continuing traversal which would prevent unnecessary reading of the triangle vertices when they aren't being used.CONTINUE_TRAVERSAL
,SKIP_TRIANGLES
,INTERSECTED
The text was updated successfully, but these errors were encountered: