Integer Math Node¶
The Integer Math node performs math operations.
Входы (inputs)¶
- Значение (value)
Standard integer value input. Depending on the operation there will be more than one input.
Свойства (properties)¶
- Операция (operation)
Математическая операция, применяемая к вводным значениям:
- Функции (functions)
- Добавить (Сложить) (add):
Сумма двух значений.
- Вычесть (subtract):
Разность двух значений.
- Перемножить (multiply):
Произведение двух значений.
- Разделить (divide):
Деление первого значения на второе значение.
- Умножить и сложить (multiply add):
Сумма произведения двух значений со слагаемым.
- Абсолютно / Модуль (absolute):
Вводное значение читается без учёта его знака. Это превращает отрицательные значения в положительные.
- Negate:
Changes the sign of the input value.
- Мощность / Возвести в степень (power):
Возведение базы в степень экспоненты.
- Сравнение (comparison)
- Минимум (minimum):
Выводит наименьшее из вводных значений.
- Максимум (maximum):
Выводит наибольшее из двух вводных значений.
- Знак (sign):
Extracts the sign of the input value. All positive numbers will output 1. All negative numbers will output -1. And 0 will output 0.
- Скругление (rounding)
- Divide Round:
Divide the values and round the result toward zero.
- Divide Floor:
Divide the values and floor the result down to the nearest integer.
- Divide Ceiling:
Divide the values and ceil the result up to the nearest integer .
- Остаток по модулю (floored modulo):
Возвращает положительный остаток операции деления.
- Остаток деления (modulo):
Выводит остаток после деления первого значения на второе значение.
- Greatest Common Divisor:
The largest positive integer that divides into each of the values.
- Least Common Multiple:
The smallest positive integer that is divisible by both values.
Вывод (output)¶
- Значение (value)
Стандартный вывод целочисленного значения.