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

14 lines
211 B
Kotlin
Raw Normal View History

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