Replies: 1 comment 4 replies
-
|
The behavior of intersection functions for Sphere_3 and Circle_2 have indeed been clarified (some were one way, some the other way) to use the mathematical definition of spheres and circles, i.e., a sphere is not a ball, and a circle is not a disk.
|
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
In my project I am using
do_intersectfunction to check intersection/inclusion ofIso_cuboid_3vsSphere_3. I've noticed that there is incoming change on the way this function acts withSphere_3. Seems like now its not a solid ball anymore. So I want to clarify:Iso_cuboid_3always considered a solid object, meaning thatdo_intersect(sphere, cuboid) == trueifcuboidcontainssphere(or other object, like point, triangle, etc)?do_intersect(sphere, cuboid)withnot has_on_unbounded_side(sphere, cuboid)to achieve the same result:trueif their surfaces intersect or if one contains the other?Beta Was this translation helpful? Give feedback.
All reactions