From 130587e2baf09a33e461fb60ea2922228c2991bd Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 4 May 2018 12:55:10 +0200 Subject: [PATCH] gp:: reduce the line quality in spherical geometry (rendered too slow) --- polygons.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polygons.cpp b/polygons.cpp index 382f345f..a7f0c6f6 100644 --- a/polygons.cpp +++ b/polygons.cpp @@ -64,7 +64,7 @@ bool ptdsort(const polytodraw& p1, const polytodraw& p2) { void hpcpush(hyperpoint h) { if(sphere) h = mid(h,h); - if(/*vid.usingGL && */!first && intval(hpc.back(), h) > (sphere ? (ISMOBWEB ? .04 : .0001) : 0.25)) { + if(/*vid.usingGL && */!first && intval(hpc.back(), h) > (sphere ? (ISMOBWEB || gp::on ? .04 : .0001) : 0.25)) { hyperpoint md = mid(hpc.back(), h); hpcpush(md); hpcpush(h);