88 |
|
.BR PI |
89 |
|
the ratio of a circle's circumference to its diameter. |
90 |
|
.TP |
91 |
< |
.BR "if(cond, then, else)" |
92 |
< |
if cond is greater than zero, |
91 |
> |
.BR "if(test, then, else)" |
92 |
> |
if test is greater than zero, |
93 |
|
then is evaluated, otherwise else is evaluated. |
94 |
|
This function is necessary for recursive definitions. |
95 |
|
.TP |
102 |
|
.TP |
103 |
|
.BR "rand(x)" |
104 |
|
compute a random number between 0 and 1 based on x. |
105 |
+ |
.TP |
106 |
+ |
.BR "min(a1, a2, ..)" |
107 |
+ |
return the minimum value from a list of arguments. |
108 |
+ |
.TP |
109 |
+ |
.BR "max(a1, a2, ..)" |
110 |
+ |
return the maximum value from a list of arguments. |
111 |
|
.TP |
112 |
|
.BR "floor(x)" |
113 |
|
return largest integer not greater than x. |