1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-12 17:28:05 +00:00

changed //EX to #if HDR; removed #if EX

This commit is contained in:
Zeno Rogue
2019-08-09 19:03:29 +02:00
parent 24a2e6178a
commit 85e9e7cd11
3 changed files with 21 additions and 11 deletions

View File

@@ -9,7 +9,9 @@ EX namespace nisot {
typedef array<float, 3> ptlow;
EX transmatrix local_perspective;
//EX inline bool local_perspective_used() { return nonisotropic; }
#if HDR
inline bool local_perspective_used() { return nonisotropic; }
#endif
EX bool geodesic_movement = true;
@@ -443,7 +445,9 @@ EX namespace nilv {
hyperpoint mvec_to_point(mvec m) { return hpxy3(m[0], m[1], m[2]); }
//EX static const int nilv_S7 = 8;
#if HDR
static const int nilv_S7 = 8;
#endif
array<mvec, nilv_S7> movevectors = {{ mvec(-1,0,0), mvec(-1,0,1), mvec(0,-1,0), mvec(0,0,-1), mvec(1,0,0), mvec(1,0,-1), mvec(0,1,0), mvec(0,0,1) }};
@@ -546,7 +550,9 @@ EX namespace nisot {
return true;
}
//EX enum iePrecision { iLazy, iTable };
#if HDR
enum iePrecision { iLazy, iTable };
#endif
EX hyperpoint inverse_exp(const hyperpoint h, iePrecision p) {
if(sol) return solv::get_inverse_exp(h, p == iLazy);