diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-07 13:50:40 +1000 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-07 13:50:40 +1000 |
commit | 42924fe7b32e93bf55ce034467ceb52e0436c303 (patch) | |
tree | fbdf14de2bab718cadb6492d3774d33a0f50ff2f /src/maths | |
parent | d9f9479694d8a4d74822a876516282329db5ea3d (diff) |
visualising bone indices
Diffstat (limited to 'src/maths')
-rw-r--r-- | src/maths/maths_types.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/maths/maths_types.h b/src/maths/maths_types.h index 6d38fc7..53cac55 100644 --- a/src/maths/maths_types.h +++ b/src/maths/maths_types.h @@ -64,4 +64,8 @@ typedef struct transform { typedef struct vec4i { i32 x, y, z, w; -} vec4i;
\ No newline at end of file +} vec4i; + +typedef struct vec4u { + u32 x, y, z, w; +} vec4u;
\ No newline at end of file |