Matrix container

This commit is contained in:
Synthasmagoria 2026-07-31 11:51:09 +02:00
commit 31422d9592
3 changed files with 80 additions and 62 deletions

View file

@ -71,6 +71,10 @@ tri2 :: [3]v2
Bezier :: [3]v2
V2_ONE :: v2{1.0, 1.0}
V2_LEFT :: v2{-1.0, 0.0}
V2_RIGHT :: v2{1.0, 0.0}
V2_UP :: v2{0.0, -1.0}
V2_DOWN :: v2{0.0, 1.0}
/// ### MISCELANIOUS ### ///
enum_to_raygui_options_string :: proc($T: typeid, allocator: mem.Allocator) -> cstring where intrinsics.type_is_enum(T) {