Java sin sin(double anAngle)

Here you can find the source of sin(double anAngle)

Description

Returns the sign of the given angle in degrees.

License

Open Source License

Declaration

public static double sin(double anAngle) 

Method Source Code

//package com.java2s;

public class Main {
    /**// w w  w  .j  ava  2 s  . co m
     * Returns the sign of the given angle in degrees.
     */
    public static double sin(double anAngle) {
        return Math.sin(Math.toRadians(anAngle));
    }
}

Related

  1. sin(double a)
  2. sin(double d)
  3. sin(double radians)
  4. sin(double... v)
  5. sin(final double value)