Function Name:
Ceil
Purpose:
This function returns the smallest double value that is greater than or equal to the input value and is equal to a mathematical integer. This function is useful for rounding up to the nearest whole number. Special cases:
- If the argument value is already equal to a mathematical integer, then the result is the same as the argument.
- If the argument is NaN or an infinity or positive zero or negative zero, then the result is the same as the argument.
- If the argument value is less than zero but greater than -1.0, then the result is negative zero.
The function should be connected to a node that passes a number value (integer/double) into it.
Configuration:
1. Enter a Display label for the node. This will be helpful with identifying the node when viewing your Entity Pipeline.
2. Enter a Description that will explain what the function is configured to do.
3. Add the input Value that needs to be processed by the function. This attribute is only available while configuring this function in an Entity Pipeline.
Examples:
- If the Input value is 1, the function with Output the value, 1.
- If the Input value is 1.4, the function will Output the value, 2.