public interface TrigonometryBase
| Modifier and Type | Method and Description |
|---|---|
float |
cos(float x)
Calculates the cosine of a given value.
|
float |
sin(float x)
Calculates the sine of a given value.
|
default float |
tan(float x)
Calculates the tangent of a given value.
|
float sin(float x)
x - The value.float cos(float x)
x - The value.default float tan(float x)
x - The value.