Hey,
Just a heads up, the descriptions for ofDegToRad(…) and ofRadToDeg(…) are the wrong way round in the docs.
ofRadToDeg(…)
"ofRadToDeg(float degrees)
returns
float
Returns the converted value of a degrees angle.
description
Convert an angle value expressed in Degrees into an angle in Radians. For example if we call this function for degrees=90 we obtain PI/2.
"
should be :
"
ofDegToRad(float degrees)
returns
float
Returns the converted value of a degrees angle.
description
Convert an angle value expressed in Degrees into an angle in Radians. For example if we call this function for degrees=90 we obtain PI/2.
"
although the names are pretty descriptive it might catch a few out.
cheers