mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-03 17:27:03 +00:00
optimization in binary
This commit is contained in:
parent
0bc644e132
commit
a7aeb064f3
@ -233,7 +233,7 @@ namespace binary {
|
||||
ld yy = log(2) / 2;
|
||||
const int STEP=3;
|
||||
const ld MUL = 1. / STEP;
|
||||
auto at = [&] (ld x, ld y, ld z) { curvepoint(V * parabolic(size*x, size*y) * xpush(size*yy*z) * C0); };
|
||||
auto at = [&] (ld x, ld y, ld z) { curvepoint(V * parabolic3(size*x, size*y) * xpush0(size*yy*z)); };
|
||||
for(int a:{-1,1}) {
|
||||
for(ld t=-STEP; t<STEP; t++) at(a, 1,t*MUL);
|
||||
for(ld t=-STEP; t<STEP; t++) at(a, -t*MUL,1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user