From 35ffdc960d7fa93b8d31cb9c483636a51b31a82d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Crozet=20S=C3=A9bastien?= Date: Sat, 6 Mar 2021 12:45:58 +0100 Subject: [PATCH] Update the changelog. --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2224a62a..b4af9114 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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::()`.