a
(float, default: 0): The first number to compare.b
(float, default: 0): The second number to compare.tolerance
(float, default: 0): The maximum allowed difference between a
and b
for them to be considered equal.result
(boolean): True if a
and b
are equal within the specified tolerance, false otherwise.a
input.b
input.tolerance
input. If left unconnected, the tolerance defaults to 0.result
output will emit true if a
and b
are equal within the tolerance, and false otherwise.a
input.b
input.tolerance
input to a small value, like 0.00001.result
output to the input of a Filter node to conditionally pass data through based on the equality check.