Searched refs:quadto (Results 1 - 4 of 4) sorted by relevance
/inkscape/src/live_effects/ |
H A D | spiro-converters.h | 16 virtual void quadto(double x1, double y1, double x2, double y2, bool close_last) = 0; 32 virtual void quadto(double x1, double y1, double x2, double y2, bool close_last); 52 virtual void quadto(double x1, double y1, double x2, double y2, bool close_last);
|
H A D | spiro-converters.cpp | 47 ConverterSPCurve::quadto(double xm, double ym, double x3, double y3, bool close_last)
function in class:Spiro::ConverterSPCurve 50 _curve.quadto(xm, ym, x3, y3);
55 SPIRO_G_MESSAGE("Spiro: quadto not finite");
101 ConverterPath::quadto(double xm, double ym, double x3, double y3, bool close_last)
function in class:Spiro::ConverterPath 107 SPIRO_G_MESSAGE("spiro quadto not finite");
|
/inkscape/src/display/ |
H A D | curve.h | 62 void quadto(Geom::Point const &p1, Geom::Point const &p2); 63 void quadto(double x1, double y1, double x2, double y2);
|
H A D | curve.cpp | 235 SPCurve::quadto(Geom::Point const &p1, Geom::Point const &p2) function in class:SPCurve 237 if (_pathv.empty()) g_message("SPCurve::quadto - path is empty!"); 241 * Calls SPCurve::quadto( Geom::Point(x1,y1), Geom::Point(x2,y2) ) 245 SPCurve::quadto(double x1, double y1, double x2, double y2) function in class:SPCurve 247 quadto( Geom::Point(x1,y1), Geom::Point(x2,y2) );
|
Completed in 25 milliseconds