atan2f function

double atan2f(
  1. double y,
  2. double x
)

Implementation

double atan2f(double y, double x) => math.atan2(y, x);