ATan (open)
Returns the arctangent of a value.
Syntax
LOADLIB "wh::float.whlib";
FLOAT FUNCTION ATan(FLOAT value)Parameters
FLOAT valueThe FLOAT value from which to determine the arctangent
Return value
FLOATThe arctangent of @italic value in radians
Examples
// The FLOAT value will be 0.7853...
FLOAT f := ATan(1.0);