Skip to content

Instantly share code, notes, and snippets.

View ffreyer's full-sized avatar

Frederic Freyer ffreyer

  • Cologne, Germany
View GitHub Profile
@dwilliamson
dwilliamson / MarchingCubes.js
Last active April 17, 2024 16:05
Marching Cubes Lookup Tables
//
// Lookup Tables for Marching Cubes
//
// These tables differ from the original paper (Marching Cubes: A High Resolution 3D Surface Construction Algorithm)
//
// The co-ordinate system has the more convenient properties:
//
// i = cube index [0, 7]
// x = (i & 1) >> 0
// y = (i & 2) >> 1