Cut mesh along geodesic path: Python #3992
Unanswered
ParvGuptaSpCT
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Hello!
coords = list()
for jsonCoord in jsonValues:
pos3f = mm.Vector3f( jsonCoord["x"], jsonCoord["y"], jsonCoord["z"] )
coords.append( mm.findProjection(pos3f, mesh).mtp )
cutContours = list()
cutContours.append( mm.convertMeshTriPointsToClosedContour( mesh, coords ) ) Please read corresponding docs mm.cutMesh( mesh, cutContours) |
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 Devs!!
I'm trying to use cut the mesh along closed geodesic path
I found the older discussion stating
computeGeodesicPath
herein my case i have a JSON object with point co-ordinates.
How do i project the points on the mesh and use the cut mesh along path feature in Python
Thanks!!
Beta Was this translation helpful? Give feedback.
All reactions