Marching Cubes

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

Limitations

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