This commit is contained in:
nub31
2025-10-20 18:32:27 +02:00
parent 78441549c7
commit 5be9f122e9
5 changed files with 28 additions and 379 deletions

View File

@@ -1,10 +1,5 @@
module "raymath"
export struct Vector2
{
x: f32
y: f32
}
export struct Vector2
{
x: f32
@@ -16,19 +11,6 @@ export struct Vector3
y: f32
z: f32
}
export struct Vector3
{
x: f32
y: f32
z: f32
}
export struct Vector4
{
x: f32
y: f32
z: f32
w: f32
}
export struct Vector4
{
x: f32
@@ -55,37 +37,10 @@ export struct Matrix
m11: f32
m15: f32
}
export struct Matrix
{
m0: f32
m4: f32
m8: f32
m12: f32
m1: f32
m5: f32
m9: f32
m13: f32
m2: f32
m6: f32
m10: f32
m14: f32
m3: f32
m7: f32
m11: f32
m15: f32
}
export struct float3
{
v: [3]f32
}
export struct float3
{
v: [3]f32
}
export struct float16
{
v: [16]f32
}
export struct float16
{
v: [16]f32