Converts the input in degrees, into radians.
Radians ( deg As Number ) As Number
Argument | Type | Description |
---|---|---|
deg | Number | Angle in degrees. |
Intent >radians(180) --> 3.142
Intent >radians(90) * 180.0 / m_pi --> 90.0This call takes the 90 degree input, converts it to radians with the function and then converts it back to degrees.