atan2 constant

double Function(num a, num b) const atan2

Computes and returns the angle of the point a/b in radians, in cartesian coordinates a=y, and b=x. when measured counterclockwise from a circle's x axis (where 0,0 represents the center of the circle).

Implementation

static const atan2 = math.atan2;