Skip to content

Commit

Permalink
Updated Readme and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
HexagonNico committed Apr 24, 2023
1 parent c3046fb commit e5c856b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Vec3f c = a.plus(b);
a = a.plus(b);
```

The vector package offers integer, single-precision and double-precision vectors with all their basic operations.
The vector package offers int, float, and double vectors with all their basic operations.

```scala
val a = Vec3f(1.0f, 1.0f, 1.0f)
Expand Down Expand Up @@ -103,6 +103,8 @@ int location = GL20.glGetUniformLocation(program, "light_position");
GL20.glUniform3f(location, lightPosition.x(), lightPosition.y(), lightPosition.z());
```

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

## Add VecMatLib to your project

VecMatLib can be added to any Java or Scala project as a dependency using [Jitpack](https://jitpack.io/).
Expand All @@ -122,7 +124,7 @@ allprojects {

```groovy
dependencies {
implementation 'com.github.HexagonNico:VecMatLib:1.2'
implementation 'com.github.HexagonNico:VecMatLib:1.2.1'
}
```

Expand All @@ -141,7 +143,7 @@ dependencies {
<dependency>
<groupId>com.github.HexagonNico</groupId>
<artifactId>VecMatLib</artifactId>
<version>1.2</version>
<version>1.2.1</version>
</dependency>
```

Expand All @@ -152,7 +154,7 @@ resolvers += "jitpack" at "https://jitpack.io"
```

```sbt
libraryDependencies += "com.github.HexagonNico" % "VecMatLib" % "1.2"
libraryDependencies += "com.github.HexagonNico" % "VecMatLib" % "1.2.1"
```

## Support the project
Expand All @@ -161,8 +163,6 @@ VecMatLib was developed by a single person.

Initially a university project, later completed and turned into a fully usable library.

[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/X8X87EZ87)

## Contributing

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.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ThisBuild / version := "1.2"
ThisBuild / version := "1.2.1"

ThisBuild / scalaVersion := "2.13.10"

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.8.0
sbt.version = 1.8.1

0 comments on commit e5c856b

Please sign in to comment.