aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/Extensions.kt
blob: 989118f4d1bc95eac8786dc39f408da793cf6a55 (plain)
1
2
3
4
5
6
7
fun Double.sine(): Double {
  return kotlin.math.sin(toRadians(this))
}

fun Double.cosine(): Double {
  return kotlin.math.cos(toRadians(this))
}