You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thebookofshaders/glossary/degrees
Yvan Sraka 2410899756 Remove trailing whitespaces 7 years ago
..
README.md Remove trailing whitespaces 7 years ago

README.md

Degrees

Convert a quantity in radians to degrees

Declaration

float degrees(float radians)  
vec2 degrees(vec2 radians)  
vec3 degrees(vec3 radians)  
vec4 degrees(vec4 radians)

Parameters

radians specify the quantity, in radians, to be converted to degrees.

Description

degrees() converts a quantity, specified in radians into degrees. That is, the return value is (180.0*radians)/PI

See Also

radians