Searched refs:bezier_length (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/2geom/
H A Dbezier-curve.cpp140 return bezier_length(pts[0], pts[1], pts[2], tolerance);
145 return bezier_length(pts[0], pts[1], pts[2], pts[3], tolerance);
148 return bezier_length(controlPoints(), tolerance);
443 Coord bezier_length(std::vector<Point> const &points, Coord tolerance) function in namespace:Geom
471 Coord bezier_length(Point a0, Point a1, Point a2, Coord tolerance) function in namespace:Geom
500 Coord bezier_length(Point a0, Point a1, Point a2, Point a3, Coord tolerance) function in namespace:Geom
H A Dbezier-curve.h335 Coord bezier_length(std::vector<Point> const &points, Coord tolerance = 0.01);
336 Coord bezier_length(Point p0, Point p1, Point p2, Coord tolerance = 0.01);
337 Coord bezier_length(Point p0, Point p1, Point p2, Point p3, Coord tolerance = 0.01);
/inkscape/src/ui/tool/
H A Dnode.cpp1049 distance_front += Geom::bezier_length(*fwd, fwd->_front, n->_back, *n);
1060 distance_back += Geom::bezier_length(*rev, rev->_back, p->_front, *p);
1091 if (n) distance_front += Geom::bezier_length(*fwd, fwd->_front, n->_back, *n);
1099 if (p) distance_back += Geom::bezier_length(*rev, rev->_back, p->_front, *p);
1109 double df = distance_front + Geom::bezier_length(*fwdp, fwdp->_front, fwd->_back, *fwd);
1110 double db = distance_back + Geom::bezier_length(*revn, revn->_back, rev->_front, *rev);

Completed in 26 milliseconds