.\" This manpage has been automatically generated by docbook2man
.\" from a DocBook document. This tool can be found at:
.\"
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng .
.TH "PLOT_ADDQUADRATICCURVESEGMENTONE" "3" "26 May 2003" "" ""
.SH NAME
plot_addquadraticcurvesegmentone \- add a Bezier with one control point to the polygon we are drawing
.SH SYNOPSIS
.nf
#include<libmplot.h>
void plot_addcubiccurvesegmentone (plot_state * state,
unsigned int inx1, unsigned int iny1,
unsigned int inx2, unsigned int iny2);
.fi
.SH "DESCRIPTION"
.PP
This function adds a Bezier curve between the current pen location and (inx1, iny1) to the current polygon. This curve will have two control points: the current pen location and (inx3, iny3).
.SH "RETURNS"
.PP
Nothing
.SH "EXAMPLE"
.nf
#include<libmplot.h>
plot_state *graph;
if((graph = plot_newplot(400, 300)) == NULL){
... error ...
}
plot_setlinestart(graph, 20, 20);
plot_addquadraticcurvesegmentone(graph, 20, 120, 40, 40);
plot_strokeline(graph);
plot_closeline(graph);
.fi
.SH "VERSION"
.PP
This documentation was generated for \fBlibplot\fR 0.3 by \fBautodocbook\fR (http://www.stillhq.com).
.SH "AUTHOR"
.PP
\fBlibplot\fR is under development by Michael Still (mikal@stillhq.com). All code is Copyright Michael Still 2002, and is released under the GNU GPL. Code submissions are welcomed. Contact Michael at the address above if you have something you would like to contribute.
.SH "BUGS"
.PP
There are no known bugs in \fBlibplot\fR. If you find one, please contact mikal@stillhq.com and let me know.