The Math Class Methods
| ceil(x) |
Return the integer above x |
floor(x) |
Return the integer below x |
| round(x) |
Return the rounded integer |
abs(x) |
Return the absolute value of x |
| sqrt(x) |
Return the square root of x |
min(x,y) |
Return the minimum of x and y |
| max(x,y) |
Return the maximum of x and y |
pow(x,y) |
Raise x to the y power. |
| cos(x) |
Return the cosine of x |
sin(x) |
Return the sine of x |
| tan(x) |
Return the tangent of x |
acos(x) |
Return the arc cosine ofx |
| asin(x) |
Return the arcsine of x |
atan(x) |
Return the arctangent of x |