 | MathUtilsCeilToInt Method |
Converts the specified float value to the ceil value as an integer.
The smallest integer bigger than or equal the specified value is returned.
Namespace: Slash.Math.UtilsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static int CeilToInt(
float value
)
Public Shared Function CeilToInt (
value As Single
) As Integer
public:
static int CeilToInt(
float value
)
static member CeilToInt :
value : float32 -> int
Parameters
- value
- Type: SystemSingle
Value to convert.
Return Value
Type:
Int32Ceil integer for the specified float value.
See Also