File tree 3 files changed +20
-4
lines changed 3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change
1
+
2
+ # Version 3.1
3
+
4
+ * Added methods to extract submatrices from 2x3 and 3x4 matrices.
5
+ * Added an ` affineInverse ` method for 2x3 and 3x4 matrices.
6
+ * Added constructors to 2x3 and 3x4 matrices to construct a matrix from a submatrix and an additional column.
7
+ * Added ` inverseLerp ` function to ` scalamath ` .
8
+ * Added more overloaded methods for dot products.
9
+
10
+ # Version 3.0
11
+
12
+ Update 3.0
13
+
14
+ * Full project overhaul
15
+ * Finished quaternions
16
+ * Moved color math to [ ColorLib] ( https://github.com/ScalaMath/ColorLib )
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ Due to VecMatLib not using any internal or temporal objects during any computati
196
196
### sbt
197
197
198
198
``` sbt
199
- libraryDependencies += " io.github.scalamath" % " vecmatlib" % " 3.0 "
199
+ libraryDependencies += " io.github.scalamath" % " vecmatlib" % " 3.1 "
200
200
```
201
201
202
202
### Maven
@@ -205,14 +205,14 @@ libraryDependencies += "io.github.scalamath" % "vecmatlib" % "3.0"
205
205
<dependency >
206
206
<groupId >io.github.scalamath</groupId >
207
207
<artifactId >vecmatlib</artifactId >
208
- <version >3.0 </version >
208
+ <version >3.1 </version >
209
209
</dependency >
210
210
```
211
211
212
212
### Gradle
213
213
214
214
``` groovy
215
- implementation 'io.github.scalamath:vecmatlib:3.0 '
215
+ implementation 'io.github.scalamath:vecmatlib:3.1 '
216
216
```
217
217
218
218
## Questions and answers
Original file line number Diff line number Diff line change 1
1
// Project info
2
2
name := " VecMatLib"
3
3
homepage := Some (url(" https://github.com/ScalaMath/VecMatLib" ))
4
- version := " 3.0 "
4
+ version := " 3.1 "
5
5
description := " A Scala library for vectors and matrix math"
6
6
// Organization info
7
7
organization := " io.github.scalamath"
You can’t perform that action at this time.
0 commit comments