Java Radian From toRad(double angle)

Here you can find the source of toRad(double angle)

Description

to Rad

License

Open Source License

Declaration

private static double toRad(double angle) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    private static double toRad(double angle) {
        return angle * Math.PI / 180;
    }//from ww w  .  j  a  v a 2  s  .c o m
}

Related

  1. toRad(float angle)
  2. toRadian(double ddd_dddd)
  3. toRadian(int a)
  4. toRadians(double angdeg)