- ACos(context, num)
-
The math:acos function returns the arccosine value of a number.
- ASin(context, num)
-
The math:asin function returns the arcsine value of a number.
- ATan(context, num)
-
The math:atan function returns the arctangent value of a number.
- ATan2(context, y, x)
-
The math:atan2 function returns the angle ( in radians ) from the X axis
to a point (y,x).
- Abs(context, num)
-
The math:abs function returns the absolute value of a number.
- Constant(context, name, precision)
-
The math:constant function returns the specified constant to a set precision.
- Cos(context, num)
-
The math:cos function returns cosine of the passed argument.
- Exp(context, num)
-
The math:exp function returns e (the base of natural logarithms) raised to
a power.
- Highest(context, nodeset)
-
The math:highest function returns the nodes in the node set whose value is
the maximum value for the node set. The maximum value for the node set is
the same as the value as calculated by math:max. A node has this maximum
value if the result of converting its string value to a number as if by the
number function is equal to the maximum value, where the equality
comparison is defined as a numerical comparison using the = operator.
- Log(context, num)
-
The math:log function returns the natural logarithm of a number.
- Lowest(context, nodeset)
-
The math:lowest function returns the nodes in the node set whose value is
the minimum value for the node set. The minimum value for the node set is
the same as the value as calculated by math:min. A node has this minimum
value if the result of converting its string value to a number as if by the
number function is equal to the minimum value, where the equality
comparison is defined as a numerical comparison using the = operator.
- Max(context, nodeset)
-
The math:max function returns the maximum value of the nodes passed as
the argument.
- Min(context, nodeset)
-
The math:min function returns the minimum value of the nodes passed as
the argument.
- Power(context, base, exponent)
-
The math:power function returns the value of a base expression taken to
a specified power.
- Random(context)
-
The math:random function returns a random number from 0 to 1.
- Sin(context, num)
-
The math:sin function returns the sine of the number.
- Sqrt(context, num)
-
The math:sqrt function returns the square root of a number.
- Tan(context, num)
-
The math:tan function returns the tangent of the number passed as
an argument.