From 910bad0fb7e5b0cd9377dacd82119dd751fe1974 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 4 Aug 2023 17:34:26 +0200 Subject: [PATCH] source/Math/Transform.cpp: Style fixes. --- source/Math/Transform.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/Math/Transform.cpp b/source/Math/Transform.cpp index 4854eb2..ab4835b 100644 --- a/source/Math/Transform.cpp +++ b/source/Math/Transform.cpp @@ -10,12 +10,12 @@ m_matrix (Matrix4f::Identity) } Transform::Transform( float a00, float a01, float a02, - float a10, float a11, float a12, - float a20, float a21, float a22) : + float a10, float a11, float a12, + float a20, float a21, float a22) : m_matrix (a00, a01, 0.0f, a02, - a10, a11, 0.0f, a12, - 0.0f, 0.0f, 1.0f, 0.0f, - a20, a21, 0.0f, a22) + a10, a11, 0.0f, a12, + 0.0f, 0.0f, 1.0f, 0.0f, + a20, a21, 0.0f, a22) { }