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

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

There is a newer version: 1.9.0
Show newest version
package ru.casperix.math.angle

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

fun degreeOf(value: Float): ru.casperix.math.angle.float32.DegreeFloat {
    return ru.casperix.math.angle.float32.DegreeFloat(value)
}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy