Update the changelog.

This commit is contained in:
Crozet Sébastien 2021-03-06 12:45:58 +01:00
parent 2dae1ca44f
commit 35ffdc960d
1 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,12 @@ This project adheres to [Semantic Versioning](https://semver.org/).
## [0.25.2] - WIP
### Added
- A `convert-glam` cargo feature to enable implementations of `From` traits to convert
between `glam` types and `nalgebra` types.
- A `convert-glam-unchecked` cargo feature to enable some extra `glam`/`nalgebra` conversions that may
lead to unexpected results if used improperly. For example, this enables the conversion from a
`glam::Mat4` to a `na::Isometry3`. This conversion will be cheap (without any check) but willlead to
unexpected results if the glam matrix contains non-isometric components (like scaling for example).
- A `cast` method has been added to most types. This can be used to change the
type of the components of a given entity. Example: `vector.cast::<f32>()`.