Searched refs:linked_path (Results 1 - 7 of 7) sorted by relevance

/inkscape/src/live_effects/
H A Dlpe-clone-original.cpp18 linked_path(_("Linked path:"), _("Path from which to take the original path data"), "linkedpath", &wr, this)
20 registerParameter( dynamic_cast<Parameter *>(&linked_path) );
30 if ( linked_path.linksToPath() ) {
31 Geom::PathVector linked_pathv = linked_path.get_pathvector();
H A Dlpe-fill-between-many.cpp43 Geom::Path linked_path; local
45 linked_path = (*iter)->_pathvector.front().reversed();
47 linked_path = (*iter)->_pathvector.front();
51 linked_path = linked_path * SP_ITEM(obj)->getRelativeTransform(firstObj);
52 res_pathv.front().appendNew<Geom::LineSegment>(linked_path.initialPoint());
53 res_pathv.front().append(linked_path);
56 res_pathv.push_back(linked_path);
H A Dlpe-fill-between-strokes.cpp23 linked_path(_("Linked path:"), _("Path from which to take the original path data"), "linkedpath", &wr, this),
27 registerParameter( dynamic_cast<Parameter *>(&linked_path) );
41 if ( linked_path.linksToPath() && second_path.linksToPath() && linked_path.getObject() && second_path.getObject() ) {
42 Geom::PathVector linked_pathv = linked_path.get_pathvector();
46 Geom::Affine second_transform = second_path.getObject()->getRelativeTransform(linked_path.getObject());
77 else if ( linked_path.linksToPath() && linked_path.getObject() ) {
78 Geom::PathVector linked_pathv = linked_path.get_pathvector();
H A Dlpe-bounding-box.cpp24 linked_path(_("Linked path:"), _("Path from which to take the original path data"), "linkedpath", &wr, this),
27 registerParameter( dynamic_cast<Parameter *>(&linked_path) );
40 if ( linked_path.linksToPath() && linked_path.getObject() ) {
41 SPItem * item = linked_path.getObject();
H A Dlpe-bounding-box.h26 OriginalPathParam linked_path; member in class:Inkscape::LivePathEffect::LPEBoundingBox
H A Dlpe-clone-original.h26 OriginalPathParam linked_path; member in class:Inkscape::LivePathEffect::LPECloneOriginal
H A Dlpe-fill-between-strokes.h26 OriginalPathParam linked_path; member in class:Inkscape::LivePathEffect::LPEFillBetweenStrokes

Completed in 1952 milliseconds