Hi all, I think there is a bug on atan2 definition...
# javascript
g
Hi all, I think there is a bug on atan2 definition. There is an inversion of parameters. The Javascript definition is
atan2(y,x)
. In math.kt it is defined as
public fun atan2(x: Double, y: Double): Double
. It’s working if you use the position but confusing.