Skip to content

Releases: jcornaz/collision2d

v0.2.3

16 Feb 13:50

Choose a tag to compare

Dependencies

  • Lower minium versions of dependencies
  • Lower MSRV to 1.60

v0.2.2

01 Sep 09:26

Choose a tag to compare

Added

  • Enable aabb feature by default
  • Aabb::offset and Aabb::with_offset
  • Aabb::size

v0.2.1

01 Sep 08:16

Choose a tag to compare

Added

  • Aabb::from_top_left_and_size

v0.2.0

09 Dec 11:15

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

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

Choose a tag to compare

Documentation

  • Better document required feature flags on docs.rs

v0.1.0

01 Dec 20:12

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)