Equinox Online Help - Language Reference - A to Z

Home

Deg

Applies to
SyntaxDeg(NumberExpression)
Action[Function] Converts an angle from radians to degrees.
ScopeUsable anywhere.
Notes

This function converts NumberExpression from radians to degrees using the formula NumberExpression * 180 / p. Note that NumberExpression is an angle and Equinox requires that you should express it in radians rather than degrees (360º = 2p * radians). You may use the Rad function to convert degrees to radians.

CategoryMaths
See Also Abs, Acos, Asin, Atan, Cos, Int, Log, Max, Min, MinMax, Rad, Rnd, RndStart, Round, Sign, Sin, Sqrt, Tan
Example

This example calculates the angle A from the opposite and adjacent sides in a right-angled triangle.

Number Angle, adjacent, opposite

|...

Angle = Deg(Atan(opposite / adjacent))