Searched refs:path_in (Results 1 - 25 of 42) sorted by relevance

12

/inkscape/src/live_effects/
H A Dlpe-circle_with_radius.cpp42 LPECircleWithRadius::doEffect_path (Geom::PathVector const & path_in) argument
46 Geom::Point center = path_in[0].initialPoint();
47 Geom::Point pt = path_in[0].finalPoint();
H A Dlpe-circle_3pts.h30 virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
H A Dlpe-circle_with_radius.h29 virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
H A Dlpe-ellipse_5pts.h29 virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
H A Dlpe-interpolate_points.h28 virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
H A Dlpe-circle_3pts.cpp55 LPECircle3Pts::doEffect_path (Geom::PathVector const & path_in) argument
60 Geom::Point A = path_in[0].initialPoint();
61 Geom::Point B = path_in[0].pointAt(1);
62 Geom::Point C = path_in[0].pointAt(2);
H A Dlpe-line_segment.cpp52 LPELineSegment::doEffect_path (Geom::PathVector const & path_in) argument
56 A = path_in.initialPoint();
57 B = path_in.finalPoint();
64 return path_in;
H A Dlpe-powerstroke.h29 virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
35 void adjustForNewPath(Geom::PathVector const & path_in);
H A Dlpe-constructgrid.h28 virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
H A Dlpe-interpolate.h30 virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
H A Dlpe-constructgrid.cpp45 LPEConstructGrid::doEffect_path (Geom::PathVector const & path_in) argument
48 if (path_in[0].size() >= 2) {
50 Geom::Path::const_iterator it ( path_in[0].begin() );
79 return path_in;
H A Dlpe-gears.h25 virtual Geom::PathVector doEffect_path(Geom::PathVector const &path_in);
H A Dlpe-test-doEffect-stack.cpp51 LPEdoEffectStackTest::doEffect_path (Geom::PathVector const &path_in) argument
54 return Effect::doEffect_path(path_in);
57 Geom::PathVector path_out = path_in;
H A Dlpe-interpolate.cpp50 * interpolate path_in[0] to path_in[1]
53 LPEInterpolate::doEffect_path (Geom::PathVector const & path_in) argument
55 if ( (path_in.size() < 2) || (number_of_steps < 2)) {
56 return path_in;
60 return path_in;
65 Geom::Piecewise<Geom::D2<Geom::SBasis> > pwd2_A = path_in[0].toPwSb();
66 Geom::Piecewise<Geom::D2<Geom::SBasis> > pwd2_B = path_in[1].toPwSb();
H A Dlpe-interpolate_points.cpp52 LPEInterpolatePoints::doEffect_path (Geom::PathVector const & path_in) argument
61 for(Geom::PathVector::const_iterator path_it = path_in.begin(); path_it != path_in.end(); ++path_it) {
H A Dlpe-curvestitch.h31 virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
H A Dlpe-jointype.h27 virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
H A Dlpe-line_segment.h37 virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
H A Dlpe-test-doEffect-stack.h30 virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
H A Dlpe-vonkoch.cpp80 LPEVonKoch::doEffect_path (Geom::PathVector const & path_in) argument
87 return path_in;
128 return path_in;
133 for (unsigned k = 0; k < path_in.size(); k++){
134 path_in_complexity+=path_in[k].size();
147 return path_in;
151 Geom::PathVector pathi = path_in;
152 Geom::PathVector path_out = path_in;
156 path_out = path_in;
H A Dlpe-fillet-chamfer.h40 virtual Geom::PathVector doEffect_path(Geom::PathVector const &path_in);
44 virtual void adjustForNewPath(Geom::PathVector const &path_in);
H A Dlpe-taperstroke.h36 virtual Geom::PathVector doEffect_path (Geom::PathVector const& path_in);
37 Geom::PathVector doEffect_simplePath(Geom::PathVector const& path_in);
H A Dlpe-bendpath.cpp190 Geom::Path path_in = lpe->bend_path.get_pathvector().pathAt(Geom::PathVectorTime(0, 0, 0.0)); local
191 Geom::Point ptA = path_in.pointAt(Geom::PathTime(0, 0.0));
192 Geom::Point B = path_in.pointAt(Geom::PathTime(1, 0.0));
193 Geom::Curve const *first_curve = &path_in.curveAt(Geom::PathTime(0, 0.0));
216 Geom::Path path_in = lpe->bend_path.get_pathvector().pathAt(Geom::PathVectorTime(0, 0, 0.0)); local
217 Geom::Point ptA = path_in.pointAt(Geom::PathTime(0, 0.0));
218 Geom::Point B = path_in.pointAt(Geom::PathTime(1, 0.0));
219 Geom::Curve const *first_curve = &path_in.curveAt(Geom::PathTime(0, 0.0));
H A Dlpe-curvestitch.cpp72 LPECurveStitch::doEffect_path (Geom::PathVector const & path_in) argument
74 if (path_in.size() >= 2) {
84 return path_in;
92 for (unsigned ii = 0 ; ii < path_in.size() - 1; ii++)
93 for (unsigned jj = ii+1; jj < path_in.size(); jj++)
95 Piecewise<D2<SBasis> > A = arc_length_parametrization(Piecewise<D2<SBasis> >(path_in[ii].toPwSb()),2,.1);
96 Piecewise<D2<SBasis> > B = arc_length_parametrization(Piecewise<D2<SBasis> >(path_in[jj].toPwSb()),2,.1);
148 return path_in;
H A Dlpe-ellipse_5pts.cpp71 LPEEllipse5Pts::doEffect_path (Geom::PathVector const & path_in) argument
75 if (path_in[0].size() < 4) {
78 return path_in;
81 Geom::Point A = path_in[0].initialPoint();
82 Geom::Point B = path_in[0].pointAt(1);
83 Geom::Point C = path_in[0].pointAt(2);
84 Geom::Point D = path_in[0].pointAt(3);
85 Geom::Point E = path_in[0].pointAt(4);
163 return path_in;

Completed in 56 milliseconds

12