fatan2 static method

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

Implementation

static double fatan2( double y, double x ){
	return _radToAng( ClipMath.atan2( y, x ) );
}