X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fdisplay%2Fcurve.h;h=79a385b09f2a9e5eee526e8e6a269b10077d90b8;hb=90a3966dd44e306d23febc15ebd65cde07d7a4dd;hp=1b09c8c6e5e6f4d5146d1e0ec8ea5d796e22de0f;hpb=99fae8b11f74e464ad0f55a7bfcc02933c4c1747;p=inkscape.git diff --git a/src/display/curve.h b/src/display/curve.h index 1b09c8c6e..79a385b09 100644 --- a/src/display/curve.h +++ b/src/display/curve.h @@ -59,6 +59,8 @@ public: void moveto(gdouble x, gdouble y); void lineto(Geom::Point const &p); void lineto(gdouble x, gdouble y); + void quadto(Geom::Point const &p1, Geom::Point const &p2); + void quadto(gdouble x1, gdouble y1, gdouble x2, gdouble y2); void curveto(Geom::Point const &p0, Geom::Point const &p1, Geom::Point const &p2); void curveto(gdouble x0, gdouble y0, gdouble x1, gdouble y1, gdouble x2, gdouble y2); void closepath();