This page was last updated for version v1.2.0
var ... or variable ...
var ...
variable ...
Write the name of the variable which you wanna update.
Insert operator like =, +=, -=, *= etc.
=
+=
-=
*=
Then write the equation you'd like
Trigonometric functions: sin(x), cos(x), tan(x), cot(x), sec(x), cosec(x), asin(x), acos(x)
sin(x)
cos(x)
tan(x)
cot(x)
sec(x)
cosec(x)
asin(x)
acos(x)
Square root: sqrt(x)
sqrt(x)
Power: ^
^
atan2arrow-up-right: atan(x,y),
atan(x,y)
Absolute value: abs(x)
abs(x)
Others: *, /, +, -, % (remainder)
*
/
+
-
% (remainder)
variable r=2*{PI}*{i}/32
variable x=cos({r})
var y=sin({r})
var z=sqrt({x}^2 + 5*{x} - 3) % abs({x})
Last updated 1 year ago