fixtof.3alleg

Langue: en

Version: version 4.2.2 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

fixtof - Converts a fixed point to floating point. Allegro game programming library.

SYNOPSIS

#include <allegro.h>

double fixtof(fixed x);

DESCRIPTION

Converts fixed point to floating point. Example:
    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);
 

SEE ALSO

ftofix(3alleg), itofix(3alleg), fixtoi(3alleg), exfixed(3alleg), exspline(3alleg), exstars(3alleg)