Java Utililty Methods cos

List of utility methods to do cos

Description

The list of methods to do cos are organized into topic(s).

Method

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