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

moved all the Euclidean maps to euclid.cpp

This commit is contained in:
?
2019-02-24 23:04:52 +01:00
committed by Zeno Rogue
parent 26b6b94c95
commit c7cb93f2ed
8 changed files with 479 additions and 474 deletions

View File

@@ -93,7 +93,7 @@ transmatrix calc_relative_matrix(cell *c2, cell *c1, const hyperpoint& point_hin
if(binarytiling) return binary::relative_matrix(c2->master, c1->master);
#endif
#if MAXDIM == 4
if(euclid && DIM == 3) return space::relative_matrix(c2->master, c1->master);
if(euclid && DIM == 3) return euclid3::relative_matrix(c2->master, c1->master);
#endif
#if CAP_ARCM
if(archimedean) return arcm::relative_matrix(c2->master, c1->master);