atan2 static method

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

Implementation

static double atan2(num x, num y) {
  return math.atan2(x, y);
}