From 48b550c24e458763164634823729054bce369f67 Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Sat, 22 Sep 2018 18:44:10 +0200 Subject: [PATCH] Update changelog. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba525b9d..124c32ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [0.17.0] - WIP ### Added + * Add swizzling up to dimension 3. For example, you can do `v.zxy()` as an equivalent to `Vector3::new(v.z, v.x, v.w)`. * Add `.copy_from_slice` to copy matrix components from a slice in column-major order. * Add `.dot` to quaternions. * Add `.zip_zip_map` for iterating on three matrices simultaneously, and applying a closure to them.