Split Math.c into smaller files

Friend said that Math.c was too big and complicated.
This commit is contained in:
2025-02-28 10:08:05 +03:00
parent 54e1c88f1f
commit b0fbfcd69e
18 changed files with 2345 additions and 2271 deletions

View File

@@ -70,7 +70,22 @@ set(BH_SOURCE
src/Args.c
src/Hashmap.c
src/IO.c
src/Math.c
src/Math/Box2f.c
src/Math/Box3f.c
src/Math/Line.c
src/Math/Mat3f.c
src/Math/Mat4f.c
src/Math/Misc.c
src/Math/Plane.c
src/Math/Quat4f.c
src/Math/Ray2f.c
src/Math/Ray3f.c
src/Math/Vec2f.c
src/Math/Vec2i.c
src/Math/Vec3f.c
src/Math/Vec3i.c
src/Math/Vec4f.c
src/Math/Vec4i.c
src/Queue.c
)