Adxmda

adxmda is a numeric value that determines the current angular mode. It is used for the functions that return or use angles.

adxmda can only have three values:

Syntax

adxmda

Examples

# This function returns the following character string:# "90 (in degrees) = 1.570796327 (in radians) = 100 (in grades)"Funprog CONVERSION_MESSAGELocal char CONVERSION_RULE(200)adxmda=0CONVERSION_RULE=num$(acos(0))-"(in degrees) = "adxmda=1CONVERSION_RULE+=num$(acos(0))-"(in radians) = "adxmda=2CONVERSION_RULE+=num$(acos(0))-"(in grades)"End CONVERSION_RULE

See also

sin, cos, tan, asin, acos, atan, atan2.