-
Notifications
You must be signed in to change notification settings - Fork 9
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
Voronoi edges #32
Comments
Seen this, will try to find some time next week to address this. Meanwhile could you please prepare code for an MWE? |
Thanks for your reply. Looking forward to seeing the issue gets solved. The MWE is the following, I omitted the REPL prompts.
I do not know if it helps, If you need more information, I am willing to provide it. |
Hi, thanks - I checked the issue. Currently, we don't pass the Voronoi cell information to the C wrapper called by Julia. So there currently is no way to access this information from Julia. This needs an update for TetGen_jll.jll which will have to wait a bit as I am quite busy at work for the next 2 weeks. Once this is done, may be @SimonDanisch can help with updating the JLTetGenIO struct. |
Thanks for the update! I managed to use the original C++ TetGen and pass data through files to other Julia scripts for an urgent need. My problem is solved. |
The function
TetGen.voronoi()
seems giving wrong results. I think Voronoi diagram should contain no nodes from the input by definition.I want to generate a Voronoi diagram of points distributed in a cube, but the function gives this result:
It is clearly not a correct Voronoi diagram. I tried
vo=tetrahedralize(JLTetGenIO(points),"v")
, it promptsWriting Voronoi edges.
But I cannot see any Voronoi-related data in the struct ofvo
.So could you please help me with how I can find the correct Voronoi edges information?
The text was updated successfully, but these errors were encountered: