Java Radian From toRadians(double value)

Here you can find the source of toRadians(double value)

Description

Converts the given double value (between 0.0d and 1.0d and converts it into radians.

License

Open Source License

Parameter

Parameter Description
value the value, between 0.0d and 1.0d .

Return

the value in radians.

Declaration

public static final double toRadians(double value) 

Method Source Code

//package com.java2s;
/*/*from w w w.  j  av a  2s  .  c  o  m*/
 * Copyright 2016, Robert 'Bobby' Zenz
 * 
 * This file is part of Quadracoatl.
 * 
 * Quadracoatl is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * Quadracoatl 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 Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with Quadracoatl.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * Converts the given double value (between {@code 0.0d} and {@code 1.0d}
     * and converts it into radians.
     * 
     * @param value the value, between {@code 0.0d} and {@code 1.0d}.
     * @return the value in radians.
     */
    public static final double toRadians(double value) {
        return value * Math.PI * 2;
    }
}

Related

  1. toRad(float angle)
  2. toRadian(double ddd_dddd)
  3. toRadian(int a)
  4. toRadians(double angdeg)
  5. toRadians(double angle)
  6. toRadians(double x)
  7. toRadians(final double value)
  8. toRadians(float a)
  9. toRadians(int latitude)