Compare commits
9 commits
c8fdf38438
...
68fe3bd79a
Author | SHA1 | Date | |
---|---|---|---|
68fe3bd79a | |||
551610743c | |||
de126aa150 | |||
2cffea2604 | |||
a194e71d94 | |||
39593ad996 | |||
919d931b4e | |||
6f641f13be | |||
8c11542219 |
2 changed files with 25 additions and 0 deletions
16
Changelog.md
Normal file
16
Changelog.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# Changelog
|
||||
|
||||
## Version 2.0.0
|
||||
|
||||
Add collision detection with Spheres.
|
||||
|
||||
Add some more vector/matrix math stuff.
|
||||
|
||||
## 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.
|
9
README.md
Normal file
9
README.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
# 3D Collision Helpers
|
||||
|
||||
Things to note:
|
||||
|
||||
- `main` is the stable branch. Expect things to not break unless the major
|
||||
version number has changed.
|
||||
- `dev` is the unstable branch. Expect force pushes and rebases on this branch.
|
||||
- Changes to be merged into `main` from `dev` will be done with an explicit
|
||||
merge.
|
Loading…
Reference in a new issue