List of utility methods to do cos
float | cos(float f) cos return a[(int) (f * 10430.378F + 16384.0F) & '\uffff']; |
int | cos(int angle) cos return sin(90 - angle);
|
float | cos(int angle) cos return cos[angle];
|
int | cos(int f) cos return sin(f + 102943);
|
float | cos(int i) Returns the cosine of i for (; i < 0; i += 360) { return COS_TABLE[i]; |
double | cos(Integer a) cos return Math.cos(a.doubleValue());
|
double | cos(Long a) Cos. return Math.cos(a.doubleValue());
|
double | cosd(double degreeAngle) cosd return Math.cos(Math.toRadians(degreeAngle));
|
double | cosd(double x) Cos() in degres return Math.cos(x * (Math.PI / 180.0));
|
float | cosDeg(double degrees) cos Deg return cosDeg((float) degrees); |