Currently I am trying to implement the marching cubes algorithm in my project. It uses Unity 3 and C#. But I need to find a proper implementation example to truly understand its inner working.

I found one called Metaballs, but It is too complex in the sense that this specific case uses marching cube to dynamically modify a mesh over time.

I'm looking for a simple case so a newbie can understand what's going on.

Thanks

link|improve this question

33% accept rate
The inner workings of Marching Cubes? It's a lookup table that contains mesh data. Generally, the hard part isn't implementing the algorithm; it's build the lookup table of mesh data. – Nicol Bolas Feb 19 at 22:56
feedback

3 Answers

Have you read the original paper? It's very nicely explained.

link|improve this answer
Thanks for the paper. Useful but is not what I'm looking for, though. – B3y0nd3r Feb 17 at 18:31
feedback

It might also be instructive to look at a 2D metaballs tutorial and then look at the 3D case again.

http://www.gamedev.net/page/resources/_/technical/graphics-programming-and-theory/exploring-metaballs-and-isosurfaces-in-2d-r2556

link|improve this answer
Thanks for the link, but as my aim is to use Marching Cubes for terrain generation, the direction I may take is different. – B3y0nd3r Feb 17 at 18:32
feedback

Take a look at this link from Paul Bourke. It's a explanation about marching cubes and have a code sample. It's very simple to understand. Other one I've found is this one in Python, it's simpler than the first one. You have only to take a look at grid method from the class Iso.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.