From 27581ff8b051e6b1a383067d77dd6b9d264cdbb0 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 3 Apr 2019 20:37:31 +0200 Subject: [PATCH] virtualRebase now used in all quotient geometries --- shmup.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shmup.cpp b/shmup.cpp index b2ff3d49..1843eb2b 100644 --- a/shmup.cpp +++ b/shmup.cpp @@ -1080,10 +1080,11 @@ void monster::rebasePat(const transmatrix& new_pat) { fixmatrix(at); pat = at; return; } - if(among(geometry, gZebraQuotient, gTorus, gKleinQuartic, gBolza, gBolza2, gMinimal)) { + if(quotient) { at = inverse(gmatrix[base]) * new_pat; virtualRebase(this, true); fixmatrix(at); + fixelliptic(at); return; } pat = new_pat;