diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-05 12:43:38 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-05 12:43:38 +1000 |
commit | 54354e32c6498cc7f8839ab4deb1208d37216cc5 (patch) | |
tree | 7759597b971ba59d6af841a5bed793c229dd4c2b /src/maths | |
parent | be8ab99b38c25e899008582d68e891150b328a4d (diff) |
Begin simplifying project structure and removing examples
Diffstat (limited to 'src/maths')
-rw-r--r-- | src/maths/maths_types.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/maths/maths_types.h b/src/maths/maths_types.h index ef1fe4a..66d260d 100644 --- a/src/maths/maths_types.h +++ b/src/maths/maths_types.h @@ -21,19 +21,6 @@ typedef struct Vec2 { f32 x, y; } Vec2; -/** @brief 3D Vector */ -typedef struct Vec3 { - f32 x, y, z; -} Vec3; - -/** @brief 4D Vector */ -typedef struct Vec4 { - f32 x, y, z, w; -} Vec4; - -/** @brief Quaternion */ -typedef Vec4 Quat; - /** @brief 4x4 Matrix */ typedef struct Mat4 { // TODO: use this format for more readable code: vec4 x_axis, y_axis, z_axis, w_axis; |