Searched defs:miter_limit (Results 1 - 6 of 6) sorted by relevance
/inkscape/src/live_effects/ |
H A D | lpe-jointype.h | 38 ScalarParam miter_limit;
member in class:Inkscape::LivePathEffect::LPEJoinType
|
H A D | lpe-powerstroke.h | 45 ScalarParam miter_limit; member in class:Inkscape::LivePathEffect::LPEPowerStroke
|
H A D | lpe-taperstroke.h | 49 ScalarParam miter_limit; member in class:Inkscape::LivePathEffect::LPETaperStroke
|
H A D | lpe-powerstroke.cpp | 183 miter_limit(_("Miter limit:"), _("Maximum length of the miter (in units of stroke width)"), "miter_limit", &wr, this, 4.), 199 registerParameter( dynamic_cast<Parameter *>(&miter_limit) ); 319 double miter_limit, 410 if (len > fabs(width) * miter_limit) { 465 if (len <= fabs(width) * miter_limit) { 489 if (len <= fabs(width) * miter_limit) { 640 Geom::Path fixed_path = path_from_piecewise_fix_cusps( pwd2_out, y, jointype, miter_limit, LPE_CONVERSION_TOLERANCE); 641 Geom::Path fixed_mirrorpath = path_from_piecewise_fix_cusps( mirrorpath, reverse(y), jointype, miter_limit, LPE_CONVERSION_TOLERANCE); 316 path_from_piecewise_fix_cusps( Geom::Piecewise<Geom::D2<Geom::SBasis> > const & B, Geom::Piecewise<Geom::SBasis> const & y, LineJoinType jointype, double miter_limit, double tol=Geom::EPSILON) argument
|
/inkscape/src/display/ |
H A D | nr-style.h | 66 float miter_limit; member in struct:NRStyle
|
/inkscape/src/helper/ |
H A D | geom-pathstroke.cpp | 560 double miter_limit = width * miter; local 565 if (Geom::distance(point_on_path, sol) > miter_limit) { 568 Geom::Point limit_point = point_on_path + miter_limit * temp; 578 double limit_angle = miter_limit / radius;
|
Completed in 24 milliseconds