1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
.TH "ALLEGRO_LINE_CAP" "3" "" "Allegro reference manual" ""
.SH NAME
.PP
ALLEGRO_LINE_CAP \- Allegro 5 API
.SH SYNOPSIS
.IP
.nf
\f[C]
#include\ <allegro5/allegro_primitives.h>
typedef\ enum\ ALLEGRO_LINE_CAP
\f[]
.fi
.SH DESCRIPTION
.IP \[bu] 2
ALLEGRO_LINE_CAP_NONE
.IP \[bu] 2
ALLEGRO_LINE_CAP_SQUARE
.IP \[bu] 2
ALLEGRO_LINE_CAP_ROUND
.IP \[bu] 2
ALLEGRO_LINE_CAP_TRIANGLE
.IP \[bu] 2
ALLEGRO_LINE_CAP_CLOSED
.PP
[IMAGE: \f[I]ALLEGRO_LINE_CAP styles\f[] (images/LINE_CAP.png)]
.PP
See the picture for the difference.
.PP
ALLEGRO_LINE_CAP_CLOSED is different from the others \- it causes the
polygon to have no caps.
(And the ALLEGRO_LINE_JOIN(3) style will determine how the vertex
looks.)
.SH SINCE
.PP
5.1.0
.SH SEE ALSO
.PP
al_draw_polygon(3)
|