1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-24 01:00:25 +00:00

less aggressive backwall optimization in Solv

This commit is contained in:
Zeno Rogue 2019-10-05 13:59:53 +02:00
parent afa65ee525
commit 282ca884c4

View File

@ -5137,7 +5137,7 @@ EX void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
if(abs(H[0]) <= 3 && abs(H[1]) <= 3 && abs(H[2]) <= 3 ) ;
else {
hyperpoint H2 = inverse_exp(H, iLazy);
for(hyperpoint& cpoint: clipping_planes) if((H2|cpoint) < -.2) return;
for(hyperpoint& cpoint: clipping_planes) if((H2|cpoint) < -.4) return;
}
noclipped++;
}