Home
last modified time | relevance | path

Searched refs:fixatan2 (Results 1 – 13 of 13) sorted by relevance

/dports/devel/allegro/allegro-4.4.3.1/include/allegro/
H A Dfmaths.h32 AL_FUNC(fixed, fixatan2, (fixed y, fixed x));
/dports/games/scummvm/scummvm-2.5.1/engines/ags/lib/allegro/
H A Dfmaths.h33 AL_FUNC(fixed, fixatan2, (fixed y, fixed x));
H A Dmath.cpp246 fixed fixatan2(fixed y, fixed x) { in fixatan2() function
H A Dfmaths.cpp70 fixed fixatan2(fixed y, fixed x) { in fixatan2() function
/dports/graphics/aseprite/aseprite-1.2.9/src/fixmath/
H A Dfixmath.cpp251 fixed fixatan2(fixed y, fixed x) in fixatan2() function
H A Dfixmath.h26 fixed fixatan2(fixed y, fixed x);
/dports/devel/allegro/allegro-4.4.3.1/src/
H A Dmath.c250 fixed fixatan2(fixed y, fixed x) in fixatan2() function
/dports/devel/allegro/allegro-4.4.3.1/examples/
H A Dexspline.c104 nodes[i].tangent = fixatan2(itofix(nodes[i+1].y - nodes[i-1].y), in calc_tangents()
H A Dexlights.c115 dir = fixtoi(fixatan2(itofix(dy), itofix(dx)) + itofix(128)); in create_light_graphic()
/dports/devel/allegro/allegro-4.4.3.1/docs/src/
H A Dapi._tx191 fatan2 (fixatan2).
H A Dallegro._tx12109 @@fixed @fixatan2(fixed y, fixed x);
12122 result = fixatan2(itofix(1), 0);
12124 result = fixatan2(itofix(-1), itofix(-2));
12126 result = fixatan2(0, 0);
15806 @xref draw_trans_sprite, fixatan2, fixsqrt, fixtoi, getb_depth
16089 @xref clear_keybuf, clear_to_color, desktop_palette, fixatan2, fixcos
/dports/devel/allegro/allegro-4.4.3.1/include/allegro/inline/
H A Dfix.inl135 inline fix atan2(fix x, fix y) { fix t; t.v = fixatan2(x.v, y.v); return t; }
/dports/devel/allegro/allegro-4.4.3.1/tests/
H A Dtest.c1502 z += fixatan2(x, y); in misc()