Function storm::math::atan2[][src]

pub fn atan2(y: f32, x: f32) -> f32
Expand description

Computes the four quadrant arctangent of self (y) and other (x) in radians.

  • Average error of 0.00231 radians.
  • Largest error of 0.00488 radians.
  • Speedup of 20.67x over f32.atan2(y);