Skip to content

Commit

Permalink
Updated readme and version
Browse files Browse the repository at this point in the history
  • Loading branch information
HexagonNico committed Nov 4, 2023
1 parent 22f0433 commit 93c15b3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 6 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@ val eulerAngles = Vec3d(math.Pi * 0.5, 0.0, math.Pi * 0.5)
val rotation = QuaternionD(eulerAngles)
```

## Complex numbers

An additional library providing complex numbers can be found here: [CmplxLib](https://github.com/HexagonNico/CmplxLib)

CmplxLib depend on VecMatLib and provides complex numbers, as well as complex vectors and complex matrices.

## Using with LWJGL

VecMatLib can be used together with [LWJGL](https://lwjgl.org) to build transformation matrices and set uniform
Expand Down
8 changes: 3 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ThisBuild / version := "2.3"

ThisBuild / scalaVersion := "2.13.10"
ThisBuild / scalaVersion := "2.13.12"

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

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

// Publishing
ThisBuild / organization := "io.github.hexagonnico"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.9.1
sbt.version = 1.9.7

0 comments on commit 93c15b3

Please sign in to comment.