Android Utililty Methods Trigonometric Functions

List of utility methods to do Trigonometric Functions

Description

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

Method

floattanr(float radians)
Return the value of tan(radians)
if (TANGENT == null)
    initialise();
return TANGENT[(int) constrainAngle(radians * TO_DEGREES)];