blob: f525db7d0a680d06311e83310af882f3c01d68b2 (
plain) (
blame)
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
40
41
42
|
.TH RTGRPBLIB_DRAW_LINEAR_BEZIER 3 LIBRIFUNKTIONSTECKENSNITTSGLYFRASTERISERINGSPROGRAMBIBLIOTEKET
.SH NAME
rtgrpblib_draw_linear_bezier - Draw a line segment
.SH DESCRIPTION
.LP
.nf
#include <librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket.h>
void rtgrpblib_draw_linear_bezier(RTGRPBLIB_RASTER *\fIraster\fP,
double \fIx1\fP, double \fIy1\fP,
double \fIx2\fP, double \fIy2\fP);
.fi
.PP
Link with
.IR "-lrifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket -lm" .
.SH DESCRIPTION
The
.BR rtgrpblib_draw_linear_bezier ()
function draws onto
.I raster
a line segment, as part of a contour, from
.RI ( x1 ,
.IR y1 )
to
.RI ( x2 ,
.IR y2 ).
.SH RETURN VALUES
None.
.SH ERRORS
None.
.SH SEE ALSO
.BR librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket (7),
.BR rtgrpblib_create_raster (3),
.BR rtgrpblib_fill_shapes (3),
.BR rtgrpblib_draw_quadratic_bezier (3),
.BR rtgrpblib_draw_cubic_bezier (3),
.BR rtgrpblib_draw_circular_arc (3)
|