This commit is contained in:
2025-11-12 01:56:08 +01:00
parent c11a384b27
commit 2e8cfd36fd
6 changed files with 597 additions and 9 deletions

4
src/math.zig Normal file
View File

@@ -0,0 +1,4 @@
pub const Matrix4x4 = @import("math/Matrix4x4.zig").Matrix4x4;
pub const Quaternion = @import("math/Quaternion.zig").Quaternion;
pub const Vector3 = @import("math/Vector3.zig").Vector3;
pub const Vector4 = @import("math/Vector4.zig").Vector4;