mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-08-04 04:43:57 +00:00
fixed multiply transmatrix * trans23
This commit is contained in:
parent
f2f62cf296
commit
83b49caa5f
@ -223,7 +223,7 @@ struct trans23 {
|
|||||||
}
|
}
|
||||||
friend trans23 operator * (transmatrix M, trans23 T) {
|
friend trans23 operator * (transmatrix M, trans23 T) {
|
||||||
trans23 t(M);
|
trans23 t(M);
|
||||||
return M * T;
|
return t * T;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user