
Multiplatform library for 2D and 3D vectors and matrices, optimized for performance. Supports mutable and immutable structures, compatible with WebGL and OpenGL.
It's a Kotlin multiplatform Vectors and Matrices Library designed to be used with GL libraries.
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"
}
}
}
}It's a Kotlin multiplatform Vectors and Matrices Library designed to be used with GL libraries.
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"
}
}
}
}