Content deleted Content added
HairyWombat (talk | contribs) m →Simple examples: Grammar |
HairyWombat (talk | contribs) m →Block-diagram composition: Made image bigger to make caption readable, as per Wikipedia:Picture tutorial#Short.2C wide images |
||
Line 54:
Contrary to Max-like visual programming languages where the user does manual connections, FAUST primitives are assembled in block diagrams by using a set of high-level block diagram composition operations. You can think of these composition operators as a generalization of the mathematical function composition operator.
[[File:Faust-simple-block-diagrams.jpg|thumb|upright=1.75|Simple examples of block-diagram composition]]
{| class="wikitable"
Line 73:
process = + : abs;
</source>
Here is an example of parallel composition (a stereo cable) using the operator ',' (comma) that puts in parallel its left and right expressions:
<source lang=cpp>
process = _,_;
|