diff options
| author | realtradam <[email protected]> | 2023-06-15 15:02:11 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-06-15 15:02:11 -0400 |
| commit | 024067ccbf80de1beccbcf2d3a641566c7c45c17 (patch) | |
| tree | 3317cf61aed4a8786ee8af410ead69a7c62137c9 /include/rodeo/math/mat4_t.h | |
| parent | 425516a9c53183179c43517f1b6501a790378a05 (diff) | |
| download | RodeoKit-024067ccbf80de1beccbcf2d3a641566c7c45c17.tar.gz RodeoKit-024067ccbf80de1beccbcf2d3a641566c7c45c17.zip | |
some non working progress
Diffstat (limited to 'include/rodeo/math/mat4_t.h')
| -rw-r--r-- | include/rodeo/math/mat4_t.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/rodeo/math/mat4_t.h b/include/rodeo/math/mat4_t.h new file mode 100644 index 0000000..2893444 --- /dev/null +++ b/include/rodeo/math/mat4_t.h @@ -0,0 +1,20 @@ +#pragma once + + +typedef +struct +{ + float m00, m01, m02, m03; + float m10, m11, m12, m13; + float m20, m21, m22, m23; + float m30, m31, m32, m33; +} +rodeo_math_mat4_val_t; + +typedef +union +{ + rodeo_math_mat4_val_t val; + float raw[4][4]; +} +rodeo_math_mat4_t; |
