StrictMath
The StrictMath
Class is a subset of the Math Class that focuses on providing highly precise mathematical functions. It includes methods for calculating trigonometric functions like sine, cosine, and tangent, as well as their inverse functions like arcsine and arccosine. StrictMath is ideal for situations where accuracy is of utmost importance, ensuring reliable and consistent mathematical calculations.
Methods
StrictMath.sin(a: Double): Double
-Calculates the sine of the argument a
.
StrictMath.cos(a: Double): Double
- Calculates the cosine of the argument a
.
StrictMath.tan(a: Double): Double
-Calculates the tangent of the argument a
.
StrictMath.asin(a: Double): Double
-Calculates the arcsine of the argument a
.
StrictMath.acos(a: Double): Double
-Calculates the arccosine of the argument a
.
Last updated