File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Expand file tree Collapse file tree 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
196196### sbt
197197
198198``` sbt
199- libraryDependencies += " io.github.scalamath" % " vecmatlib" % " 3.0 "
199+ libraryDependencies += " io.github.scalamath" % " vecmatlib" % " 3.1 "
200200```
201201
202202### Maven
@@ -205,14 +205,14 @@ libraryDependencies += "io.github.scalamath" % "vecmatlib" % "3.0"
205205<dependency >
206206 <groupId >io.github.scalamath</groupId >
207207 <artifactId >vecmatlib</artifactId >
208- <version >3.0 </version >
208+ <version >3.1 </version >
209209</dependency >
210210```
211211
212212### Gradle
213213
214214``` groovy
215- implementation 'io.github.scalamath:vecmatlib:3.0 '
215+ implementation 'io.github.scalamath:vecmatlib:3.1 '
216216```
217217
218218## Questions and answers
Original file line number Diff line number Diff line change 11// Project info
22name := " VecMatLib"
33homepage := Some (url(" https://github.com/ScalaMath/VecMatLib" ))
4- version := " 3.0 "
4+ version := " 3.1 "
55description := " A Scala library for vectors and matrix math"
66// Organization info
77organization := " io.github.scalamath"
You can’t perform that action at this time.
0 commit comments