1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-10 02:33:00 +00:00

adjusted rogueviz

This commit is contained in:
Zeno Rogue
2019-11-30 18:52:24 +01:00
parent 0cc24cf982
commit ab3992f58f
5 changed files with 6 additions and 6 deletions

View File

@@ -400,7 +400,7 @@ struct hrmap_grigorchuk : hrmap_standard {
}
}
transmatrix relative_matrix(heptagon *h2, heptagon *h1) override {
transmatrix relative_matrix(heptagon *h2, heptagon *h1, const hyperpoint& hint) override {
if(gmatrix0.count(h2->c7) && gmatrix0.count(h1->c7))
return inverse(gmatrix0[h1->c7]) * gmatrix0[h2->c7];
return Id;