Here you can find the source of toDegrees(Short angrad)
Parameter | Description |
---|---|
angrad | the angrad |
public static double toDegrees(Short angrad)
//package com.java2s; public class Main { /**/*from w ww . jav a 2 s.co m*/ * To degrees. * * @param angrad the angrad * @return the double */ public static double toDegrees(Short angrad) { return Math.toDegrees(angrad.doubleValue()); } /** * To degrees. * * @param angrad the angrad * @return the double */ public static double toDegrees(Integer angrad) { return Math.toDegrees(angrad.doubleValue()); } /** * To degrees. * * @param angrad the angrad * @return the double */ public static double toDegrees(Float angrad) { return Math.toDegrees(angrad.doubleValue()); } /** * To degrees. * * @param angrad the angrad * @return the double */ public static double toDegrees(Long angrad) { return Math.toDegrees(angrad.doubleValue()); } /** * To degrees. * * @param angrad the angrad * @return the double */ public static double toDegrees(Double angrad) { return Math.toDegrees(angrad); } }