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

get_shiftview_of used gpush instead of rgpush; fixed wallradar

This commit is contained in:
Zeno Rogue
2019-08-25 20:45:27 +02:00
parent db351d9511
commit ce46243b55
4 changed files with 8 additions and 8 deletions

View File

@@ -2089,7 +2089,7 @@ EX transmatrix get_shift_view_of(const hyperpoint H, const transmatrix V) {
return rgpushxto0(h) * V;
}
else if(!nonisotropic) {
return gpushxto0(direct_exp(H, 100)) * V;
return rgpushxto0(direct_exp(H, 100)) * V;
}
else if(!nisot::geodesic_movement) {
transmatrix IV = inverse(V);