Searched refs:initial (Results 1 - 9 of 9) sorted by relevance
/inkscape/src/libdepixelize/priv/ |
H A D | optimization-kopf2011.h | 158 T positional_energy(Point<T> guess, Point<T> initial) argument 162 return pow(pow(guess.x - initial.x, 2) 163 + pow(guess.y - initial.y, 2), 2);
|
H A D | simplifiedvoronoi.h | 213 * The initial value of all nodes that will be inserted is {x, y}. All 899 const Point<T> initial(x, y); 918 Point<T> borderMid = initial; 921 borderMid = midpoint(initial, borderMid); 924 Point<T> vertices[2] = {initial, initial}; 1074 Point<T> vertex = initial; 1076 vertex = _adjust(midpoint(midpoint(initial, vertex), initial), true); 1082 Point<T> vertex = initial; [all...] |
/inkscape/src/2geom/ |
H A D | circle.h | 116 arc(Point const& initial, Point const& inner, Point const& final) const;
|
H A D | sbasis-to-bezier.cpp | 428 subpath_from_sbasis_incremental(Geom::OldPathSetBuilder &pb, D2<SBasis> B, double tol, bool initial) { 451 if (initial) { 453 initial = false;
|
H A D | circle.cpp | 254 Circle::arc(Point const& initial, Point const& inner, Point const& final) const 258 return e.arc(initial, inner, final);
|
H A D | sbasis-geometric.cpp | 533 Point final = p[p.size()-1].at1(), initial = p[0].at0(); local 534 const double ai = cross(final, initial); 536 centroid_tmp += (final + initial)*ai; // first moment.
|
/inkscape/src/display/ |
H A D | cairo-utils.cpp | 657 Geom::Point initial = path.initialPoint() * transshift; local 658 cairo_move_to(ct, initial[0], initial[1] ); 668 cairo_line_to(ct, initial[0], initial[1]); 676 there is a line join connecting the final and initial segments of the sub-path.
|
/inkscape/src/libdepixelize/ |
H A D | kopftracer2011.cpp | 522 const PixelGraph::const_iterator initial = it; local 553 if ( it == initial )
|
/inkscape/src/helper/ |
H A D | geom.cpp | 160 Geom::Point initial = pv.front().initialPoint() * t; 161 Geom::Rect bbox(initial, initial); // obtain well defined bbox as starting point to unionWith
|
Completed in 795 milliseconds