radtofix_r
Constant to convert radians to fixed point angles. Allegro game programming library.
- Provided by: allegro4-doc (Version: 2:4.4.3.1-4.1build3)
- Source: allegro4.4
- Report a bug
Constant to convert radians to fixed point angles. Allegro game programming library.
#include <allegro.h>
extern const fixed radtofix_r;
This constant gives a ratio which can be used to convert a fixed point number in radians to a fixed point number in binary angle format. Example:
fixed rad_angle, binary_angle; ... binary_angle = fixmul(rad_angle, radtofix_r);
fixmul(3alleg4), fixtorad_r(3alleg4)