It's a Kotlin multiplatform Vectors and Matrices Library designed to be used with GL libraries.
- Ready to be used with JavaScript/WebGl and Java/OpenGL libraries.
- 2D and 3D support.
- Provides mutable and immutable structures.
- Build with performance in-mind.
Use Maven Central repository:
repositories {
mavenCentral()
}
And then include dev.folomeev.kotgl:kotgl-matrix
library as dependency for common sources:
kotlin {
sourceSets {
commonMain {
dependencies {
implementation "dev.folomeev.kotgl:kotgl-matrix:0.0.1-beta"
}
}
}
}