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

commonMain.casperix.math.angle.Degree.kt Maven / Gradle / Ivy

package casperix.math.angle

import casperix.math.angle.float32.DegreeFloat
import casperix.math.angle.float64.DegreeDouble

fun degreeOf(value: Float): DegreeFloat {
    return DegreeFloat(value)
}

fun degreeOf(value: Double): DegreeDouble {
    return DegreeDouble(value)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy