Java Radian to Degree radianToDegrees(float angle)

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

Description

Converts an angle from radians to degrees

License

Open Source License

Parameter

Parameter Description
angle Angle to convert

Return

Angle as degrees

Declaration

public static float radianToDegrees(float angle) 

Method Source Code

//package com.java2s;
/**//from  ww w.  j a  v a2 s .c  o m
 * Copyright (C) 2014 Aniruddh Fichadia
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 * 
 * If you use or enhance the code, please let me know using the provided author information or via
 * email Ani.Fichadia@gmail.com.
 */

public class Main {
    /**
     * Converts an angle from radians to degrees
     * 
     * @param angle Angle to convert
     * 
     * @return Angle as degrees
     */
    public static float radianToDegrees(float angle) {
        return (float) (angle * 180.0f / Math.PI);
    }
}

Related

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