Last updated on
Jul 13, 2023
Binary operation on int
In: Substance model graph/Operation
Simple
Description
The Binary operation on int node outputs the result of the operation set by the user on the input Integer x and y values.
Parameters
- Operation Enum
The operation applied to the input values:- Addition
x + y
- Subtraction
x – y
- Multiplication
x * y
- Division
x / y
- Minimum
x
ifx - y <= 0
ORy
ifx – y > 0
- Maximum
x
ifx - y >= 0
ORy
ifx - y < 0
- Power
x ^ y
- Modulo
x % y
- Addition
- Value 1 Integer
The first operandx
of the operation - Value 2 Integer
The second operandy
of the operation
Example Images