Math Library
Math Library with Vector Support for Kotlin
Features
- MathHelper - Quick kotlin-math support
- Vector - Calculable vector
- VectorParser - Convert image and text to vector
- VectorSpace - Vector collection
Gradle (Groovy)
allprojects { repositories { ... MavenCentral() } } ... dependencies { implementation 'com.github.patrick-mc:kotlin-math:1.0' }
Gradle (Kotlin DSL)
allprojects { repositories { ... MavenCentral() } } ... dependencies { implementation("com.github.patrick-mc:kotlin-math:1.0") }