From c6cca0324803b8c642c096a1a269a284b8c17f31 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 23 Apr 2022 00:53:32 +0200 Subject: [PATCH] do_klenize now activates on IDEAL flag --- floorshapes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/floorshapes.cpp b/floorshapes.cpp index cd783672..58628c47 100644 --- a/floorshapes.cpp +++ b/floorshapes.cpp @@ -130,7 +130,7 @@ matrixitem genitem(const transmatrix& m1, const transmatrix& m2, int nsym) { return mi; } -bool do_kleinize() { return S3 >= OINF; } +bool do_kleinize() { return S3 >= OINF || (cgflags & qIDEAL); } EX hyperpoint kleinize(hyperpoint h) { if(GDIM == 2) return point3(h[0]/h[2], h[1]/h[2], 1);