PyMCubes
PyMCubes copied to clipboard
Marching cubes (and related tools) for Python
Got the following error **import mcubes** 1 ----> 2 from ._mcubes import marching_cubes, marching_cubes_func 3 from .exporter import export_mesh, export_obj, export_off 4 from .smoothing import * **ModuleNotFoundError: No module named...
I think the first example creates a sphere with the surface normals pointing the wrong way. The definition should be: u = -((X-15)**2 + (Y-15)**2 + (Z-15)**2 - 8**2)
Hi, I wonder which marching cube algorithm are you using? Is it the original one: https://dl.acm.org/doi/10.1145/37402.37422? Thanks,
I noticed that all the result coordinate of vertices are integral, which caused a low precision in my result. Is there any way to increase precision? Can this module give...
Unfortunately, I cannot create a pull request for a new branch. This pull request includes the changes of #11 and additionally changes the marching cubes algorithm to use the voxel...
Thanks for your great project! I have met a problem that: is it imcompatible with python
I have been using this library for marching cubes and export to file and noticed that the export was taking really long, so I change the function from using for...
## Change set 1: I had intended to make the function `mc::mc_add_vertex` branchless to improve performance but it was not more performant on quickbench. I then added "-ffast-math" and saw...