Skip to content

Commit 93c15b3

Browse files
committed
Updated readme and version
1 parent 22f0433 commit 93c15b3

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

Readme.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,12 @@ val eulerAngles = Vec3d(math.Pi * 0.5, 0.0, math.Pi * 0.5)
126126
val rotation = QuaternionD(eulerAngles)
127127
```
128128

129+
## Complex numbers
130+
131+
An additional library providing complex numbers can be found here: [CmplxLib](https://github.com/HexagonNico/CmplxLib)
132+
133+
CmplxLib depend on VecMatLib and provides complex numbers, as well as complex vectors and complex matrices.
134+
129135
## Using with LWJGL
130136

131137
VecMatLib can be used together with [LWJGL](https://lwjgl.org) to build transformation matrices and set uniform

build.sbt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ThisBuild / version := "2.3"
22

3-
ThisBuild / scalaVersion := "2.13.10"
3+
ThisBuild / scalaVersion := "2.13.12"
44

55
lazy val root = (project in file(".")).settings(
66
name := "VecMatLib"
@@ -10,10 +10,8 @@ lazy val root = (project in file(".")).settings(
1010
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.15" % Test
1111

1212
// Junit test dependency
13-
libraryDependencies ++= Seq(
14-
"junit" % "junit" % "4.13.2" % Test,
15-
"com.novocode" % "junit-interface" % "0.11" % Test
16-
)
13+
libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.3" % Test
14+
crossPaths := false
1715

1816
// Publishing
1917
ThisBuild / organization := "io.github.hexagonnico"

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.9.1
1+
sbt.version = 1.9.7

0 commit comments

Comments
 (0)