From 4037f34bcfe7caf5c15c5ecf5d9db96bf911c96f Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Sat, 10 Nov 2018 13:53:31 +0100 Subject: [PATCH] Update changelog. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f51bfff..735e1898 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). as-is for its storage). ### Modified + * The orthographic projection no longer require that `bottom < top`, that `left < right`, and that `znear < zfar`. The + only restriction now ith that they must not be equal (in which case the projection would be singular). * The `Point::from_coordinates` methods is deprecated. Use `Point::from` instead. * The `.transform_point` and `.transform_vector` methods are now inherent methods for matrices so that the user does not have to explicitly import the `Transform` trait from the alga crate.