From c45659cc4df2e0a2ed4b4d032fe9bcc2562f4eca Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 25 Apr 2025 09:29:29 +0200 Subject: [PATCH] fixed a bug with Euclidean tilings --- euclid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/euclid.cpp b/euclid.cpp index d35a5a6f..32701fdb 100644 --- a/euclid.cpp +++ b/euclid.cpp @@ -351,7 +351,7 @@ EX namespace euc { int shvid(cell *c) override { if(geometry == gOctTet3) return octtet_shvid(ispacemap[c->master]); - return 0; + return hrmap_standard::shvid(c); } transmatrix ray_iadj(cell *c, int i) override {