commonMain.korlibs.math.geom.Spacing.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of korma-jvm Show documentation
Show all versions of korma-jvm Show documentation
Mathematic library for Multiplatform Kotlin 1.3
The newest version!
package korlibs.math.geom
import korlibs.math.internal.*
data class Spacing(
val vertical: Float,
val horizontal: Float
) {
constructor(spacing: Float) : this(spacing, spacing)
override fun toString(): String = "Spacing(vertical=${vertical.niceStr}, horizontal=${horizontal.niceStr})"
companion object {
val ZERO = Spacing(0f, 0f)
}
}