From d7eed402a77e44cc3cb4723783beb53c77fe2682 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 29 Nov 2019 00:17:50 +0100 Subject: [PATCH] fixed E2xE quotient spaces --- celldrawer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/celldrawer.cpp b/celldrawer.cpp index 6a042dd3..37b862e3 100644 --- a/celldrawer.cpp +++ b/celldrawer.cpp @@ -1685,6 +1685,7 @@ void celldrawer::bookkeeping() { orig = gm[LDIM][LDIM] == 0 ? true : euclid ? hdist0(tC0(gm)) >= hdist0(tC0(V)) : + in_e2xe() ? hdist0(tC0(gm)) >= hdist0(tC0(V)) : (nil||sol) ? sqhypot_d(3, tC0(gm)) >= sqhypot_d(3, tC0(V)) : sphereflipped() ? fabs(gm[LDIM][LDIM]-1) <= fabs(V[LDIM][LDIM]-1) : fabs(gm[LDIM][LDIM]-1) >= fabs(V[LDIM][LDIM]-1) - 1e-8;