nalgebra/CHANGELOG

21 lines
883 B
Plaintext
Raw Normal View History

2016-03-25 02:03:52 +08:00
# Change Log
All notable changes to `nalgebra`, starting with the version 0.6.0 will be
documented in this file (sorry I didn't maintain one before).
This project adheres to [Semantic Versioning](http://semver.org/).
2016-03-25 02:09:32 +08:00
## [unreleased] [0.6.0]
2016-03-25 02:03:52 +08:00
### Added
* (feature=generic_sizes): Dependency to [generic-array](https://crates.io/crates/generic-array)
* (feature=ganedic_sizes): Staticly sized vectors with user-defined sizes: `VecN`.
2016-03-25 02:03:52 +08:00
* Similarity transformations (an uniform scale followed by a rotation followed
by a translation): `Sim2`, `Sim3`.
### Removed
* Zero-sized elements `Vec0`, `Pnt0`.
* Incomplete 4-dimensional transformations `Rot4` and `Iso4`.
2016-03-25 02:09:32 +08:00
### Modified
* Vectors are now multipliable à isometries. This will result into a pure rotation (this is how
vectors differ from point semantically: they design directions so they are not translatable).