Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lhog committed Dec 3, 2024
1 parent c9f367f commit 2a53c7c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rts/System/Matrix44f.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class CMatrix44f
CMatrix44f& Translate(const float x, const float y, const float z);
CMatrix44f& Translate(const float3& pos) { return Translate(pos.x, pos.y, pos.z); }
CMatrix44f& Scale(const float3& scales);
CMatrix44f& Scale(float scaleX, float scaleY, float scaleZ) { return Scale(float3{ scaleX, scaleY, scaleZ }); }
CMatrix44f& FromTQS(const float3& pos, const CQuaternion& quat, const float3& scale);

void SetPos(const float3 pos) { m[12] = pos.x; m[13] = pos.y; m[14] = pos.z; }
Expand Down

0 comments on commit 2a53c7c

Please sign in to comment.