Replies: 1 comment 2 replies
-
Do you mean something like #5895? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
In the R package rgl, there is a function to clip a 3d mesh to a surface defined by
f(x,y,z) > 0
wheref
is a given function. For example I've just done this tennis ball with this feature (I clipped the sphere two times, withf
and with-f
):So we can achieve the same result with CGAL by using
PMP::clip
if we have a mesh off(x,y,z)>0
. It seems to me that the way used by rgl is more direct and more efficient. Maybe you would like to add this feature to CGAL? This is not complicated.Beta Was this translation helpful? Give feedback.
All reactions