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

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

fun Double.toFlooredInt(): Int {
  return kotlin.math.floor(this).toInt()
}