All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog.
0.2.3 - 2025-02-16
- Lower minium versions of dependencies
- Lower MSRV to 1.60
0.2.2 - 2024-09-01
- Enable
aabb
feature by default Aabb::offset
andAabb::with_offset
Aabb::size
0.2.1 - 2024-09-01
Aabb::from_top_left_and_size
0.2.0 - 2023-12-09
- change
Collides
andPenetrate
traits to takeBorrow<S>
instead of&S
Now users can decide whether to pass shapes by reference or with ownership, which gives more flexibility and notably makes possible to use iterators that build shapes on the fly.
0.1.2 - 2023-12-09
aabb
:Aabb::min
andAabb::max
getters
- Improve formatting of the feature list on docs.rs
0.1.1 - 2023-12-01
- Better document required feature flags on docs.rs
0.1.0 - 2023-12-01
Collides
trait to check for collisionPenetration
trait get penetration vector- Axis-Aligned Bounding Box (
Aabb
) - Support
no_std
target (require to disable default features)