Marching Cubes
- 3D version of Marching Squares
- Cell consists of 8 node values: (i+{0,1}, j+{0,1}, k+{0,1})
-
- Consider a cell
-
- Classify each vertex as inside or outside
-
- Build an index
-
- Get edge list from table[index]
-
- Interpolate the edge location
- x=i+(v[i+1]−v[i])(c−v[i])
-
- Compute gradients
- Finite Differences Central
-
- Consider ambiguous cases
- Midpoint Decider
- Asymptotic Decider
-
- Go to next cell

Limitations
- Produces many triangles
- Cannot represent sharp edges
- Produces “ugly” (thin) triangles
- Produces ringing artifacts!