Java Radian From toRad(float angle)

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

Description

to Rad

License

Open Source License

Declaration

public static float toRad(float angle) 

Method Source Code

//package com.java2s;

public class Main {
    public static final double toRad = Math.PI / 180.0;

    public static float toRad(float angle) {
        return (float) (angle * toRad);
    }//w w w  . j a va  2  s .co m
}

Related

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