Mcubes: Marching Cubes library
Uses the Marching Cubes algorithm to create isosurfaces in Rust, from volume data. Designed to be easy to integrate.
Based loosely on PyMarchingCubes.
For now, depends on the graphics library for Mesh and Vertex. We will remove this requirement later, for a
lighter dependency tree.
Uses lin-alg for its Vec3 type.
Used by the Daedalus molecule viewer to view experimentally-derived electron density from protein crystals.
Example use:
use ;
Why another Marching Cubes library? I couldn't figure out how to use the other ones.