RadiansToDegrees - Math

Member of: Math Script

Converts from radians to degrees.

SyntaxEdit

float Function RadiansToDegrees(float afRadians) native global

ParametersEdit

  • afRadians: The value in radians to convert.

Return ValueEdit

The passed-in value converted to degrees.

ExamplesEdit

float x = RadiansToDegrees(6.28318) ; x ~= 360
float y = RadiansToDegrees(1.57080) ; y ~= 90

NotesEdit

The same result can be achieved without a function call by simply dividing by 0.01745329252:

float x = 6.2831853072 / 0.01745329252 ; x ~= 360
float y = 1.5707963268 / 0.01745329252 ; y ~= 90

See AlsoEdit