1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-09-20 18:59:36 +00:00

fixup to logical_to_actual

This commit is contained in:
Zeno Rogue 2022-12-17 18:36:05 +01:00
parent a3b8cdb149
commit 0e83580199

View File

@ -659,7 +659,7 @@ EX transmatrix spin(ld alpha) {
EX transmatrix logical_to_actual() {
if(embedded_plane && geom3::euc_in_nil()) return cspin90(2, 1);
if(embedded_plane && geom3::hyp_in_solnih()) return cspin90(0, 1) * cspin90(1, 2);
if(embedded_plane && geom3::hyp_in_solnih()) return cspin90(0, 1) * cspin90(1, 2) * cspin90(0, 1);
return Id;
}