LOGIC



IF

Click box to see full description


The value of T_VAL or F_VAL is returned, depending on COND:
IF (COND) OUT = T_VAL 
ELSE      OUT = F_VAL

OR

Click box to see full description


Returns the logical OR of the inputs.
If A or any of the B's are true, OUT is true, else false.

AND

Click box to see full description


Returns the logical AND of the inputs.
If all of the inputs are true, OUT is true, otherwise false.

NOT

Click box to see full description


Returns the logical NOT of the input.
If A is true, OUT is false. 
If A is false, OUT is true.

XOR

Click box to see full description


Returns the logical XOR of the inputs.
A  B  OUT
---------
0  0 | 0
0  1 | 1
1  0 | 1
1  1 | 0

EQUAL

Click box to see full description


Returns the logical value for a test of equality.
If A == B, OUT is true, otherwise it is false.

NOT_EQUAL

Click box to see full description


Returns the logical value for a test of inequality.
If A != B, OUT is true, otherwise it is false.

LESS_THAN

Click box to see full description


Returns the logical value for a test of A < B.
If A is less than B, OUT is true, otherwwise it is false.

LESS_OR_EQUAL

Click box to see full description


Returns the logical value for a test of A <= B.
If A is less than or equal to B, OUT is true, otherwise it is false.

GREATER_THAN

Click box to see full description


Returns the logical value for a test of A > B.
If A is greater than B, OUT is true, otherwise it is false.

GREATER_OR_EQUAL

Click box to see full description


Returns the logical value for a test of A >= B.
If A is greater than or equal to B, OUT is true, otherwise it is false.

IS_EVEN

Click box to see full description


This function is true if A is even, otherwise false is returned.

IS_ODD

Click box to see full description


This function is true if A is odd, otherwise false is returned.

WINDOW

Click box to see full description


Returns a boolean for a test of X > MAX or X < MIN.
If X is between MIN and MAX, miTURE is returned, otherwise miFALSE. 

© Copyright 1996,1998 Cinema Graphics Inc. All Rights reserved.