File tree 4 files changed +17
-6
lines changed
4 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,17 @@ documented here.
4
4
5
5
This project adheres to [ Semantic Versioning] ( https://semver.org/ ) .
6
6
7
+ ## [ 0.24.0]
8
+
9
+ ### Added
10
+ * The ` DualQuaternion ` type. It is still work-in-progress but the basics are here:
11
+ creation from its real and dual part, multiplication of two dual quaternions,
12
+ and normalization.
13
+
14
+ ### Removed
15
+ * There is no blanket ` impl<T> PartialEq for Unit<T> ` any more. Instead, it is
16
+ implemented specifically for ` UnitComplex ` , ` UnitQuaternion ` and ` Unit<Vector> ` .
17
+
7
18
## [ 0.23.2]
8
19
In this release, we improved the documentation of some of the geometric types
9
20
by applying changes similar to what we did in the version 0.23.1 for matrices.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nalgebra"
3
- version = " 0.23.2 "
3
+ version = " 0.24.0 "
4
4
authors = [ " Sébastien Crozet <developer@crozet.re>" ]
5
5
6
6
description = " Linear algebra library with transformations and statically-sized or dynamically-sized matrices."
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nalgebra-glm"
3
- version = " 0.9 .0"
3
+ version = " 0.10 .0"
4
4
authors = [" sebcrozet <developer@crozet.re>" ]
5
5
6
6
description = " A computer-graphics oriented API for nalgebra, inspired by the C++ GLM library."
@@ -25,4 +25,4 @@ abomonation-serialize = [ "nalgebra/abomonation-serialize" ]
25
25
num-traits = { version = " 0.2" , default-features = false }
26
26
approx = { version = " 0.4" , default-features = false }
27
27
simba = { version = " 0.3" , default-features = false }
28
- nalgebra = { path = " .." , version = " 0.23 " , default-features = false }
28
+ nalgebra = { path = " .." , version = " 0.24 " , default-features = false }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nalgebra-lapack"
3
- version = " 0.14 .0"
3
+ version = " 0.15 .0"
4
4
authors = [ " Sébastien Crozet <developer@crozet.re>" , " Andrew Straw <strawman@astraw.com>" ]
5
5
6
6
description = " Linear algebra library with transformations and satically-sized or dynamically-sized matrices."
@@ -23,7 +23,7 @@ accelerate = ["lapack-src/accelerate"]
23
23
intel-mkl = [" lapack-src/intel-mkl" ]
24
24
25
25
[dependencies ]
26
- nalgebra = { version = " 0.22 " } # , path = ".." }
26
+ nalgebra = { version = " 0.24 " , path = " .." }
27
27
num-traits = " 0.2"
28
28
num-complex = { version = " 0.2" , default-features = false }
29
29
simba = " 0.2"
@@ -34,7 +34,7 @@ lapack-src = { version = "0.5", default-features = false }
34
34
# clippy = "*"
35
35
36
36
[dev-dependencies ]
37
- nalgebra = { version = " 0.22 " , features = [ " arbitrary" ] } # path = ".." }
37
+ nalgebra = { version = " 0.24 " , features = [ " arbitrary" ], path = " .." }
38
38
quickcheck = " 0.9"
39
39
approx = " 0.3"
40
40
rand = " 0.7"
You can’t perform that action at this time.
0 commit comments