Searched refs:length_left (Results 1 - 9 of 9) sorted by relevance
/inkscape/src/live_effects/ |
H A D | lpe-angle_bisector.cpp | 45 length_left(_("Length left:"), _("Specifies the left end of the bisector"), "length-left", &wr, this, 0), 51 registerParameter( dynamic_cast<Parameter *>(&length_left) ); 73 Geom::Point D = ptA - dir * length_left; 107 lpe->length_left.param_set_value(-lambda); 129 return lpe->ptA - lpe->dir * lpe->length_left;
|
H A D | lpe-angle_bisector.h | 38 ScalarParam length_left; member in class:Inkscape::LivePathEffect::LPEAngleBisector
|
H A D | lpe-parallel.cpp | 51 length_left(_("Length left:"), _("Specifies the left end of the parallel"), "length-left", &wr, this, 150), 58 registerParameter( dynamic_cast<Parameter *>(&length_left) ); 91 C = offset_pt - dir * length_left; 126 lpe->length_left.param_set_value(-lambda);
|
H A D | lpe-perp_bisector.cpp | 73 lpe->length_left.param_set_value(lambda); 97 length_left(_("Length left:"), _("Specifies the left end of the bisector"), "length-left", &wr, this, 200), 105 registerParameter( dynamic_cast<Parameter *>(&length_left) ); 146 C = M + perp_dir * length_left;
|
H A D | lpe-parallel.h | 46 ScalarParam length_left; member in class:Inkscape::LivePathEffect::LPEParallel
|
H A D | lpe-perp_bisector.h | 53 ScalarParam length_left; member in class:Inkscape::LivePathEffect::LPEPerpBisector
|
H A D | lpe-tangent_to_curve.h | 50 ScalarParam length_left; member in class:Inkscape::LivePathEffect::LPETangentToCurve
|
H A D | lpe-tangent_to_curve.cpp | 61 length_left(_("Length left:"), _("Specifies the left end of the tangent"), "length-left", &wr, this, 150), 69 registerParameter( dynamic_cast<Parameter *>(&length_left) ); 90 C = ptA - derivA * length_left; 153 lpe->length_left.param_set_value(-lambda);
|
/inkscape/src/ |
H A D | sp-mesh-array.cpp | 2173 double length_left = d[0].length(); 2176 length_left = std::abs( (color3.v.c[cdm] - color0.v.c[cdm]) / slope_ave[ cdm ] ); 2182 if( length_left > max * d[0].length() && length_left > d[2].length() ) { 2184 length_left = std::max( max * d[0].length(), d[2].length() ); 2191 if( d[2].length() != 0.0 ) d[2] *= length_left/d[2].length(); 2194 // std::cout << " length_left: " << length_left
|
Completed in 31 milliseconds