StrictMath.toRadians(double angdeg) has the following syntax.
public static double toRadians(double angdeg)
In the following code shows how to use StrictMath.toRadians(double angdeg) method.
//from w ww. ja va 2s .co m public class Main { public static void main(String[] args) { double d1 = 12, d2 = 0.0; System.out.println("value in radian of " + d1 + " = " + StrictMath.toRadians(d1)); System.out.println("value in radian of " + d2 + " = " + StrictMath.toRadians(d2)); } }
The code above generates the following result.