From 791851f8d54c6b5ea1dc15f8e210b980363ff6be Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 15 Mar 2019 12:47:37 +0100 Subject: [PATCH] 3d:: pseudohept for 534 --- reg3.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reg3.cpp b/reg3.cpp index 34a29ed0..d4c37f81 100644 --- a/reg3.cpp +++ b/reg3.cpp @@ -451,6 +451,9 @@ bool pseudohept(cell *c) { if(loop == 5 && face == 3) return abs(h[3]) > .99 || abs(h[0]) > .99 || abs(h[1]) > .99 || abs(h[2]) > .99; } + // chessboard pattern in 534 + if(geometry == gSpace534) + return c->master->distance & 1; if(hyperbolic) { heptagon *h = m->reg_gmatrix[c->master].first; return (h->zebraval == 1) && (h->distance & 1);