There are four types of the statements each ending with ';':
Its general form is:
<localVarName> '=' <functional expression> ';'
Here <localVarName> is a name of any local variable (including name of array's element) or a name of a coordinate variable. Examples:
i = 1;
i = i + 1;
x1 = x[1] + a[1];
Metric[2] = b + aa[I]* exp(-sqrt(xx1^2 + x[2]^3);
StrangeBody = Head | (Hand[1] & Leg[2]);
sphere1 = Sphere(x,a);
This statement allows to assign values to all elements of array. Its general form is:
<ElemArrayName> '=' '[' <constant>, …, <constant> ']' ';'
Example:
pz = [100., -20, 2, 0., 0., -3, 0., 0., 1E-10];
It is a traditional 'if-then-else' statement having two forms:
Example:
if (x[4]= 0) then metamorph = CSGobject;
else if (x[4] = 1) then metamorph = blobbyobject;
endif;
endif;
The iterative statement allows to define repeating loops. Its general form is:
'while' '(' <boolean expression> ')' 'loop' <statements> 'endloop' ';'
Example:
i=1;
while (i<10) loop
xt[i] = x[1] - x0[i];
i = i+1;
endloop;