XOR

THE BOX'S MAIN HELP:
Returns the logical XOR of the inputs.
A  B  OUT
---------
0  0 | 0
0  1 | 1
1  0 | 1
1  1 | 0

A (input):
Value to be xor'ed. This may be a boolean, integer, or float.

B (vinput):
Value to be xor'ed. This may be a boolean, integer, or float.

OUT (output):
OUT is true if either A or B are true; otherwise false.
>	 A     B    OUT
>       ---   ---   ---
>        0     0     0
>        0     1     1
>        1     0     1
>        1     1     0

<-- BACK TO Logic

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