From d673ae41b76a345971c85f904b59d178f5c86613 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 17 Feb 2020 10:33:56 +0100 Subject: [PATCH] changed the default 'how' to 8 --- rogueviz/triangle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rogueviz/triangle.cpp b/rogueviz/triangle.cpp index c5c2c3d5..21cd4832 100644 --- a/rogueviz/triangle.cpp +++ b/rogueviz/triangle.cpp @@ -27,7 +27,7 @@ hyperpoint operator+(hyperpoint x) { return x; } int shape = 1; // how many cubes to subdivide edges to -int how = 4; +int how = 8; // how many cubes to draw (should be smaller than how because they are not really cubes and thus they get into each other) int how1 = how - 1;