Index

Package: Allegro.Fixed_Point_Math

Description

package Allegro.Fixed_Point_Math is

Types

Fixed

type Fixed is new Integer;

References:

allegro-fixed_point_math.ads:7:10 (declaration)
allegro-drawing.ads:38:28 (reference)
allegro-drawing.ads:60:32 (reference)
allegro-fixed_point_math.ads:11:43 (reference)
allegro-fixed_point_math.ads:13:46 (reference)
allegro-fixed_point_math.ads:15:26 (reference)
allegro-fixed_point_math.ads:17:26 (reference)
allegro-fixed_point_math.ads:19:27 (reference)
allegro-fixed_point_math.ads:21:28 (reference)
allegro-fixed_point_math.ads:23:29 (reference)
allegro-fixed_point_math.ads:23:44 (reference)
allegro-fixed_point_math.ads:25:29 (reference)
allegro-fixed_point_math.ads:25:44 (reference)
allegro-fixed_point_math.ads:27:29 (reference)
allegro-fixed_point_math.ads:27:44 (reference)
allegro-fixed_point_math.ads:29:29 (reference)
allegro-fixed_point_math.ads:29:44 (reference)
allegro-fixed_point_math.ads:31:26 (reference)
allegro-fixed_point_math.ads:31:41 (reference)
allegro-fixed_point_math.ads:33:26 (reference)
allegro-fixed_point_math.ads:33:41 (reference)
allegro-fixed_point_math.ads:35:26 (reference)
allegro-fixed_point_math.ads:35:41 (reference)
allegro-fixed_point_math.ads:37:27 (reference)
allegro-fixed_point_math.ads:37:42 (reference)
allegro-fixed_point_math.ads:39:27 (reference)
allegro-fixed_point_math.ads:39:42 (reference)
allegro-fixed_point_math.ads:41:27 (reference)
allegro-fixed_point_math.ads:41:42 (reference)
allegro-fixed_point_math.ads:43:31 (reference)
allegro-fixed_point_math.ads:43:46 (reference)
allegro-fixed_point_math.ads:45:27 (reference)
allegro-fixed_point_math.ads:45:42 (reference)
allegro-fixed_point_math.ads:47:31 (reference)
allegro-fixed_point_math.ads:47:46 (reference)
allegro-fixed_point_math.ads:49:32 (reference)
allegro-fixed_point_math.ads:51:32 (reference)
allegro-fixed_point_math.ads:55:45 (reference)
allegro-fixed_point_math.ads:57:48 (reference)
allegro-fixed_point_math.ads:59:30 (reference)
allegro-fixed_point_math.ads:61:33 (reference)
allegro-fixed_point_math.ads:63:24 (reference)
allegro-fixed_point_math.ads:65:25 (reference)
allegro-fixed_point_math.ads:68:26 (reference)
allegro-fixed_point_math.ads:68:41 (reference)
allegro-fixed_point_math.ads:71:26 (reference)
allegro-fixed_point_math.ads:71:41 (reference)
allegro-fixed_point_math.ads:74:26 (reference)
allegro-fixed_point_math.ads:74:41 (reference)
allegro-fixed_point_math.ads:77:26 (reference)
allegro-fixed_point_math.ads:77:41 (reference)
allegro-fixed_point_math.ads:79:23 (reference)
allegro-fixed_point_math.ads:79:38 (reference)
allegro-fixed_point_math.ads:81:23 (reference)
allegro-fixed_point_math.ads:81:38 (reference)
allegro-fixed_point_math.ads:83:23 (reference)
allegro-fixed_point_math.ads:83:38 (reference)
allegro-fixed_point_math.ads:85:24 (reference)
allegro-fixed_point_math.ads:85:39 (reference)
allegro-fixed_point_math.ads:87:24 (reference)
allegro-fixed_point_math.ads:87:39 (reference)
allegro-fixed_point_math.ads:89:24 (reference)
allegro-fixed_point_math.ads:89:39 (reference)
allegro-fixed_point_math.ads:91:28 (reference)
allegro-fixed_point_math.ads:91:43 (reference)
allegro-fixed_point_math.ads:93:24 (reference)
allegro-fixed_point_math.ads:93:39 (reference)
allegro-fixed_point_math.ads:95:28 (reference)
allegro-fixed_point_math.ads:95:43 (reference)
allegro-sprites.ads:71:45 (reference)
allegro-sprites.ads:78:52 (reference)
allegro-sprites.ads:84:38 (reference)
allegro-sprites.ads:90:45 (reference)
allegro-sprites.ads:96:46 (reference)
allegro-sprites.ads:102:53 (reference)
allegro-sprites.ads:107:39 (reference)
allegro-sprites.ads:112:46 (reference)

Subprograms & Entries

ftofix

function ftofix
( x: Long_Float )
return Fixed;

fixtof

function fixtof
( x: Fixed )
return Long_Float;

fixceil

function fixceil
( x: Fixed )
return Integer;

fixfloor

function fixfloor
( x: Fixed )
return Integer;

fixtorad_r

function fixtorad_r return Fixed;

radtofix_r

function radtofix_r return Fixed;

To_Fixed

function To_Fixed
( x: Integer )
return Fixed renames itofix;

References:

allegro-fixed_point_math.ads:55:14 (declaration)

To_Fixed

function To_Fixed
( x: Long_Float )
return Fixed renames ftofix;

References:

allegro-fixed_point_math.ads:57:14 (declaration)

To_Integer

function To_Integer
( x: Fixed )
return Integer renames fixtoi;

References:

allegro-fixed_point_math.ads:59:14 (declaration)

To_Long_Float

function To_Long_Float
( x: Fixed )
return Long_Float renames fixtof;

References:

allegro-fixed_point_math.ads:61:14 (declaration)

Ceil

function Ceil
( x: Fixed )
return Integer renames fixceil;

References:

allegro-fixed_point_math.ads:63:14 (declaration)

Floor

function Floor
( x: Fixed )
return Integer renames fixfloor;

References:

allegro-fixed_point_math.ads:65:14 (declaration)

*

function "*"
( x, y: Fixed )
return Fixed renames fixmul;

References:

allegro-fixed_point_math.ads:68:14 (declaration)

/

function "/"
( x, y: Fixed )
return Fixed renames fixdiv;

References:

allegro-fixed_point_math.ads:71:14 (declaration)

+

function "+"
( x, y: Fixed )
return Fixed renames fixadd;

References:

allegro-fixed_point_math.ads:74:14 (declaration)

-

function "-"
( x, y: Fixed )
return Fixed renames fixsub;

References:

allegro-fixed_point_math.ads:77:14 (declaration)

Sin

function Sin
( x: Fixed )
return Fixed renames fixsin;

References:

allegro-fixed_point_math.ads:79:14 (declaration)

Cos

function Cos
( x: Fixed )
return Fixed renames fixcos;

References:

allegro-fixed_point_math.ads:81:14 (declaration)

Tan

function Tan
( x: Fixed )
return Fixed renames fixtan;

References:

allegro-fixed_point_math.ads:83:14 (declaration)

Asin

function Asin
( x: Fixed )
return Fixed renames fixasin;

References:

allegro-fixed_point_math.ads:85:14 (declaration)

Acos

function Acos
( x: Fixed )
return Fixed renames fixacos;

References:

allegro-fixed_point_math.ads:87:14 (declaration)

Atan

function Atan
( x: Fixed )
return Fixed renames fixatan;

References:

allegro-fixed_point_math.ads:89:14 (declaration)

Atan2

function Atan2
( y, x: Fixed )
return Fixed renames fixatan2;

References:

allegro-fixed_point_math.ads:91:14 (declaration)

Sqrt

function Sqrt
( x: Fixed )
return Fixed renames fixsqrt;

References:

allegro-fixed_point_math.ads:93:14 (declaration)

Hypot

function Hypot
( x, y: Fixed )
return Fixed renames fixhypot;

References:

allegro-fixed_point_math.ads:95:14 (declaration)