Java sin sin(float angle)

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

Description

sin

License

Open Source License

Declaration

public static float sin(float angle) 

Method Source Code

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

public class Main {
    public static float sin(float angle) {
        return (float) Math.sin(angle);
    }//from w w w  .j  av  a2  s.co  m
}

Related

  1. sin(double d)
  2. sin(double radians)
  3. sin(double... v)
  4. sin(final double value)
  5. sin(final float angle)
  6. sin(float angle)
  7. sin(float n)
  8. sin(int angle)
  9. sin(int angle)