1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-25 14:56:03 +00:00

fixed circle/horocycle/equidistant-based lands in euclid4

This commit is contained in:
Zeno Rogue
2017-12-29 14:20:38 +01:00
parent 5f4dbf9193
commit cafe34ad48
3 changed files with 37 additions and 17 deletions

View File

@@ -352,8 +352,7 @@ void addMessage(string s, char spamtype = 0);
#define ALPHA (M_PI*2/S7)
#define S7 ginf[geometry].sides
#define S3 ginf[geometry].vertex
#define weirdhyperbolic (S7 > 7 || S3 > 3)
#define weirdhyperbolic (S7 > 7 || S3 > 3)
#define weirdhyperbolic ((S7 > 7 || S3 > 3) && hyperbolic)
#define stdhyperbolic (S7 == 7 && S3 == 3)
#define cgclass (ginf[geometry].cclass)