options filter name (user values)
expression
endoptions can be zero or more options for the filter. They are discussed in detail below.
The name of the filter can be an arbitrary identifier (identifiers can contain letters, digits and the underscore and must not begin with a digit).
The user values must be separated by commas. Any number of user values can be specified. See below for a detailed discussion of user values.
- float name: min-max (default)
- A tuple of type nil:1 with the value of a floating point number chosen in the range from min to max. The default value is default.
- int name: min-max (default)
- A tuple of type nil:1 with the value of an integer chosen in the range from min to max. The default value is default.
- bool name
- A tuple of type nil:1 with the value 0 or 1.
- color name
- A tuple of type rgba:4, representing a color.
- curve name
- A function taking a single argument between 0 and 1 and returning the value of the corresponding point on the curve, also between 0 and 1.
- gradient name
- A function taking a single argument between 0 and 1 and returning the color at that point as a tuple of type rgba:4.
- options image name
- A function taking a single argument of type xy:2 or ra:2 and returning the color of the point with those coordinates in the image as a tuple of type rgba:4. options can be left out or it can be the unit option, discussed below.
unit
Filters and image user values can be given the unit option to use a differently scaled coordinate system. Instead of pixel coordinates, which are the default, a filter or image with the unit option will be scaled such that the value along its shorter axis goes from -1 to 1. The longer axis will be scaled to preserve the aspect ratio.
If the unit option is given the stretched sub-option in addition, the values along both axes will go from -1 to 1.
Every value in MathMap is a tagged tuple. This means it consists of one or more numbers and a symbolic tag. RGBA colors, for example are represented by tuples of length 4 with the tag rgba (standing for "red, green, blue, alpha"). The value rgba:[1,0,0,1] for example, represents the fully opaque color red.
Single numbers are represented by tuples of length 1 with the tag nil (which is the default tag). For simplicity's sake, single numbers need not be written in tuple syntax, i.e. 3.1415 is equivalent to nil:[3.1415].
There are several other tuple tags which are used by MathMap:
Tag Purpose nil Default tag rgba RGBA Color hsva HSVA Color ri Complex number xy Cartesian coordinate ra Polar coordinate v2 2d vector v3 3d vector m2x2 2x2 matrix m3x3 3x3 matrix quat non-commutative quaternion cquat commutative quaternion hyper hypercomplex number In order for the tag system to make sense, operators and functions are overloaded based on the types of their arguments. For this to work at compile time, types must be statically determined. That means that any expression must have only one possible type, e.g. the expression if x then abc:[1,2,3] else xyz:[4,5] end is not valid. Furthermore, all assignments to the same variable must have the same type. Hence, v=[1,2];v=[1,2,3] is not valid.
Tuple types are expressed in this manual in the form T:L where T is the tag and L is the length, e.g. rgba:[1,0,0,1] has the type rbga:4.
Elements of tuples can be extracted by the indexing operator []. The expression p[0], for example, extracts the first element of p and is of type nil:1.
A few variables are set for the position of the pixel to be calculated:To make it easier to write expressions which depend on the image size, a few additional variables are set:
- xy (xy:2)
- The cartesian coordinates of the pixel.
- x (nil:1)
- The first component of the cartesian coordinates of the pixel.
- y (nil:1)
- The second component of the cartesian coordinates of the pixel.
- ra (ra:2)
- The polar coordinates of the pixel.
- r (nil:1)
- The first component of the polar coordinates of the pixel (0 <= r < 2*pi).
- a (nil:1)
- The second component of the polar coordinates of the pixel (the distance from the center).
For the purpose of animations two additional variable are set:
- WH (xy:2)
- The size of the image.
- W (nil:1)
- The width of the image.
- H (nil:1)
- The height of the image.
- R (nil:1)
- The biggest possible value for r in the image, which it has at the four corners.
- XY (xy:2)
- The biggest possible value (in both components) for xy.
- X (nil:1)
- The biggest possible value for x for the image.
- Y (nil:1)
- The biggest possible value for y for the image.
- t (nil:1)
- The time which is 0 <= t < 1. If animation is disabled, the value of t can be chosen in the Settings tab. If you want to make animations loop, set the 'Periodic' check-box in the Settings tab and make sure that the images at t == 0 and t == 1 are the same.
- frame (nil:1)
- The number of the current frame, beginning with 0 for the first frame.
MathMap defines a few mathematical constants to make your life easier:
- pi (nil:1)
- 3.1415926535...
- e (nil:1)
- Euler's constant 2.7182818284...
- I (ri:2)
- The imaginary unit ri:[0,1]
Conditions and invariants are always expected to evaluate to tuples of length 1.
- if condition then
consequence
end- Returns the value of consequence if the value of condition is not 0, 0 otherwise.
- if condition then
consequence
else
alternative
end- Returns the value of consequence if the value of condition is not 0, otherwise the value of alternative.
- while invariant do
body
end- While invariant is not 0, executes body, then returns 0.
- do
body
while invariant end- Executes body until invariant is not equal 0, then returns 0.
- for counter = start .. end do
body
end- Executes body with the variable counter going from start to end, then returns 0. Semantically equivalent to
counter = start;
__tmp = end;
while counter <= __tmp do
body;
counter = counter + 1;
end
Operators and functions in MathMap are overloaded based on the number and tuple types of their arguments. The reference enumerates all the ways in which operators and functions are overloaded by giving the argument and return types like this: (v3:3, m3x3:9) -> v3:3. This particular example describes a function taking two arguments, the first of length 3 with the tag v3 and the second of length 9 with the tag m3x3, and returning a tuple of length 3 with the tag v3.
Most overloading specifications are parametric, though, in that the length and/or tag of the tuples is not fixed, like here: (?t:1, ?t:1) -> ?t:1. The question mark indicates a parametric variable (in this case ?t, whose value is arbitrary, but which must have the same value wherever it occurs. Here the function takes two arguments, both of length 1 and both having the same, but arbitrary, tag. It returns a tuple of length 1 with that very same tag. Parametric variables denoted just by a question mark, without any symbolic name, are arbitrary and independent of all other parametric variables, i.e. two sole question marks can have different values.
a + b
(ri:2, ri:2) -> ri:2Addition. Works on real numbers, complex numbers and tuples. Tuples can be added element-wise or the same real number can be added to each element of a tuples.
(ri:2, ?:1) -> ri:2
(?:1, ri:2) -> ri:2
(?t:1, ?t:1) -> ?t:1
(?t:?l, ?:1) -> ?t:?l
(?t:?l, ?t:?l) -> ?t:?l
a && b
(?t:1, ?t:1) -> ?t:1The logical conjunction of the two arguments.
__applyCurve(c, p)
(curve:1, ?:1) -> nil:1
__applyGradient(g, p)
(gradient:1, ?:1) -> rgba:4
a / b
(ri:2, ri:2) -> ri:2Division. Works on real numbers, complex numbers, tuples, vectors and matrices. A tuple can be divided by another element-wise or by the same number for each element. Vectors can be divided by matrices.
(?t:1, ri:2) -> ri:2
(?:2, m2x2:4) -> v2:2
(?:3, m3x3:9) -> v3:3
(?t:1, ?t:1) -> ?t:1
(?t:?l, ?:1) -> ?t:?l
(?t:?l, ?t:?l) -> ?t:?l
a == b
(ri:2, ri:2) -> nil:1Returns 1 if the arguments are equal, otherwise 0.
(ri:2, ?:1) -> nil:1
(?:1, ri:2) -> nil:1
(?t:1, ?t:1) -> nil:1
a > b
(?t:1, ?t:1) -> nil:1Returns 1 if a is greater than b, otherwise 0.
a >= b
(?t:1, ?t:1) -> nil:1Returns 1 if a is greater or equal than b, otherwise 0.
a < b
(?t:1, ?t:1) -> nil:1Returns 1 if a is less than b, otherwise 0.
a <= b
(?t:1, ?t:1) -> nil:1Returns 1 if a is less or equal than b, otherwise 0.
a % b
(?t:1, ?t:1) -> ?t:1Remainder. Calculates the remainder of a division. Works on real numbers and tuples. The remainder can be calculated for two tuples element-wise or for one tuple and the same number for each element of the tuple.
(?t:?l, ?:1) -> ?t:?l
(?t:?l, ?t:?l) -> ?t:?l
a * b
(ri:2, ri:2) -> ri:2Multiplication. Works on real numbers, complex numbers, quaternions, hypercomplex numbers, tuples, vectors and matrices. Two tuples can be multiplied element-wise or a tuple can be multipled by a single number for each element. Vectors and matrices can be multipled in both directions and two matrices can be multipled as well.
(?:1, ri:2) -> ri:2
(m2x2:4, m2x2:4) -> m2x2:4
(m3x3:9, m3x3:9) -> m3x3:9
(v2:2, m2x2:4) -> v2:2
(v3:3, m3x3:9) -> v3:3
(m2x2:4, v2:2) -> v2:2
(m3x3:9, v3:3) -> v3:3
(quat:4, quat:4) -> quat:4
(cquat:4, cquat:4) -> cquat:4
(hyper:4, hyper:4) -> hyper:4
(?t:1, ?t:1) -> ?t:1
(?t:?l, ?:1) -> ?t:?l
(?t:?l, ?t:?l) -> ?t:?l
-x
(?t:?l) -> ?t:?lNegation.
!a
(?t:1) -> ?t:1The logical negation of the argument.
a != b
(?t:1, ?t:1) -> nil:1Returns 1 if the arguments are not equal, otherwise 0.
a || b
(?t:1, ?t:1) -> ?t:1The logical disjunction of the two arguments.
__origVal(p, frame, drawable)
(xy:2, nil:1, image:1) -> rgba:4
a ^ b
(ri:2, ?t:1) -> ri:2Exponentiation of real and complex numbers and tuples. A tuple can be exponentiated for each element by a single number.
(ri:2, ri:2) -> ri:2
(?t:1, ri:2) -> ri:2
(?t:1, ?t:1) -> ?t:1
(?t:?l, ?:1) -> ?t:?l
a - b
(ri:2, ri:2) -> ri:2Subtraction. Works on real numbers, complex numbers and tuples. One tuple can be subtracted from another element-wise or the same real number can be subtracted from each element of a tuple.
(ri:2, ?:1) -> ri:2
(?:1, ri:2) -> ri:2
(?t:1, ?t:1) -> ?t:1
(?t:?l, ?:1) -> ?t:?l
(?t:?l, ?t:?l) -> ?t:?l
a xor b
(?t:1, ?t:1) -> ?t:1The logical exclusive disjunction of the two arguments.
abs(a)
(ri:2) -> nil:1Absolute value of real numbers, complex numbers (magnitude), quaternions, hypercomplex numbers and vectors (Euclidian norm).
(quat:4) -> nil:1
(cquat:4) -> nil:1
(hyper:4) -> nil:1
(v2:2) -> nil:1
(v3:3) -> nil:1
(?t:1) -> ?t:1
(?t:?l) -> ?t:?l
acos(a)
(ri:2) -> ri:2Arccosine of real and complex numbers.
(?t:1) -> ?t:1
acosh(a)
(ri:2) -> ri:2Hyperbolic arccosine of real and complex numbers.
(?t:1) -> ?t:1
alpha(c)
(rgba:4) -> nil:1The alpha (opacity) component of the color c.
arg(a)
(ri:2) -> nil:1The argument of a complex number.
asin(a)
(ri:2) -> ri:2Arcsine of real and complex numbers.
(?t:1) -> ?t:1
asinh(a)
(ri:2) -> ri:2Hyperbolic arcsine of real and complex numbers.
(?t:1) -> ?t:1
atan(y, x)
(?t:1, ?t:1) -> ?t:1Arctangent of y/x, with the signs of the arguments taken into account to determine the correct quadrant of the result.
atan(a)
(ri:2) -> ri:2Arctangent of real and complex numbers.
(?t:1) -> ?t:1
atanh(a)
(ri:2) -> ri:2Hyperbolic arctangent of real and complex numbers.
(?t:1) -> ?t:1
beta(a, b)
(?t:1, ?t:1) -> ?t:1The complete beta function for positive real arguments.
blue(c)
(rgba:4) -> nil:1The blue component of the color c.
ceil(a)
(?t:1) -> ?t:1The ceiling of a number, defined as the smallest integer not smaller than that number.
clamp(a, l, u)
(?t:?l, ?t:?l, ?t:?l) -> ?t:?lClamp each element of tuple a to be not less than the corresponding element in l and not greater than the corresponding element in u.
conj(a)
(ri:2) -> ri:2The complex conjugate.
cos(a)
(ri:2) -> ri:2Cosine of real and complex numbers.
(?t:1) -> ?t:1
cosh(a)
(ri:2) -> ri:2Hyperbolic cosine of real and complex numbers.
(?t:1) -> ?t:1
crossp(a, b)
(?t:3, ?t:3) -> ?t:3Cross product of two tuples/vectors with three elements.
deg2rad(a)
(?:1) -> nil:1Convert degrees to radians.
det(a)
(m2x2:4) -> nil:1Determinant of a matrix.
(m3x3:9) -> nil:1
dotp(a, b)
(?t:?l, ?t:?l) -> nil:1Dot product of two tuples/vectors.
ell_int_D(phi, k, n)
(?t:1, ?t:1, ?t:1) -> ?t:1Incomplete elliptic integral D in Legendre form.
ell_int_E(phi, k)
(?t:1, ?t:1) -> ?t:1Incomplete elliptic integral E in Legendre form.
ell_int_Ecomp(k)
(?t:1) -> ?t:1Complete elliptic integral E in Legendre form.
ell_int_F(phi, k)
(?t:1, ?t:1) -> ?t:1Incomplete elliptic integral F in Legendre form.
ell_int_Kcomp(k)
(?t:1) -> ?t:1Complete elliptic integral K in Legendre form.
ell_int_P(phi, k, n)
(?t:1, ?t:1, ?t:1) -> ?t:1Incomplete elliptic integral P in Legendre form.
ell_int_RC(x, y)
(?t:1, ?t:1) -> ?t:1Incomplete elliptic integral RC in Carlson form.
ell_int_RD(x, y, z)
(?t:1, ?t:1, ?t:1) -> ?t:1Incomplete elliptic integral RD in Carlson form.
ell_int_RF(x, y, z)
(?t:1, ?t:1, ?t:1) -> ?t:1Incomplete elliptic integral RF in Carlson form.
ell_int_RJ(x, y, z, p)
(?t:1, ?t:1, ?t:1, ?t:1) -> ?t:1Incomplete elliptic integral RJ in Carlson form.
ell_jac_cn(u, m)
(?t:1, ?t:1) -> ?t:1Jacobian elliptic function cn for real and complex arguments.
(ri:2, ?:1) -> ri:2
ell_jac_dn(u, m)
(?t:1, ?t:1) -> ?t:1Jacobian elliptic function dn for real and complex arguments.
(ri:2, ?:1) -> ri:2
ell_jac_sn(u, m)
(?t:1, ?t:1) -> ?t:1Jacobian elliptic function sn for real and complex arguments.
(ri:2, ?:1) -> ri:2
exp(a)
(ri:2) -> ri:2The natural exponential function e^x for real and complex numbers.
(?t:1) -> ?t:1
floor(a)
(?t:1) -> ?t:1The floor of a number, defined as the largest integer not greater than that number.
gamma(a)
(ri:2) -> ri:2The (logarithm of the) gamma function for real and complex numbers.
(?t:1) -> ?t:1
gray(c)
(rgba:4) -> nil:1The luminance value of the color c.
grayColor(g)
(?t:1) -> rgba:4Returns a fully opaque gray RGBA color with luminance g, i.e. rgba:[g,g,g,1].
grayaColor(g, a)
(?t:1, ?t:1) -> rgba:4Returns a gray RGBA color with luminance g and alpha component a, i.e. rgba:[g,g,g,a].
green(c)
(rgba:4) -> nil:1The green component of the color c.
inintv(a, l, u)
(?t:1, ?t:1, ?t:1) -> nil:1Returns 1 if a lies in the interval defined by the lower bound l and the upper bound u, otherwise 0.
lerp(p, a, b)
(?:1, ?t:?l, ?t:?l) -> ?t:?lLinear interpolation between a and b, done element-wise. The result is a if p is 0, b if p is 1, and linearly interpolated in between. More formally, the result is a*(1-t)+b*t.
(?t:?l, ?t:?l, ?t:?l) -> ?t:?l
log(a)
(ri:2) -> ri:2The natural logarithm for real and complex numbers.
(?t:1) -> ?t:1
max(a, b)
(?t:?l, ?t:?l) -> ?t:?lThe larger of two numbers. For tuples, the larger number for each pair of elements is determined.
min(a, b)
(?t:?l, ?t:?l) -> ?t:?lThe smaller of two numbers. For tuples, the smaller number for each pair of elements is determined.
noise(octaves, persistence, lacunarity, a)
(?:1, ?:1, ?:1, ?:3) -> nil:1
noise(a)
(?:3) -> nil:1The Perlin noise function, defined in three-dimensional space. Its values lie between -1 and 1 if octaves is 1. octaves is the number of octaves (by default 1). persistence is the factor by which the amplitude dimishes from one octave to the next. lacunarity is the factor by which the frequency increases from one octave to the next.
noiseBillow(octaves, persistence, lacunarity, a)
(?:1, ?:1, ?:1, ?:3) -> nil:1A "billowy" noise function, similar to Perlin noise. Its values lie between -1 and 1 if octaves is 1. octaves is the number of octaves (by default 1). persistence is the factor by which the amplitude dimishes from one octave to the next. lacunarity is the factor by which the frequency increases from one octave to the next.
noiseRidgedMulti(octaves, lacunarity, a)
(?:1, ?:1, ?:3) -> nil:1A "ridgy" noise function, similar to Perlin noise. Its values lie between -1 and 1 if octaves is 1. octaves is the number of octaves (by default 1). persistence is the factor by which the amplitude dimishes from one octave to the next. lacunarity is the factor by which the frequency increases from one octave to the next.
normalize(a)
(?t:?l) -> ?t:?lNormalize a vector to Euclidian length 1.
pixelSize(drawable)
(image:1) -> xy:2Returns a tuple giving the width and height of one pixel in the image drawable.
pmod(a, b)
(?t:1, ?t:1) -> ?t:1The remainder of a division, made positive if the dividend is negative by adding the divisor.
print(val)
(?:?) -> nil:1Print a tuple to standard output. Useful for debugging a script.
rad2deg(a)
(?:1) -> deg:1Convert radians to degrees.
rand(a, b)
(?t:1, ?t:1) -> ?t:1A random number between a and b.
red(c)
(rgba:4) -> nil:1The red component of the color c.
render(drawable)
(image:1) -> image:1Renders the image drawable, giving another drawable, which is a bitmap image.
rgbColor(r, g, b)
(?t:1, ?t:1, ?t:1) -> rgba:4Returns a fully opaque RGBA color with red component r, green component g and blue component b, i.e. rgba:[r,g,b,1].
rgbaColor(r, g, b, a)
(?t:1, ?t:1, ?t:1, ?t:1) -> rgba:4Returns an RGBA color with red component r, green component g, blue component b and alpha component a, i.e. rgba:[r,g,b,a].
scale(a, fl, fu, tl, tu)
(?t:?l, ?t:?l, ?t:?l, ?t:?l, ?t:?l) -> ?t:?lScale each element of a which is supposed to lie between the corresponding elements of fl and fu to lie at the same point between tl and tu, proportionately. More formally, computes ((a-fl)/(fu-fl))*(tu-tl)+tl.
sign(a)
(?t:?l) -> ?t:?lThe sign of a number or tuple. The sign of a number is -1 if the number is negative, 1 if the number is positive and 0 if the number is 0. For a tuple, calculates the sign element-wise.
sin(a)
(ri:2) -> ri:2Sine of real and complex numbers.
(?t:1) -> ?t:1
sinh(a)
(ri:2) -> ri:2Hyperbolic sine of real and complex numbers.
(?t:1) -> ?t:1
sqrt(a)
(ri:2) -> ri:2The square root of a complex or real number. A real argument must be positive, otherwise the result will not be definied.
(?t:1) -> ?t:1
sum(a)
(?t:?l) -> nil:1The sum of all elements of a tuple.
tan(a)
(ri:2) -> ri:2Tangent of real and complex numbers.
(?t:1) -> ?t:1
tanh(a)
(ri:2) -> ri:2Hyperbolic tangent of real and complex numbers.
(?t:1) -> ?t:1
toHSVA(a)
(rgba:4) -> hsva:4Conversion of an RGBA color value to HSVA.
toRA(arg)
(xy:2) -> ra:2Conversion of rectangular coordinates to polar coordinates.
(ra:2) -> ra:2
toRGBA(a)
(hsva:4) -> rgba:4Conversion of an HSVA color value to RGBA.
toXY(a)
(ra:2) -> xy:2Conversion of polar coordinates to rectangular coordinates.
(xy:2) -> xy:2
voronoiCells(a)
(?:3) -> nil:1The Voronoi cell function, defined in three-dimensional space. Its values lie between -1 and 1.