package net.shadowfacts.cacao.geometry /** * @author shadowfacts */ enum class Axis { HORIZONTAL, VERTICAL; val other: Axis get() = when (this) { HORIZONTAL -> VERTICAL VERTICAL -> HORIZONTAL } }