breadbox Posted March 4, 2018 Share Posted March 4, 2018 How to create polygon triangle mesh from scattered points around a surface? I've tried a few methods, triangulate 2D, tetramesh, add sop, and nothing is working correctly yet. Triangulate3D.hiplc Quote Link to comment Share on other sites More sharing options...
acey195 Posted March 5, 2018 Share Posted March 5, 2018 concave shapes are not possible completely automatically, as you will need some control over how much how much concavity you will allow. maybe you could use a growing algorithm (not very fast unfortunately) to make sure a point only connects to the closest other point and then repeat that till all points are used. after that you'll have to convert your poly lines into closed polygons which is also not really straightforward, using stuff like intersection stitch maybe another way to go would be VDB from particle (taking the average distance between points as a radius), then convert it back to polygon and then morph the mesh to be flush with your input points again. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.