Important: The information in this document is obsolete and should not be used for new development.
FixedToFract
You can use theFixedToFractmacro to convert a fixed number to afractnumber.
#define FixedToFract(a) ((fract) (a) << 14)
a- A
Fixednumber to be converted to afractnumber, -2 <= a <2.- macro result
- A
fract number having the same value as the fixed number.