logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

quad3d, quad3d_f - Draws a 3d quad onto the specified bitmap. Allegro game programming library.

Description

       Draw  3d  quads, using either fixed or floating point vertex structures.  These are equivalent to calling
       polygon3d(bmp, type, tex, 4, v[]) or polygon3d_f(bmp, type, tex, 4, v[]).

       Read the beginning of chapter "Polygon rendering" for a list of rendering types you  can  use  with  this
       function.

Name

       quad3d, quad3d_f - Draws a 3d quad onto the specified bitmap. Allegro game programming library.

See Also

polygon3d(3alleg4), triangle3d(3alleg4), ex3d(3alleg4)

Allegro                                           version 4.4.3                                  quad3d(3alleg4)

Synopsis

#include<allegro.h>voidquad3d(BITMAP*bmp,inttype,BITMAP*tex,V3D*v1,*v2,*v3,*v4);voidquad3d_f(BITMAP*bmp,inttype,BITMAP*tex,V3D_f*v1,*v2,*v3,*v4);

See Also