1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-06 00:33:01 +00:00

removed eurad as it was the same as crossf

This commit is contained in:
Zeno Rogue
2019-04-29 11:18:10 +02:00
parent cb164d92c2
commit c98f58a672
3 changed files with 13 additions and 15 deletions

View File

@@ -354,8 +354,8 @@ void virtualRebaseSimple(heptagon*& base, transmatrix& at) {
double cellgfxdist(cell *c, int i) {
if(euclid) {
if(c->type == 8 && (i&1)) return eurad * sqrt(2);
return eurad;
if(c->type == 8 && (i&1)) return crossf * sqrt(2);
return crossf;
}
if(NONSTDVAR || archimedean) return hdist0(tC0(calc_relative_matrix(c->move(i), c, i)));
return !BITRUNCATED ? tessf : (c->type == 6 && (i&1)) ? hexhexdist : crossf;