Calculates the arc tangent of y / x, returning a value ranging from -π to π.
import std.math.operations : isClose; import std.math.constants : PI; import std.math.algebraic : sqrt; assert(atan2(1.0, sqrt(3.0)).isClose(PI / 6));
See Implementation
Calculates the arc tangent of y / x, returning a value ranging from -π to π.