Math387.CeilToInt64 / CeilToInt64f Method

Overload List

#SignatureDescription
1Int64 CeilToInt64(Double X)Round towards positive infinity.
2Int64 CeilToInt64f(Single X)

Overload 1: Int64 CeilToInt64(Double X)

Round towards positive infinity.

#NameTypeDescription
1XDoublescalar

Returns: Int64 - the smallest integer rounded real greater than or equal to X. Ceil(-2.8) = -2 Ceil(2.8) = 3 Ceil(-1.0) = -1

See Also: Math387.Floor

Overload 2: Int64 CeilToInt64f(Single X)

#NameTypeDescription
1XSinglescalar

Returns: Int64