fixhypot
Fixed point hypotenuse. Allegro game programming library.
- Provided by: allegro4-doc (Version: 2:4.4.3.1-4.1build3)
- Source: allegro4.4
- Report a bug
Fixed point hypotenuse. Allegro game programming library.
#include <allegro.h>
fixed fixhypot(fixed x, fixed y);
Fixed point hypotenuse (returns the square root of `x*x + y*y'). This should be better than calculating the formula yourself manually, since the error is much smaller.