Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
fixatan(3)			 Allegro manual 		      fixatan(3)

NAME
     fixatan  -  Fixed point inverse tangent lookup table. Allegro game program-
     ming library.

SYNOPSIS
     #include <allegro.h>

     fixed fixatan(fixed x);

DESCRIPTION
     This function finds the inverse tangent of a value using  a  lookup  table.
     The  input  value	must be a fixed point radian. The inverse tangent is the
     value whose tangent is `x'. Example:

	fixed result;

	/* Sets `result' to binary angle 13. */
	result = fixatan(ftofix(0.326));

RETURN VALUE
     Returns the inverse tangent of a fixed point value,  measured  as	a  fixed
     point binary format angle.

SEE ALSO
Allegro 			  version 4.4.3 		      fixatan(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=fixatan&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help