-
-
Notifications
You must be signed in to change notification settings - Fork 15
fix(Binding): Expose missing functions in BBox #1220
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
base: next
Are you sure you want to change the base?
Conversation
| .def( "intersects_infiniteline", \ | ||
| static_cast< bool ( BoundingBox##dimension##D::* )( \ | ||
| const InfiniteLine< dimension >& ) const >( \ | ||
| &BoundingBox##dimension##D::intersects ) ) \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@BotellaA pourquoi cq fait ca?
| static_cast< bool ( BoundingBox##dimension##D::* )( \ | ||
| const Ray< dimension >& ) const >( \ | ||
| &BoundingBox##dimension##D::intersects ) ) \ | ||
| .def( "intersects_infiniteline", \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| .def( "intersects_infiniteline", \ | |
| .def( "intersects_infinite_line", \ |
| static_cast< bool ( BoundingBox##dimension##D::* )( \ | ||
| const BoundingBox< dimension >& ) const >( \ | ||
| &BoundingBox##dimension##D::contains ) ) \ | ||
| .def( "intersects_bbox", \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| .def( "intersects_bbox", \ | |
| .def( "intersects_bounding_box", \ |
No description provided.