Skip to content

Releases: jcornaz/collision2d

v0.2.0

09 Dec 11:15
Compare
Choose a tag to compare

Breaking change

  • change Collides and Penetrate traits to take Borrow<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.

v0.1.2

09 Dec 09:32
Compare
Choose a tag to compare

Added

  • aabb: Aabb::min and Aabb::max getters

Documentation

  • Improve formatting of the feature list on docs.rs

v0.1.1

01 Dec 20:18
Compare
Choose a tag to compare

Documentation

  • Better document required feature flags on docs.rs

v0.1.0

01 Dec 20:12
Compare
Choose a tag to compare
  • Collides trait to check for collision
  • Penetration trait get penetration vector
  • Axis-Aligned Bounding Box (Aabb)
  • Support no_std target (require to disable default features)