Implement static operator*

This commit is contained in:
2024-02-01 20:22:32 -05:00
parent 432fa32f57
commit 12bf687f33
3 changed files with 11 additions and 9 deletions

View File

@@ -95,8 +95,6 @@ namespace LinearAlgebra {
@see RotateFromTo(). */
static Matrix4x4 LookAt(const Vector3& localFwd, const Vector3& targetDir, const Vector3& localUp, const Vector3& worldUp);
static Matrix4x4 FromTranslation(const Vector3& translation);
/// Returns the translation part.
/** The translation part is stored in the fourth column of this matrix.
This is equivalent to decomposing this matrix in the form M = T * M', i.e. this translation is applied last,