= private = protected
atan2(p1, p2)
Computes the arc tangent given y and x. Returns -PI..PI.
static VALUE math_atan2(VALUE obj, VALUE y, VALUE x) { Need_Float2(y, x); return DBL2NUM(atan2(RFLOAT_VALUE(y), RFLOAT_VALUE(x))); }