Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void Bit24ToFloat(Int32 n, IntPtr Src, ref Double[] Dst, Int32 DstIndex) | Convert 24 bit signed integer to double precision value. |
| 2 | void Bit24ToFloat(Int32 n, IntPtr Src, ref Single[] Dst, Int32 DstIndex) | Convert 24 bit signed integer to single precision value. |
Overload 1: void Bit24ToFloat(Int32 n, IntPtr Src, ref Double[] Dst, Int32 DstIndex)
Convert 24 bit signed integer to double precision value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | n | Int32 | |
| 2 | Src | IntPtr | |
| 3 | Dst | Double[] (ref) | |
| 4 | DstIndex | Int32 | destination start index |
Result: stored in self (calling object)
Remarks:
Convert 24 bit signed integer to double precision value. The n parameter defines the number of elements to convert. Src points to a byte array and Dst is an array of double precision elements. DstIndex defines where in the Dst array will the elements be placed.
See Also: MtxVecUtils.FloatTo24Bit
Overload 2: void Bit24ToFloat(Int32 n, IntPtr Src, ref Single[] Dst, Int32 DstIndex)
Convert 24 bit signed integer to single precision value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | n | Int32 | |
| 2 | Src | IntPtr | |
| 3 | Dst | Single[] (ref) | |
| 4 | DstIndex | Int32 | destination start index |
Result: stored in self (calling object)
Remarks:
Convert 24 bit signed integer to single precision value. The n parameter defines the number of elements to convert. Src points to a byte array and Dst is an array of single precision elements. DstIndex defines where in the Dst array will the elements be placed.
See Also: MtxVecUtils.FloatTo24Bit