From 1f31c2cd7a6f33bfb1aa62c1ea80209a57398027 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 29 Apr 2020 15:19:25 +0200 Subject: [PATCH] more safe clipping in Sol --- graph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph.cpp b/graph.cpp index 20c10d2a..411c6f89 100644 --- a/graph.cpp +++ b/graph.cpp @@ -3669,7 +3669,7 @@ bool celldrawer::cell_clipped() { if(abs(H[0]) <= 3 && abs(H[1]) <= 3 && abs(H[2]) <= 3 ) ; else { hyperpoint H2 = inverse_exp(H, pQUICK); - for(hyperpoint& cpoint: clipping_planes) if((H2|cpoint) < -.4) return true; + for(hyperpoint& cpoint: clipping_planes) if((H2|cpoint) < -.6) return true; } noclipped++; }