diff options
| author | realtradam <[email protected]> | 2023-06-16 01:15:57 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-06-16 01:15:57 -0400 |
| commit | 94625b3133193acd22b68595fe922b7228528b11 (patch) | |
| tree | f7e358545f5043df20695d0cf51dcf8caa10cb12 /include/rodeo/math/vec2_t.h | |
| parent | acc9db32d765728b63162d6fc74a278d0da10b83 (diff) | |
| download | RodeoKit-matrixtemp.tar.gz RodeoKit-matrixtemp.zip | |
fix matrix wrapper as well as a lot of refactoring cleanupmatrixtemp
Diffstat (limited to 'include/rodeo/math/vec2_t.h')
| -rw-r--r-- | include/rodeo/math/vec2_t.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/rodeo/math/vec2_t.h b/include/rodeo/math/vec2_t.h index 61b941e..22717c6 100644 --- a/include/rodeo/math/vec2_t.h +++ b/include/rodeo/math/vec2_t.h @@ -6,4 +6,12 @@ struct float x; float y; } +rodeo_math_vec2_val_t; + +typedef +union +{ + rodeo_math_vec2_val_t val; + float raw[2]; +} rodeo_math_vec2_t; |
