Searched defs:sink (Results 1 - 7 of 7) sorted by relevance
/inkscape/src/2geom/ |
H A D | svg-path-parser.h | 43 #include <2geom/path-sink.h> 64 SVGPathParser(PathSink &sink); 70 * to the path sink is not affected - you need to clear it yourself. */ 74 * The path sink is flushed and the internal state is reset after this call. 96 * to finalize parsing, flush the path sink and reset internal state. 143 /** @brief Feed SVG path data to the specified sink 145 void parse_svg_path(char const *str, PathSink &sink); 146 /** @brief Feed SVG path data to the specified sink 148 inline void parse_svg_path(std::string const &str, PathSink &sink) { argument 149 parse_svg_path(str.c_str(), sink); [all...] |
H A D | curve.cpp | 40 #include <2geom/path-sink.h> 166 void Curve::feed(PathSink &sink, bool moveto_initial) const argument 171 sink.moveTo(initialPoint()); 173 sink.curveTo(pts[0], pts[1], pts[2]);
|
H A D | bezier-curve.cpp | 35 #include <2geom/path-sink.h> 225 void BezierCurve::feed(PathSink &sink, bool moveto_initial) const argument 228 Curve::feed(sink, moveto_initial); 234 sink.moveTo(ip); 238 sink.lineTo(controlPoint(1)); 241 sink.quadTo(controlPoint(1), controlPoint(2)); 244 sink.curveTo(controlPoint(1), controlPoint(2), controlPoint(3)); 247 // TODO: add a path sink method that accepts a vector of control points 335 void BezierCurveN<1>::feed(PathSink &sink, bool moveto_initial) const argument 338 sink 344 feed(PathSink &sink, bool moveto_initial) const argument 353 feed(PathSink &sink, bool moveto_initial) const argument [all...] |
H A D | bezier-curve.h | 171 virtual void feed(PathSink &sink, bool) const; 285 virtual void feed(PathSink &sink, bool moveto_initial) const { argument 287 BezierCurve::feed(sink, moveto_initial); 323 template <> void BezierCurveN<1>::feed(PathSink &sink, bool moveto_initial) const; 324 template <> void BezierCurveN<2>::feed(PathSink &sink, bool moveto_initial) const; 325 template <> void BezierCurveN<3>::feed(PathSink &sink, bool moveto_initial) const;
|
H A D | svg-path-parser.cpp | 1081 SVGPathParser::SVGPathParser(PathSink &sink) argument 1083 , _sink(sink) 1572 void parse_svg_path(char const *str, PathSink &sink) argument 1574 SVGPathParser parser(sink); 1578 void parse_svg_path_file(FILE *fi, PathSink &sink) argument 1583 SVGPathParser parser(sink);
|
H A D | elliptical-arc.cpp | 40 #include <2geom/path-sink.h> 816 void EllipticalArc::feed(PathSink &sink, bool moveto_initial) const argument 819 sink.moveTo(_initial_point); 821 sink.arcTo(ray(X), ray(Y), rotationAngle(), _large_arc, sweep(), _final_point);
|
/inkscape/src/ui/tool/ |
H A D | node.cpp | 964 void Node::sink() function in class:Inkscape::UI::Node
|
Completed in 29 milliseconds