mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-20 15:40:26 +00:00
szgmod used in relative_matrix in binary
This commit is contained in:
parent
a712abecac
commit
cd023e982e
@ -828,7 +828,9 @@ EX namespace nilv {
|
||||
|
||||
virtual transmatrix relative_matrix(heptagon *h2, heptagon *h1) override {
|
||||
for(int a=0; a<S7; a++) if(h2 == h1->move(a)) return adjmatrix(a);
|
||||
return nisot::translate(mvec_to_point(coords[h1].inverse() * coords[h2]));
|
||||
auto p = coords[h1].inverse() * coords[h2];
|
||||
for(int a=0; a<3; a++) p[a] = szgmod(p[a], nilperiod[a]);
|
||||
return nisot::translate(mvec_to_point(p));
|
||||
}
|
||||
|
||||
void draw() override {
|
||||
|
Loading…
Reference in New Issue
Block a user