diff --git a/Engine.Core/Primitives/Matrix4x4.cs b/Engine.Core/Primitives/Matrix4x4.cs index 364fcfd..cc6632f 100644 --- a/Engine.Core/Primitives/Matrix4x4.cs +++ b/Engine.Core/Primitives/Matrix4x4.cs @@ -436,4 +436,9 @@ public static class Matrix4x4Extensions /// 's. + /// + public static Matrix4x4 ApplyMatrix(this Matrix4x4 left, Matrix4x4 right) => left * right; }