
High-performance graphics math toolkit offering 2–4D float/double/int vectors, 2×2–4×4 matrices, quaternions, projections, matrix stacks, composition-based transforms, FMA hardware acceleration and IO read/write support.
The Kotlin Graphics Maths Library for Kotlin Multiplatform.
A GLM/JOML inspired library with a touch of idiomatic Kotlin.
kgml-io
First, add the official Maven Central repository to your settings.gradle.kts:
dependencyResolutionManagement {
repositories {
maven("https://central.sonatype.com/repository/maven-snapshots")
mavenCentral()
}
}Then add a dependency on the library in your root buildscript:
kotlin {
sourceSets {
commonMain {
dependencies {
implementation("dev.karmakrafts.kgml:kgml-core:<version>")
}
}
}
}Or, if you are only using Kotlin/JVM, add it to your top-level dependencies block instead.
The Kotlin Graphics Maths Library for Kotlin Multiplatform.
A GLM/JOML inspired library with a touch of idiomatic Kotlin.
kgml-io
First, add the official Maven Central repository to your settings.gradle.kts:
dependencyResolutionManagement {
repositories {
maven("https://central.sonatype.com/repository/maven-snapshots")
mavenCentral()
}
}Then add a dependency on the library in your root buildscript:
kotlin {
sourceSets {
commonMain {
dependencies {
implementation("dev.karmakrafts.kgml:kgml-core:<version>")
}
}
}
}Or, if you are only using Kotlin/JVM, add it to your top-level dependencies block instead.