Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Int64 FloorToInt64(Double X) | Round towards negative infinity. |
| 2 | Int64 FloorToInt64f(Single X) |
Overload 1: Int64 FloorToInt64(Double X)
Round towards negative infinity.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double | scalar |
Returns: Int64 - the biggest integer rounded real less than or equal to X. Floor(-2.8) = -3 Floor(2.8) = 2 Floor(-1.0) = -1
See Also: Math387.Ceil
Overload 2: Int64 FloorToInt64f(Single X)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single | scalar |
Returns: Int64