A must to have function that converts radians into degrees.
/** Convert from radians to degrees.
@param rad Radians value.
@return Returns the degrees value.
@see degreesToRadians:
*/
CGFloat radiansToDegrees (CGFloat rad) {
return rad * (180.0f / M_PI);
}
Download the ready-for-use source file (.m) of Radians to Degrees conversion
No comments:
Post a Comment