Searched refs:end_path_position (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/live_effects/
H A Dlpe-attach-path.cpp34 end_path_position(_("End path position:"), _("Position to attach path end to"), "endposition", &wr, this, 0.0),
44 registerParameter(&end_path_position);
145 end_path_position.param_set_value(transformedpath.nearestTime(end_path_curve_end.getOrigin()).asFlatTime());
148 if (end_path_position > transformedpath.size()) {
149 end_path_position.param_set_value(transformedpath.size());
150 } else if (end_path_position < 0) {
151 end_path_position.param_set_value(0);
153 const Geom::Curve *c = end_path_position >= transformedpath.size() ?
154 &transformedpath.back() : &transformedpath.at((int)end_path_position);
156 std::vector<Geom::Point> derivs_2 = c->pointAndDerivatives(end_path_position >
[all...]
H A Dlpe-attach-path.h44 ScalarParam end_path_position; member in class:Inkscape::LivePathEffect::LPEAttachPath

Completed in 38 milliseconds