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)) }