Modulo
Computes the modulo of integer inputs (A % B), which is the remainder of A / B If B is zero, the result is zero. If A and B are both non-negative the result is non-negative, otherwise the sign of the result is undefined.
Installation
To use this Node, you must enable omni.graph.nodes
in the Extension Manager.
Inputs
Name |
Type |
Description |
Default |
---|---|---|---|
A (a) |
|
The dividend of (A % B) |
|
B (b) |
|
The divisor of (A % B) |
Outputs
Name |
Type |
Description |
Default |
---|---|---|---|
Result (result) |
|
Modulo (A % B), the remainder of A / B |