*You screwed up a coordinate.
these are math operators
| OPERATOR/FUNCTION | MEANING | EXAMPLE |
|---|---|---|
| * | / | multiply & divide | |
| + | - | plus & minus/negate | '-5+6-2' = -1 |
| pow() | exponents | 'pow(3,2)' = 3^2 (3 squared) |
| Sqrt() | square route | 'Sqrt(16)' = 4 |
| sinh() | cosh()| tanh() |acosh() | asinh() | atanh() | trigonometric ratios | 'sinh(40)' = sin(40) = sine of 40deg. |
| pi | the value of pi | |
| abs() | absolute value | 'abs(-5)' = |-5| = 5 |
| ( | ) | order of operations |