ASMR/src/main/kotlin/net/shadowfacts/shadowui/geometry/Axis.kt

14 lines
214 B
Kotlin
Raw Normal View History

2019-06-22 18:59:37 +00:00
package net.shadowfacts.shadowui.geometry
/**
* @author shadowfacts
*/
enum class Axis {
HORIZONTAL, VERTICAL;
val other: Axis
get() = when (this) {
HORIZONTAL -> VERTICAL
VERTICAL -> HORIZONTAL
}
}