2024-04-29 04:23:38 +00:00
|
|
|
# Changelog
|
|
|
|
|
2024-05-06 06:02:55 +00:00
|
|
|
## Version 2.2.1
|
|
|
|
|
|
|
|
Fix UnitTest for checking AABB.
|
|
|
|
|
2024-05-06 05:12:30 +00:00
|
|
|
## Version 2.2.0
|
2024-05-06 04:52:53 +00:00
|
|
|
|
|
|
|
Refactoring of internally used function.
|
|
|
|
|
2024-05-06 05:12:06 +00:00
|
|
|
Add functions to convert Sphere and GenericBox to AABB.
|
|
|
|
|
2024-05-06 05:28:59 +00:00
|
|
|
Add function to combine two AABBs.
|
|
|
|
|
2024-05-06 02:31:59 +00:00
|
|
|
## Version 2.1.0
|
2024-05-03 08:42:16 +00:00
|
|
|
|
|
|
|
Refactoring of internally used function(s).
|
|
|
|
|
2024-05-03 08:55:18 +00:00
|
|
|
This library now requires a compiler that supports C++20.
|
|
|
|
|
2024-05-06 02:31:59 +00:00
|
|
|
Add SC_SACD_Scale_Mat4(...) fn.
|
|
|
|
|
2024-05-02 04:15:56 +00:00
|
|
|
## Version 2.0.2
|
|
|
|
|
|
|
|
Fix SC_SACD_Translate_Mat4(...). It was missing a "1" in the first element of
|
|
|
|
the Mat4.
|
|
|
|
|
|
|
|
Made internal function getting normals of a box more robust.
|
|
|
|
|
2024-05-02 03:35:54 +00:00
|
|
|
## Version 2.0.1
|
|
|
|
|
|
|
|
Added check in SC_SACD_Sphere_Box_Collision(...) to see if sphere and box has
|
|
|
|
same center.
|
|
|
|
|
2024-04-29 04:24:35 +00:00
|
|
|
## Version 2.0.0
|
|
|
|
|
|
|
|
Add collision detection with Spheres.
|
|
|
|
|
|
|
|
Add some more vector/matrix math stuff.
|
|
|
|
|
2024-04-30 05:03:26 +00:00
|
|
|
Replace Mat3 with Mat4.
|
|
|
|
|
|
|
|
Replace xyz-axis rotation floats in GenericBox with Mat4.
|
|
|
|
|
2024-04-29 04:23:38 +00:00
|
|
|
## Version 1.0.0
|
|
|
|
|
|
|
|
First version of this library.
|
|
|
|
|
|
|
|
Implements collision detection between AABB (Axis-Aligned-Bounding-Box) and
|
|
|
|
AABB, AABB and Generic-Boxes, and Generic-Boxes and Generic-Boxes.
|
|
|
|
|
|
|
|
Some vector/matrix math also added.
|