commonMain.ru.casperix.math.angle.Degree.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of math Show documentation
Show all versions of math Show documentation
Simple set of geometric and other types
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)
}