Searched refs:tolerance_sq (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/2geom/
H A Dbezier-utils.h60 Point darray_left_tangent(Point const d[], unsigned const len, double const tolerance_sq);
61 Point darray_right_tangent(Point const d[], unsigned const length, double const tolerance_sq);
H A Dbezier-utils.cpp58 Point const &tHat1, Point const &tHat2, double tolerance_sq);
356 * \param tolerance_sq Used only for an initial guess as to tangent directions
363 double const tolerance_sq)
368 ? darray_left_tangent(data, len, tolerance_sq)
371 ? darray_right_tangent(data, len, tolerance_sq)
745 darray_left_tangent(Point const d[], unsigned const len, double const tolerance_sq)
748 assert( 0 <= tolerance_sq );
753 if ( tolerance_sq < distsq ) {
776 darray_right_tangent(Point const d[], unsigned const len, double const tolerance_sq)
779 assert( 0 <= tolerance_sq );
[all...]
/inkscape/src/live_effects/
H A Dlpe-powerstroke-interpolators.h84 double tolerance_sq = 0; // this value is just a random guess local
87 tolerance_sq, max_segs);
/inkscape/src/ui/tools/
H A Dpencil-tool.cpp643 double tolerance_sq = 0.02 * square(this->desktop->w2d().descrim() * tol) * exp(0.2 * tol - 2); local
658 int const n_segs = Geom::bezier_fit_cubic_r(b.data(), this->ps.data(), n_points, tolerance_sq, max_segs);
716 double tolerance_sq = 0.02 * square(this->desktop->w2d().descrim() * tol) * exp(0.2 * tol - 2); local
732 int const n_segs = Geom::bezier_fit_cubic_r(b.data(), this->ps.data(), n_points, tolerance_sq, max_segs);
799 double const tolerance_sq = 0; local
808 tolerance_sq, 1);
H A Dcalligraphic-tool.cpp1040 double const tolerance_sq = square( desktop->w2d().descrim() * TOLERANCE_CALLIGRAPHIC ); local
1073 tolerance_sq, BEZIER_MAX_BEZIERS);
1078 tolerance_sq, BEZIER_MAX_BEZIERS);
H A Deraser-tool.cpp891 double const tolerance_sq = square( desktop->w2d().descrim() * TOLERANCE_ERASER ); local
924 gint const nb1 = Geom::bezier_fit_cubic_r(b1, this->point1, this->npoints, tolerance_sq, BEZIER_MAX_BEZIERS);
928 gint const nb2 = Geom::bezier_fit_cubic_r(b2, this->point2, this->npoints, tolerance_sq, BEZIER_MAX_BEZIERS);

Completed in 84 milliseconds