From 50b8090c3fc44b124479787a975fa1bce2a01e53 Mon Sep 17 00:00:00 2001 From: Alex Matulich <anachronist@gmail.com> Date: Wed, 22 Jan 2025 23:33:41 -0800 Subject: [PATCH] Replaced tabs with spaces --- isosurface.scad | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/isosurface.scad b/isosurface.scad index 86afc9f..1f980de 100644 --- a/isosurface.scad +++ b/isosurface.scad @@ -96,18 +96,18 @@ function _bbox_faces(v0, voxsize, bbox) = let( /// Pair of vertex indices for each edge on the voxel _MCEdgeVertexIndices = [ - [0, 1], - [1, 3], - [3, 2], - [2, 0], - [4, 5], - [5, 7], - [7, 6], - [6, 4], - [0, 4], - [1, 5], - [3, 7], - [2, 6], + [0, 1], + [1, 3], + [3, 2], + [2, 0], + [4, 5], + [5, 7], + [7, 6], + [6, 4], + [0, 4], + [1, 5], + [3, 7], + [2, 6], ]; /// For each of the 255 configurations of a marching cube, define a list of triangles, specified as triples of edge indices.