-
Notifications
You must be signed in to change notification settings - Fork 137
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
Steiner Point insertion #7
Comments
Hi, Thanks for the question. Triangulation refinement is not implemented in CDT. I have it on my TODO with the highest priority (after performance improvements). It is nice to know that this feature is demanded :) Any help is welcome and appreciated: pull requests, algorithm implementation suggestions or any other additional information. There are couple of 64bit patches for Triangle floating around on github. I can check where I’ve seen one if you are interested. One major Triangle shortcoming for me is that it does not use a proper permissive software license. And Mr. Shewchuk is impossible to reach (I tried really hard for months). Did you have a chance to do any perf comparisons with Triangle? It would be really interesting to know how it compares. |
I'm closing this issue for now. Please let me know if you have any further questions. |
Does poly2tri's implementation have anything useful in this regard? They do support Steiner points, although as far as I know they don't use robust predicates... https://github.com/jhasse/poly2tri |
In a similar mode, does CDT support specifying hole polygons? I end up needing both holes and Steiner points in the application in which I use poly2tri (triangulation of trimmed NURBS surfaces). |
Thanks for the interest @starseeker! Inserting Steiner points is a rather straight forward algorithm. We don't need it for our needs right now and unfortunately there is not enough free time to just implement it. Hence a 'help wanted' label on this issue :) Removing holes is supported and done automatically with one condition: hole polygons and boundary polygon edges need to be constraint edges. See |
WIP #133. |
hello!Thank you very much for CDT, it helps me a lot, I would like to ask if Triangulation refinement is currently implemented. Is it possible to densify the points and triangles based on triangle sides or angles? |
Hi, @HahSZ. Ruppert refinement algorithm is currently WIP: there are branches and an open PR #133 . It is almost usable but not production ready. I have very little time for working on CDT so unfortunately it is hard to tell when it will be ready. Regarding auto removal of holes, I didn’t understand what exactly do you need help with. If it is still unclear for you or you need help feel free to open a new discussion or issue with a more detailed description. |
Hi, I am looking for alternative and more modern delaunay triangulation library instead of Triangle. It is awesome and extremely fast. I have been using it for a while but it's kind of old now and the memory management is still 32bit.
I found this CDT project and everything looks promising. Yet I could not find any parameter/function that allows insertion of Steiner Points/Quality control during triangulation. Could you guide me out?
The text was updated successfully, but these errors were encountered: