Rounds `s` upward (towards positive infinity).
This is the same as
Ceil(Single), but returns an `int`.
Namespace:
Godot
Assembly:
GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax public static int CeilToInt(
float s
)
Parameters
- s
- Type: SystemSingle
The number to ceil.
Return Value
Type:
Int32The smallest whole number that is not less than `s`.
See Also