Code

Merging from trunk
[inkscape.git] / src / display / curve.h
index 1b09c8c6e5e6f4d5146d1e0ec8ea5d796e22de0f..79a385b09f2a9e5eee526e8e6a269b10077d90b8 100644 (file)
@@ -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();