1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-16 05:37:11 +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

@@ -1118,7 +1118,7 @@ void optimizeview() {
if(binarytiling) T = binary::relative_matrix(h2, viewctr.at);
#endif
#if MAXDIM == 4
if(euclid && DIM == 3) T = space::relative_matrix(h2, viewctr.at);
if(euclid && DIM == 3) T = euclid3::relative_matrix(h2, viewctr.at);
#endif
#if CAP_ARCM
if(archimedean) T = arcm::relative_matrix(h2, viewctr.at);