atan2 static method

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

Implementation

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