Skip to content

Commit 1597eaa

Browse files
committed
Updated Readme and version number
1 parent e9dbd0f commit 1597eaa

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ val green = Color3f(0.0f, 1.0f, 0.0f) // RGB #00FF00
112112
val transparentBlue = Color4f(0.0f, 0.0f, 1.0f, 0.5f) // RGBA #0000FF88
113113
```
114114

115-
Values outside the range are allowed.
115+
Values outside the (0.0, 1.0) range are allowed.
116116

117117
## Using with LWJGL
118118

@@ -126,14 +126,14 @@ int location = GL20.glGetUniformLocation(program, "light_position");
126126
GL20.glUniform3f(location, lightPosition.x(), lightPosition.y(), lightPosition.z());
127127
```
128128

129-
An LWJGL project using VecMatLib is [Gamma Engine](https://github.com/Gamma-Engine), a general purpose graphics engine written in Java.
129+
An LWJGL project using VecMatLib is [LWJRE](https://github.com/LWJRE), a general purpose rendering engine written in Java.
130130

131131
## Add VecMatLib to your project
132132

133133
### sbt
134134

135135
```
136-
libraryDependencies += "io.github.hexagonnico" % "vecmatlib" % "2.0"
136+
libraryDependencies += "io.github.hexagonnico" % "vecmatlib" % "2.1"
137137
```
138138

139139
### Maven
@@ -142,14 +142,14 @@ libraryDependencies += "io.github.hexagonnico" % "vecmatlib" % "2.0"
142142
<dependency>
143143
<groupId>io.github.hexagonnico</groupId>
144144
<artifactId>vecmatlib</artifactId>
145-
<version>2.0</version>
145+
<version>2.1</version>
146146
</dependency>
147147
```
148148

149149
### Gradle
150150

151151
```groovy
152-
implementation 'io.github.hexagonnico:vecmatlib:2.0'
152+
implementation 'io.github.hexagonnico:vecmatlib:2.1'
153153
```
154154

155155
## Contributing

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ThisBuild / version := "2.0"
1+
ThisBuild / version := "2.1"
22

33
ThisBuild / scalaVersion := "2.13.10"
44

0 commit comments

Comments
 (0)