1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-16 02:04:48 +00:00

debug removed

This commit is contained in:
Zeno Rogue 2018-04-06 10:30:06 +02:00
parent 587619ad42
commit 8e50cc9e50

View File

@ -295,8 +295,6 @@ namespace whirl {
hpxyz(0, 0, 0) // center, not a corner hpxyz(0, 0, 0) // center, not a corner
}; };
int bak_sp;
hyperpoint atz(const transmatrix& T, const transmatrix& corners, loc at, int cornerid = 6, ld cf = 3) { hyperpoint atz(const transmatrix& T, const transmatrix& corners, loc at, int cornerid = 6, ld cf = 3) {
int sp = 0; int sp = 0;
again: again:
@ -307,7 +305,7 @@ namespace whirl {
sp++; sp++;
goto again; goto again;
} }
if(sp>3) sp -= 6; bak_sp = sp; if(sp>3) sp -= 6;
return normalize(spin(2*M_PI*sp/S7) * T * corner); return normalize(spin(2*M_PI*sp/S7) * T * corner);
} }