diff --git a/CHANGELOG.md b/CHANGELOG.md index 37c83954..ab788c85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,12 +23,14 @@ The format is based on [Keep a Changelog], and this project adheres to ### Added - * Added `with_x()`, `with_y()`, etc. to vector types which returns a copy of + * Added `with_x`, `with_y`, etc. to vector types which returns a copy of the vector with the new component value. - * Added `midpoint()` method to vector types that returns the point between two + * Added `midpoint` method to vector types that returns the point between two points. + * Added `move_towards` for float vector types. + * Added saturating add and sub methods for signed and unsigned integer vector types. @@ -36,9 +38,9 @@ The format is based on [Keep a Changelog], and this project adheres to * Added element wise absolute values method for matrix types. - * Added `from_array()` method for boolean vector types. + * Added `from_array` method for boolean vector types. - * Added `normalize_or()` method to vector types that returns the specified value + * Added `normalize_or` method to vector types that returns the specified value if normalization failed. * Added `From` support for all vector types.