2024-02-08 07:50:36 -08:00
|
|
|
package sectr
|
|
|
|
|
|
|
|
// TODO(Ed) : Evaluate if this is needed
|
|
|
|
|
2024-02-08 13:05:15 -08:00
|
|
|
vec2 :: vec2_f32
|
|
|
|
vec2_f32 :: struct #raw_union {
|
|
|
|
basis : [2] f32,
|
|
|
|
using components : struct {
|
|
|
|
x, y : f32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-08 07:50:36 -08:00
|
|
|
vec3 :: vec3_f32
|
|
|
|
vec3_f32 :: struct #raw_union {
|
|
|
|
basis : [3] f32,
|
|
|
|
using components : struct {
|
|
|
|
x, y, z : f32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|