/inkscape/src/2geom/ |
H A D | path-sink.cpp | 39 void PathSink::feed(Curve const &c, bool moveto_initial) function in class:Geom::PathSink 41 c.feed(*this, moveto_initial); 44 void PathSink::feed(Path const &path) { function in class:Geom::PathSink 51 iter->feed(*this, false); 59 void PathSink::feed(PathVector const &pv) { function in class:Geom::PathSink 61 feed(*i); 65 void PathSink::feed(Rect const &r) { function in class:Geom::PathSink 73 void PathSink::feed(Circle const &e) { function in class:Geom::PathSink 85 void PathSink::feed(Ellipse const &e) { function in class:Geom::PathSink
|
H A D | curve.cpp | 166 void Curve::feed(PathSink &sink, bool moveto_initial) const function in class:Geom::Curve
|
H A D | path-sink.h | 52 * for segments in a derived class and call feed(). 89 virtual void feed(Curve const &c, bool moveto_initial = true); 93 * NOTE: if you override only some of the feed() functions, 96 using PathSink::feed; 99 virtual void feed(Path const &p); 101 * Calls feed() on each path in the vector. You can override this function. */ 102 virtual void feed(PathVector const &v); 104 virtual void feed(Rect const &); 106 virtual void feed(Circle const &e); 108 virtual void feed(Ellips 201 void feed(Path const &other) function in class:Geom::PathIteratorSink [all...] |
H A D | bezier-curve.cpp | 225 void BezierCurve::feed(PathSink &sink, bool moveto_initial) const function in class:Geom::BezierCurve 228 Curve::feed(sink, moveto_initial); 335 void BezierCurveN<1>::feed(PathSink &sink, bool moveto_initial) const function in class:Geom::BezierCurveN 344 void BezierCurveN<2>::feed(PathSink &sink, bool moveto_initial) const function in class:Geom::BezierCurveN 353 void BezierCurveN<3>::feed(PathSink &sink, bool moveto_initial) const function in class:Geom::BezierCurveN
|
H A D | bezier-curve.h | 171 virtual void feed(PathSink &sink, bool) const; 285 virtual void feed(PathSink &sink, bool moveto_initial) const { function in class:Geom::BezierCurveN 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 | 1126 void SVGPathParser::feed(char const *str, int len) function in class:Geom::SVGPathParser 1134 void SVGPathParser::feed(std::string const &s) function in class:Geom::SVGPathParser 1232 _sink.feed(*_curve, false); 1591 parser.feed(buffer, bytes_read);
|
H A D | elliptical-arc.cpp | 816 void EllipticalArc::feed(PathSink &sink, bool moveto_initial) const function in class:Geom::EllipticalArc
|
/inkscape/src/2geom/numeric/ |
H A D | fitting-model.h | 66 * - feed : its input is a parameter value and the related expression value, 104 * void feed( VectorView & vector, 132 * void feed( VectorView & vector, 159 void feed( VectorView & coeff, double sample_parameter ) const function in class:Geom::NL::LFMPowerBasis 217 void feed( VectorView & coeff, function in class:Geom::NL::LFMNormalizedPowerBasis 221 m_model.feed(coeff, sample_parameter); 243 // void feed( VectorView & coeff, double & fixed_term, Point const& p ) const 267 void feed( VectorView & coeff, double & fixed_term, Point const& p ) const function in class:Geom::NL::LFMConicEquation 314 void feed( VectorView & coeff, double & fixed_term, Point const& p ) const function in class:Geom::NL::LFMCircleEquation 352 void feed( VectorVie function in class:Geom::NL::LFMSBasis 399 void feed( VectorView & coeff, double t ) const function in class:Geom::NL::LFMD2SBasis 432 void feed( VectorView & coeff, double t ) const function in class:Geom::NL::LFMBezier 482 void feed( VectorView & coeff, double t ) const function in class:Geom::NL::LFMBezierCurveN [all...] |