1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-30 01:07:57 +00:00

other noniso embeddings of Euclidean

This commit is contained in:
Zeno Rogue
2022-12-13 23:26:44 +01:00
parent e9c04e1e77
commit 4356f41621
6 changed files with 59 additions and 8 deletions

View File

@@ -240,6 +240,7 @@ EX namespace euc {
}
transmatrix adj(cell *c, int i) override {
if(dont_inverse()) return adj(c->master, i);
if(WDIM == 3) return adj(c->master, i);
else return hrmap_standard::adj(c, i);
}