1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-09-19 18:29:36 +00:00

compute_euclidean and around_orig not computed somehow

This commit is contained in:
Zeno Rogue 2024-06-27 22:24:42 +02:00
parent a0016a488a
commit 8de0bdb073

View File

@ -572,6 +572,8 @@ EX ld compute_euclidean() {
#endif #endif
if(underlying == gAperiodicHat) return 6; if(underlying == gAperiodicHat) return 6;
if(WDIM == 2 && BITRUNCATED) return 9 / (4.5 - 3. / S7 - 6. / S6); if(WDIM == 2 && BITRUNCATED) return 9 / (4.5 - 3. / S7 - 6. / S6);
if(WDIM == 2 && standard_tiling() && GOLDBERG && S3 == 4 && gp::param.first == 1 && gp::param.second == 1)
return S7 / (0.375 * S7 - 0.5);
if(WDIM == 2) return 4 / (S7-2.) + 2; if(WDIM == 2) return 4 / (S7-2.) + 2;
@ -593,6 +595,7 @@ EX ld around_orig() {
if(hat::in()) return 6; if(hat::in()) return 6;
if(WDIM == 2 && BITRUNCATED) if(WDIM == 2 && BITRUNCATED)
return 3; return 3;
if(WDIM == 2 && standard_tiling() && GOLDBERG && S3 == 4 && gp::param.first == 1 && gp::param.second == 1) return 4;
if(WDIM == 2) if(WDIM == 2)
return S3; return S3;
if(underlying == gRhombic3) if(underlying == gRhombic3)