Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Int64 TruncAndFracToInt64(Double X, ref Double FractionalPart) | |
| 2 | Int64 TruncAndFracToInt64f(Single X, ref Single FractionalPart) | Splits the floating point number to integer and fractional parts. |
Overload 1: Int64 TruncAndFracToInt64(Double X, ref Double FractionalPart)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double | scalar |
| 2 | FractionalPart | Double (ref) | output |
Returns: Int64
Overload 2: Int64 TruncAndFracToInt64f(Single X, ref Single FractionalPart)
Splits the floating point number to integer and fractional parts.
| # | Name | Description |
|---|---|---|
| 1 | X | Defines real number to be split into integer and fractional part. |
| 2 | FractionalPart | Returns the fractional part of X. |
Returns: Int64 - the integer part of X.
Remarks:
Splits the floating point number to integer and fractional parts.