MathLib.tan returns the tangent of an angle that is measured in radians.
eglx.lang
static function tan(value float in) returns(float);
Here is example code:
result = mathLib.tan(myVar);
In the case of Java™, EGL uses methods in the Java StrictMath class that are equivalent to the EGL functions. This usage ensures that the runtime behavior is the same for every Java Virtual Machine.
Target | Issue |
---|---|
Java | No issues. |
JavaScript | No issues. |