.\" Generated by the Allegro makedoc utility .TH fixtof 3alleg4 "version 4.4.2" "Allegro" "Allegro manual" .SH NAME fixtof \- Converts a fixed point to floating point. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B double fixtof(fixed x); .SH DESCRIPTION Converts fixed point to floating point. Example: .nf float result; /* This will put 33.33333 into `result'. */ result = fixtof(itofix(100) / 3); /* This will put 16.66666 into `result'. */ result = fixtof(itofix(100) / 6); .fi .SH SEE ALSO .BR ftofix (3alleg4), .BR itofix (3alleg4), .BR fixtoi (3alleg4), .BR exfixed (3alleg4), .BR exspline (3alleg4), .BR exstars (3alleg4)