All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fuookami.ospf.kotlin.utils.math.geometry.Dimension.kt Maven / Gradle / Ivy

There is a newer version: 1.0.29
Show newest version
package fuookami.ospf.kotlin.utils.math.geometry

interface Dimension {
    val size: Int
    val indices get() = 0 until size
}

data object Dim1 : Dimension {
    override val size = 1
}

data object Dim2 : Dimension {
    override val size = 2
}

data object Dim3 : Dimension {
    override val size = 3
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy