removed debug

This commit is contained in:
Zeno Rogue 2020-01-02 17:20:37 +01:00
parent b70e68c574
commit 61261a5acc
1 changed files with 0 additions and 1 deletions

View File

@ -3592,7 +3592,6 @@ EX ld precise_width = .5;
EX void gridline(const transmatrix& V1, const hyperpoint h1, const transmatrix& V2, const hyperpoint h2, color_t col, int prec) {
ld d = hdist(V1*h1, V2*h2);
println(hlog, "d = ", d);
while(d > precise_width && d < 100) {
if(!eqmatrix(V1, V2, 1e-6)) { gridline(V1, h1, V1, inverse(V1) * V2 * h2, col, prec); return; }
hyperpoint h = midz(h1, h2);