@@ -40,7 +40,7 @@ Vec3f c = a.plus(b);
4040a = a. plus(b);
4141```
4242
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.
4444
4545``` scala
4646val a = Vec3f (1.0f , 1.0f , 1.0f )
@@ -103,6 +103,8 @@ int location = GL20.glGetUniformLocation(program, "light_position");
103103GL20 . glUniform3f(location, lightPosition. x(), lightPosition. y(), lightPosition. z());
104104```
105105
106+ An LWJGL project using VecMatLib is [ Gamma Engine] ( https://github.com/Gamma-Engine ) , a general purpose graphics engine written in Java.
107+
106108## Add VecMatLib to your project
107109
108110VecMatLib can be added to any Java or Scala project as a dependency using [ Jitpack] ( https://jitpack.io/ ) .
@@ -122,7 +124,7 @@ allprojects {
122124
123125``` groovy
124126dependencies {
125- implementation 'com.github.HexagonNico:VecMatLib:1.2'
127+ implementation 'com.github.HexagonNico:VecMatLib:1.2.1 '
126128}
127129```
128130
@@ -141,7 +143,7 @@ dependencies {
141143<dependency >
142144 <groupId >com.github.HexagonNico</groupId >
143145 <artifactId >VecMatLib</artifactId >
144- <version >1.2</version >
146+ <version >1.2.1 </version >
145147</dependency >
146148```
147149
@@ -152,7 +154,7 @@ resolvers += "jitpack" at "https://jitpack.io"
152154```
153155
154156``` sbt
155- libraryDependencies += " com.github.HexagonNico" % " VecMatLib" % " 1.2"
157+ libraryDependencies += " com.github.HexagonNico" % " VecMatLib" % " 1.2.1 "
156158```
157159
158160## Support the project
@@ -161,8 +163,6 @@ VecMatLib was developed by a single person.
161163
162164Initially a university project, later completed and turned into a fully usable library.
163165
164- [ ![ ko-fi] ( https://ko-fi.com/img/githubbutton_sm.svg )] ( https://ko-fi.com/X8X87EZ87 )
165-
166166## Contributing
167167
168168Your 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