@@ -40,7 +40,7 @@ Vec3f c = a.plus(b);
40
40
a = a. plus(b);
41
41
```
42
42
43
- The vector package offers integer, single-precision and double-precision vectors with all their basic operations.
43
+ The vector package offers int, float, and double vectors with all their basic operations.
44
44
45
45
``` scala
46
46
val a = Vec3f (1.0f , 1.0f , 1.0f )
@@ -103,6 +103,8 @@ int location = GL20.glGetUniformLocation(program, "light_position");
103
103
GL20 . glUniform3f(location, lightPosition. x(), lightPosition. y(), lightPosition. z());
104
104
```
105
105
106
+ An LWJGL project using VecMatLib is [ Gamma Engine] ( https://github.com/Gamma-Engine ) , a general purpose graphics engine written in Java.
107
+
106
108
## Add VecMatLib to your project
107
109
108
110
VecMatLib can be added to any Java or Scala project as a dependency using [ Jitpack] ( https://jitpack.io/ ) .
@@ -122,7 +124,7 @@ allprojects {
122
124
123
125
``` groovy
124
126
dependencies {
125
- implementation 'com.github.HexagonNico:VecMatLib:1.2'
127
+ implementation 'com.github.HexagonNico:VecMatLib:1.2.1 '
126
128
}
127
129
```
128
130
@@ -141,7 +143,7 @@ dependencies {
141
143
<dependency >
142
144
<groupId >com.github.HexagonNico</groupId >
143
145
<artifactId >VecMatLib</artifactId >
144
- <version >1.2</version >
146
+ <version >1.2.1 </version >
145
147
</dependency >
146
148
```
147
149
@@ -152,7 +154,7 @@ resolvers += "jitpack" at "https://jitpack.io"
152
154
```
153
155
154
156
``` sbt
155
- libraryDependencies += " com.github.HexagonNico" % " VecMatLib" % " 1.2"
157
+ libraryDependencies += " com.github.HexagonNico" % " VecMatLib" % " 1.2.1 "
156
158
```
157
159
158
160
## Support the project
@@ -161,8 +163,6 @@ VecMatLib was developed by a single person.
161
163
162
164
Initially a university project, later completed and turned into a fully usable library.
163
165
164
- [ ![ ko-fi] ( https://ko-fi.com/img/githubbutton_sm.svg )] ( https://ko-fi.com/X8X87EZ87 )
165
-
166
166
## Contributing
167
167
168
168
Your contributions are always welcome! Please submit a pull request or open an issue if you want to contribute with bug fixes, code improvements, documentation, and better unit test coverage.
0 commit comments