Error 1

( expected

You must provide arguments to functions. Do this by putting them into brackets.

This does not work:

a = sin;

b = max c, d, e, f;

You have to specify arguments surrounded by brackets:

a = sin( Plane.Pitch_X );

b = max( c, d, e, f );

Xpressionist 3