Java tan tan(float angle)

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

Description

tan

License

Open Source License

Declaration

public static float tan(float angle) 

Method Source Code

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

public class Main {
    public static float tan(float angle) {
        return (float) Math.tan(angle);
    }//from  w ww.j  a  va2  s .co m
}

Related

  1. tan(double a)
  2. tan(final float value)
  3. tan(float angle)
  4. tan(float angle)
  5. tan(float f)
  6. tan(int f)