Searched defs:miter_limit (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/live_effects/
H A Dlpe-jointype.h38 ScalarParam miter_limit; member in class:Inkscape::LivePathEffect::LPEJoinType
H A Dlpe-powerstroke.h45 ScalarParam miter_limit; member in class:Inkscape::LivePathEffect::LPEPowerStroke
H A Dlpe-taperstroke.h49 ScalarParam miter_limit; member in class:Inkscape::LivePathEffect::LPETaperStroke
H A Dlpe-powerstroke.cpp183 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 Dnr-style.h66 float miter_limit; member in struct:NRStyle
/inkscape/src/helper/
H A Dgeom-pathstroke.cpp560 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 21 milliseconds