/inkscape/src/live_effects/ |
H A D | lpe-circle_with_radius.cpp | 42 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 D | lpe-constructgrid.cpp | 45 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 D | lpe-interpolate_points.cpp | 52 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 D | lpe-line_segment.cpp | 52 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 D | lpe-test-doEffect-stack.cpp | 51 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 D | lpe-circle_3pts.cpp | 55 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 D | lpe-interpolate.cpp | 50 * 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 D | lpe-jointype.cpp | 157 Geom::PathVector LPEJoinType::doEffect_path(Geom::PathVector const & path_in) argument 160 for (size_t i = 0; i < path_in.size(); ++i) { 161 Geom::PathVector tmp = Inkscape::outline(path_in[i], line_width,
|
H A D | lpe-angle_bisector.cpp | 60 LPEAngleBisector::doEffect_path (Geom::PathVector const & path_in) argument 65 ptA = path_in[0].pointAt(1); 66 Point B = path_in[0].initialPoint(); 67 Point C = path_in[0].pointAt(2);
|
H A D | lpe-show_handles.cpp | 82 Geom::PathVector LPEShowHandles::doEffect_path (Geom::PathVector const & path_in) argument 85 Geom::PathVector const original_pathv = pathv_to_linear_and_cubic_beziers(path_in); 87 for (unsigned int i=0; i < path_in.size(); i++) { 88 path_out.push_back(path_in[i]);
|
H A D | lpe-vonkoch.cpp | 80 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 D | lpe-bendpath.cpp | 190 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 D | lpe-curvestitch.cpp | 72 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 D | lpe-ellipse_5pts.cpp | 71 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;
|
H A D | lpe-gears.cpp | 236 LPEGears::doEffect_path (Geom::PathVector const &path_in) argument 239 Geom::Path gearpath = path_in[0]; 256 // iterate through Geom::Curve in path_in
|
H A D | lpe-mirror_symmetry.cpp | 175 LPEMirrorSymmetry::doEffect_path (Geom::PathVector const & path_in) argument 177 Geom::PathVector const original_pathv = pathv_to_linear_and_cubic_beziers(path_in); 181 path_out = pathv_to_linear_and_cubic_beziers(path_in); 303 for (int i = 0; i < static_cast<int>(path_in.size()); ++i) { 304 path_out.push_back(path_in[i] * m);
|
H A D | lpe-patternalongpath.cpp | 299 Geom::Path const *path_in = sp_shape->getCurveBeforeLPE()->first_path(); member in class:Inkscape::LivePathEffect::WPAP::Geom 300 Geom::Point ptA = path_in->pointAt(Geom::PathTime(0, 0.0)); 301 Geom::Point B = path_in->pointAt(Geom::PathTime(1, 0.0)); 302 Geom::Curve const *first_curve = &path_in->curveAt(Geom::PathTime(0, 0.0)); 328 Geom::Path const *path_in = sp_shape->getCurveBeforeLPE()->first_path(); member in class:Inkscape::LivePathEffect::WPAP::Geom 329 Geom::Point ptA = path_in->pointAt(Geom::PathTime(0, 0.0)); 330 Geom::Point B = path_in->pointAt(Geom::PathTime(1, 0.0)); 331 Geom::Curve const *first_curve = &path_in->curveAt(Geom::PathTime(0, 0.0));
|
H A D | effect.cpp | 534 Effect::doEffect_path (Geom::PathVector const & path_in) argument 540 for (unsigned int i=0; i < path_in.size(); i++) { 541 Geom::Piecewise<Geom::D2<Geom::SBasis> > pwd2_in = path_in[i].toPwSb(); 552 for (unsigned int i=0; i < path_in.size(); i++) { 553 pwd2_in.concat( path_in[i].toPwSb() );
|
H A D | lpe-fillet-chamfer.cpp | 492 LPEFilletChamfer::adjustForNewPath(Geom::PathVector const &path_in) argument 494 if (!path_in.empty()) { 495 fillet_chamfer_values.recalculate_controlpoints_for_new_pwd2(pathv_to_linear_and_cubic_beziers(path_in)[0].toPwSb()); 500 LPEFilletChamfer::doEffect_path(Geom::PathVector const &path_in) argument 503 Piecewise<D2<SBasis> > pwd2_in = paths_to_pw(pathv_to_linear_and_cubic_beziers(path_in)); 511 Geom::PathVector path_in_processed = pathv_to_linear_and_cubic_beziers(path_in); 539 std::vector<double> times = fillet_chamfer_values.get_times(counter, path_in, last);
|
H A D | lpe-knot.cpp | 394 LPEKnot::doEffect_path (Geom::PathVector const &path_in) argument 400 return path_in; 403 for (unsigned comp=0; comp<path_in.size(); comp++){ 409 if (path_in[comp]==gpaths[i0]) break;
|
H A D | lpe-taperstroke.cpp | 175 static Geom::Path return_at_first_cusp(Geom::Path const & path_in, double /*smooth_tolerance*/ = 0.05) argument 179 for (unsigned i = 0; i < path_in.size(); i++) { 180 temp.append(path_in[i]); 181 if (Geom::get_nodetype(path_in[i], path_in[i + 1]) != Geom::NODE_SMOOTH ) { 193 Geom::PathVector LPETaperStroke::doEffect_path(Geom::PathVector const& path_in) argument 195 Geom::Path first_cusp = return_at_first_cusp(path_in[0]); 196 Geom::Path last_cusp = return_at_first_cusp(path_in[0].reversed()); 205 unsigned size = path_in[0].size(); 261 pathv_out = doEffect_simplePath(path_in); 348 doEffect_simplePath(Geom::PathVector const & path_in) argument [all...] |
H A D | lpe-powerstroke.cpp | 304 LPEPowerStroke::adjustForNewPath(Geom::PathVector const & path_in) argument 306 if (!path_in.empty()) { 307 offset_points.recalculate_controlpoints_for_new_pwd2(path_in[0].toPwSb()); 560 LPEPowerStroke::doEffect_path (Geom::PathVector const & path_in) argument 565 if (path_in.empty()) { 570 Geom::Piecewise<Geom::D2<Geom::SBasis> > pwd2_in = path_in[0].toPwSb(); 586 if (path_in[0].closed()) { 643 if (path_in[0].closed()) {
|