Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void Bit24ToFloat(int n, intPtr Src, DewArray<float> &Dst, int DstIndex = 0); | Convert 24 bit signed integer to single precision value. |
| 2 | void Bit24ToFloat(int n, intPtr Src, DewArray<double> &Dst, int DstIndex = 0); | Convert 24 bit signed integer to double precision value. |
Overload 1: void Bit24ToFloat(int n, intPtr Src, DewArray<float> &Dst, int DstIndex = 0);
Convert 24 bit signed integer to single precision value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | n | int | |
| 2 | Src | intPtr | |
| 3 | Dst | DewArray<float> & | |
| 4 | DstIndex = 0 | int |
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
Declared in Dew::Math::Units::MtxVecUtils · Dew.Math/Units.MtxVecUtils.h · Cross-compiler
Overload 2: void Bit24ToFloat(int n, intPtr Src, DewArray<double> &Dst, int DstIndex = 0);
Convert 24 bit signed integer to double precision value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | n | int | |
| 2 | Src | intPtr | |
| 3 | Dst | DewArray<double> & | |
| 4 | DstIndex = 0 | int |
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
Declared in Dew::Math::Units::MtxVecUtils · Dew.Math/Units.MtxVecUtils.h · Cross-compiler