From 14f444b77e65432e44a0f0afbcf6499371245322 Mon Sep 17 00:00:00 2001 From: singularitti Date: Sun, 8 Oct 2023 06:00:29 -0400 Subject: [PATCH] Make constant `FACES` a `Tuple` --- src/geometry.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/geometry.jl b/src/geometry.jl index 8eab359..6030b7f 100644 --- a/src/geometry.jl +++ b/src/geometry.jl @@ -1,6 +1,6 @@ export vertices, edge, edges, faces -const FACES = Base.vect( +const FACES = ( (1, 2, 3, 4), (5, 6, 7, 8), (1, 2, 6, 5), (3, 4, 8, 7), (2, 3, 7, 6), (5, 8, 4, 1) )