Release v0.32.3
This commit is contained in:
parent
296e6f5690
commit
a6b3700473
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -6,6 +6,19 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
|
||||
## Unreleased
|
||||
|
||||
### Modified
|
||||
- Statically sized matrices are now serialized as tuples to match how serde
|
||||
serialized plain arrays.
|
||||
- Don’t require `Scalar` for matrix `PartialEq` and `Eq`.
|
||||
|
||||
### Added
|
||||
- Allow trailing punctuation in macros `vector!`, `matrix!`, `point!`, etc.
|
||||
- Add the methods `Matrix1::as_scalar`, `::as_scalar_mut`, `::to_scalar`, `::into_scalar`.
|
||||
- Add `Rotation3::euler_angles_ordered`, a generalized euler angles calculation.
|
||||
- Add the `glam-0.24` feature to enable conversion from/to types from `glam` v0.24.
|
||||
- Add the `lerp` method to points.
|
||||
- Implement `Clone` for `MatrixIter`.
|
||||
|
||||
### Fixed
|
||||
- Fixed severe catastrophic cancellation issue in variance calculation.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "nalgebra"
|
||||
version = "0.32.2"
|
||||
version = "0.32.3"
|
||||
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
|
||||
|
||||
description = "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices."
|
||||
|
@ -73,7 +73,7 @@ slow-tests = []
|
|||
rkyv-safe-deser = [ "rkyv-serialize", "rkyv/validation" ]
|
||||
|
||||
[dependencies]
|
||||
nalgebra-macros = { version = "0.2", path = "nalgebra-macros", optional = true }
|
||||
nalgebra-macros = { version = "0.2.1", path = "nalgebra-macros", optional = true }
|
||||
typenum = "1.12"
|
||||
rand-package = { package = "rand", version = "0.8", optional = true, default-features = false }
|
||||
num-traits = { version = "0.2", default-features = false }
|
||||
|
|
19
README.md
19
README.md
|
@ -29,22 +29,3 @@
|
|||
</p>
|
||||
|
||||
-----
|
||||
|
||||
## Acknowledgements
|
||||
nalgebra is supported by our **platinum** sponsors:
|
||||
<p>
|
||||
<a href="https://embark-studios.com">
|
||||
<img src="https://www.embark.dev/img/logo_black.png" width="301px">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
And our gold sponsors:
|
||||
|
||||
<p>
|
||||
<a href="https://fragcolor.com">
|
||||
<img src="https://dimforge.com/img/fragcolor_logo2_color_black.svg" width="300px">
|
||||
</a>
|
||||
<a href="https://resolutiongames.com/">
|
||||
<img src="https://dimforge.com/img/logo_resolution_games.png" width="300px" />
|
||||
</a>
|
||||
</p>
|
Loading…
Reference in New Issue