From 91ea4a1aed04ec8f80db6a7f21a9207effe59790 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorben=20H=C3=B6hne?= Date: Sun, 4 May 2025 21:28:51 +0200 Subject: [PATCH] chore: Fixing wrong docs. --- Engine/Source/Runtime/Core/Math/Matrix2.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Engine/Source/Runtime/Core/Math/Matrix2.hpp b/Engine/Source/Runtime/Core/Math/Matrix2.hpp index 110dca8..5dd0315 100644 --- a/Engine/Source/Runtime/Core/Math/Matrix2.hpp +++ b/Engine/Source/Runtime/Core/Math/Matrix2.hpp @@ -68,11 +68,11 @@ namespace Phanes::Core::Math * Construct Matrix from parameters. * * @param(n00) M[0][0] - * @param(n10) M[1][0] - * @param(n01) M[0][1] + * @param(n01) M[1][0] + * @param(n10) M[0][1] * @param(n11) M[1][1] * - * @note nXY = n[Row][Col] + * @note nXY = n[Col][Row] */ TMatrix2(T n00, T n01, T n10, T n11)