Equal Node
Compares if two numbers a
and b
are within eps
of each other. Outputs 1.0
if they're equal, 0.0
if they're not.
Inputs:
a
,b
: The numbers to compareeps
: The maximum distance betweena
andb
for them to be considered equal.
Outputs:
c
: The result of the comparison.