From 5212be555e386c0e292cfb35dd37c7dc4ba88d8e Mon Sep 17 00:00:00 2001 From: ? Date: Fri, 22 Feb 2019 21:09:02 +0100 Subject: [PATCH] split btrange to btrange and btrange_cosh --- binary-tiling.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/binary-tiling.cpp b/binary-tiling.cpp index 34876107..b7a47783 100644 --- a/binary-tiling.cpp +++ b/binary-tiling.cpp @@ -271,7 +271,7 @@ namespace binary { return hr::parabolic13(y * co, z * co); } - ld btrange = 20; + ld btrange = 3, btrange_cosh; void draw() { dq::visited.clear(); @@ -291,7 +291,7 @@ namespace binary { if(!do_draw(c, V)) continue; #endif #if DIM==3 - if(V[DIM][DIM] > btrange) continue; + if(V[DIM][DIM] > btrange_cosh) continue; setdist(c, 7, c); #endif drawcell(c, V, 0, false); @@ -354,7 +354,7 @@ auto bt_config = addHook(hooks_args, 0, [] () { return 0; } else if(argis("-btrange")) { - shift_arg_formula(btrange); + shift_arg_formula(btrange, delayed_geo_reset); return 0; } return 1;