1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-09 10:14:16 +00:00

fixed MAXMDIM guards

This commit is contained in:
Zeno Rogue
2019-11-03 14:19:11 +01:00
parent 02bb9d5ea5
commit 43bf7c5cfe
7 changed files with 28 additions and 17 deletions

View File

@@ -1193,5 +1193,12 @@ EX ld raddif(ld a, ld b) {
return d;
}
EX int bucketer(ld x) {
return int(x * 10 + 100000.5) - 100000;
}
EX int bucketer(hyperpoint h) {
return bucketer(h[0]) + 1000 * bucketer(h[1]) + 1000000 * bucketer(h[2]);
}
}