1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-02 20:29:17 +00:00

sol:: correct rotation in simple model

This commit is contained in:
Zeno Rogue 2019-11-09 12:32:37 +01:00
parent c7f735f3ac
commit e17747791e

View File

@ -487,7 +487,7 @@ EX void applymodel(hyperpoint H, hyperpoint& ret) {
if(nonisotropic) { if(nonisotropic) {
// if(nisot::local_perspective_used()) H = nisot::local_perspective * H; // if(nisot::local_perspective_used()) H = nisot::local_perspective * H;
ret = H; ret = lp_apply(H);
break; break;
} }
if(pmodel == mdHyperboloid) { if(pmodel == mdHyperboloid) {