diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-08-11 00:13:18 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-08-11 00:13:18 +1000 |
commit | 87a47aead498d4f7c360d64efc632bcf1a533751 (patch) | |
tree | 7b39d6abcd6d39d76ecaacc0352ad685783a00c7 /src/maths/maths.h | |
parent | 7bd1560cf2b49018a842fb42cda2c17b347957aa (diff) |
chore: fmt and lint
Diffstat (limited to 'src/maths/maths.h')
-rw-r--r-- | src/maths/maths.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/maths/maths.h b/src/maths/maths.h index 0b3760e..9e71f79 100644 --- a/src/maths/maths.h +++ b/src/maths/maths.h @@ -311,7 +311,7 @@ static Transform transform_create(Vec3 pos, Quat rot, f32 scale) { return (Transform){ .position = pos, .rotation = rot, .scale = scale, .is_dirty = true }; } - Mat4 transform_to_mat(Transform *tf); +Mat4 transform_to_mat(Transform *tf); // --- Sizing asserts |