Java Angle to Degree toDegree(double angle)

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

Description

to Degree

License

Apache License

Declaration

public static float toDegree(double angle) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static float toDegree(double angle) {
        return (float) Math.toDegrees(angle);
    }/*from   w ww. j av a  2  s  .c  o m*/
}

Related

  1. toDegrees(final double angle)
  2. toDegrees(float angle)
  3. toDegrees(int val)
  4. toDegrees(Short angrad)