HomeSort by relevance Sort by last modified time
    Searched defs:Atan2 (Results 1 - 2 of 2) sorted by null

  /prebuilts/go/darwin-x86/src/math/
atan2.go 7 // Atan2 returns the arc tangent of y/x, using
12 // Atan2(y, NaN) = NaN
13 // Atan2(NaN, x) = NaN
14 // Atan2(+0, x>=0) = +0
15 // Atan2(-0, x>=0) = -0
16 // Atan2(+0, x<=-0) = +Pi
17 // Atan2(-0, x<=-0) = -Pi
18 // Atan2(y>0, 0) = +Pi/2
19 // Atan2(y<0, 0) = -Pi/2
20 // Atan2(+Inf, +Inf) = +Pi/
31 func atan2(y, x float64) float64 { func
    [all...]
  /prebuilts/go/linux-x86/src/math/
atan2.go 7 // Atan2 returns the arc tangent of y/x, using
12 // Atan2(y, NaN) = NaN
13 // Atan2(NaN, x) = NaN
14 // Atan2(+0, x>=0) = +0
15 // Atan2(-0, x>=0) = -0
16 // Atan2(+0, x<=-0) = +Pi
17 // Atan2(-0, x<=-0) = -Pi
18 // Atan2(y>0, 0) = +Pi/2
19 // Atan2(y<0, 0) = -Pi/2
20 // Atan2(+Inf, +Inf) = +Pi/
31 func atan2(y, x float64) float64 { func
    [all...]

Completed in 481 milliseconds