Skip to content

Latest commit

 

History

History
52 lines (28 loc) · 1.31 KB

CHANGELOG.md

File metadata and controls

52 lines (28 loc) · 1.31 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog.

0.2.0 - 2023-12-09

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.

0.1.2 - 2023-12-09

Added

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

Documentation

  • Improve formatting of the feature list on docs.rs

0.1.1 - 2023-12-01

Documentation

  • Better document required feature flags on docs.rs

0.1.0 - 2023-12-01

  • 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)