Round the input to the nearest integer that is greater than or equal to the input.
Clamp Range
Outputs the clamped value of its inputs using the provided minimum and maximum.
Floor
Outputs the floor value of its input.
Rounds the input to the nearest integer that is lower than or equal to the input.
Round
Output the rounding of its input.
Rounds the input to the nearest integer. A value of 0.5 will round to 1.
SmoothStep
Outputs the smooth step function of the input value.
The function returns
0 if the input is less than or equal to the left edge,
1 if the input is greater than or equal to the right edge, and interpolates using a Hermite polynomial, between 0 and 1 otherwise.
The gradient of the smoothstep function is zero at both edges. The right edge value will be clamped to the left edge if it is lower than the left edge.