fixed multiply transmatrix * trans23

This commit is contained in:
Zeno Rogue 2023-08-15 15:20:46 +02:00
parent f2f62cf296
commit 83b49caa5f
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ struct trans23 {
}
friend trans23 operator * (transmatrix M, trans23 T) {
trans23 t(M);
return M * T;
return t * T;
}
};