Cross Reference:
xref
: /
inkscape
/
src
/
live_effects
/
bezctx.h
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
bezctx.h revision 8cdcff92f16934fca7a867cbaf07fa543ef41471
#
ifndef
INKSCAPE_SPIRO_bezctx_H
#
define
INKSCAPE_SPIRO_bezctx_H
#
include
"
bezctx_intf.h
"
class
_bezctx
{
public
:
void
(*
moveto
)(
bezctx
*
bc
,
double
x,
double
y,
int
is_open
);
void
(*
lineto
)(
bezctx
*
bc
,
double
x,
double
y);
void
(*
quadto
)(
bezctx
*
bc
,
double
x1
,
double
y1
,
double
x2
,
double
y2
);
void
(*
curveto
)(
bezctx
*
bc
,
double
x1
,
double
y1
,
double
x2
,
double
y2
,
double
x3
,
double
y3
);
};
#
endif