Searched refs:pointAndDerivatives (Results 1 - 10 of 10) sorted by relevance
/inkscape/src/live_effects/ |
H A D | lpe-attach-path.cpp | 84 std::vector<Geom::Point> derivs = this_pathv.front().front().pointAndDerivatives(0, 3); 101 std::vector<Geom::Point> derivs_2 = c->pointAndDerivatives(start_path_position >= transformedpath.size() ? 1 : (start_path_position - (int)start_path_position), 3); 140 std::vector<Geom::Point> derivs = last_seg_reverse->pointAndDerivatives(0, 3); 156 std::vector<Geom::Point> derivs_2 = c->pointAndDerivatives(end_path_position >= transformedpath.size() ? 1 : (end_path_position - (int)end_path_position), 3);
|
H A D | lpe-knot.cpp | 427 std::vector<Point> flag_i = gpaths[i][curveidx].pointAndDerivatives(t,1); 432 std::vector<Point> flag_j = gpaths[j][curveidx].pointAndDerivatives(t,1);
|
/inkscape/src/2geom/ |
H A D | curve.h | 110 virtual Point pointAt(Coord t) const { return pointAndDerivatives(t, 0).front(); } 130 virtual std::vector<Point> pointAndDerivatives(Coord t, unsigned n) const = 0;
|
H A D | curve.cpp | 155 std::vector<Point> derivs = pointAndDerivatives(t, n);
|
H A D | sbasis-curve.h | 94 virtual std::vector<Point> pointAndDerivatives(Coord t, unsigned n) const { function in class:Geom::SBasisCurve
|
H A D | elliptical-arc.h | 298 virtual std::vector<Point> pointAndDerivatives(Coord t, unsigned int n) const;
|
H A D | path-intersection.cpp | 159 as = A.pointAndDerivatives(s, 2); 160 bs = B.pointAndDerivatives(t, 2); 188 as = A.pointAndDerivatives(ns, 2); 189 bs = B.pointAndDerivatives(nt, 2);
|
H A D | bezier-curve.h | 164 virtual std::vector<Point> pointAndDerivatives(Coord t, unsigned n) const { function in class:Geom::BezierCurve
|
H A D | elliptical-arc.cpp | 255 EllipticalArc::pointAndDerivatives(Coord t, unsigned int n) const function in class:Geom::EllipticalArc 258 return chord().pointAndDerivatives(t, n);
|
/inkscape/src/helper/ |
H A D | geom-pathstroke.cpp | 724 std::vector<Geom::Point> derivs = bez.pointAndDerivatives(time, 3);
|
Completed in 1716 milliseconds