HyperFun: Operators and Expressions
There are two types of expressions permissible in the language: 'functional' expression and 'logical' expression.
The functional expression is a conventional numerical expression built with using:
There are usual arithmetic operators, all of them always result in a floating point (double) number:
There are the following geometric operators relevant for F-rep that are applied to any functional expressions semantically treated as geometric objects:
The following mathematical functions taking any numerical (functional) expressions and resulting in double number can be used in the functional expressions:
Unary functions:
'sqrt', 'exp', 'log', 'logd', 'sin', 'cos', 'tan', 'asin', 'acos', 'atan', 'abs', 'sinh', 'cosh', 'tanh', 'sign'.
Binary functions:
'max', 'min', 'atan2', 'mod'.
An extendible F-rep library contains functions representing geometric
primitives and transformations. Each function has its own set of arguments,
all of which are functional expressions. The result is a real number.
Examples of library functions:
There can be references in the functional expression to
geometric objects
defined in the same program or saved in the special library.
The form of a corresponding call stems from a syntax of object's head.
Example:
Sphere(xx,aa)
The logical expression is built of functional expressions as its arguments, with using relational and boolean operators. The functional expression value '0' is treated as boolean 'false'; other values are treated as 'true' in the logical expressions.
There are the following relational operators:
'<', '>', '<=', '>=', '=', '/='.
There are two infix boolean operators ('and', 'or') and one being used in prefix form ('not').
Examples:
i < 4;
(x[1] = a[1] and (2 <= xx[3] < 5.5))
In both kinds of expressions, parentheses can be used by a traditional manner and are recommended for usage to make expressions structure more clear. The rules of precedence in the expressions are also traditional. Note only that the special geometric operators have lower precedence (and accordingly are executed later) than the arithmetic operators.