Android Utililty Methods Degree to Radian Convert

List of utility methods to do Degree to Radian Convert

Description

The list of methods to do Degree to Radian Convert are organized into topic(s).

Method

floattoRadians(float deg)
Returns the given degrees to radians
return deg * TO_RADIANS;
doubledeg2rad(double deg)
Converts degree to radian
return (deg * Math.PI / 180.0);