-
Member
C44Matrix__Translate
Can someone share this offset for TBC Classic?
thank you
-
Is this not just a regular 4x4 translate function? You can just implement it yourself eg.
Code:
mat.M41 = mat.M31 * vec.Z + mat.M21 * vec.Y + mat.M11 * vec.X + mat.M41;
mat.M42 = mat.M32 * vec.Z + mat.M22 * vec.Y + mat.M12 * vec.X + mat.M42;
mat.M43 = mat.M33 * vec.Z + mat.M23 * vec.Y + mat.M13 * vec.X + mat.M43;
Last edited by Jadd; 02-21-2022 at 08:20 PM.
-
Post Thanks / Like - 1 Thanks
arturmorgan61 (1 members gave Thanks to Jadd for this useful post)