atan2 function

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

Implementation

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