Java Radian to Degree toDegrees(Double rad)

Here you can find the source of toDegrees(Double rad)

Description

to Degrees

License

Open Source License

Declaration

public static Double toDegrees(Double rad) 

Method Source Code

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

public class Main {
    public static Double toDegrees(Double rad) {
        if (rad == null) {
            return null;
        }// ww w.  j av  a  2 s  .  c om
        return Math.toDegrees(rad);
    }
}

Related

  1. radiansToDegree(final float radians)
  2. radiansToDegrees(float angleRads)
  3. radiansToDegrees(float radians)
  4. radianToDegree(double angleRad)
  5. radianToDegrees(float angle)
  6. toDegrees(float radians)
  7. toDegrees(float radians)