/inkscape/src/util/ |
H A D | accumulators.h | 21 * The slot that was connected last is evaluated first. 26 result_type operator()(T_iterator first, T_iterator last) const { 27 while (first != last) *(--last); 38 result_type operator()(T_iterator first, T_iterator last) const { 39 for (; first != last; ++first) 47 * e.g. the slot that was connected last is evaluated first. 52 result_type operator()(T_iterator first, T_iterator last) const { 53 while (first != last) { 54 if (*(--last)) retur [all...] |
/inkscape/share/extensions/ |
H A D | straightseg.py | 43 last = [] 49 params[:2] = pointAtPercent(params[:2],last[:],self.options.percent) 53 dest1 = pointAtPercent(last[:],params[-2:],33.3) 54 dest2 = pointAtPercent(params[-2:],last[:],33.3) 58 dest = pointAtPercent(last[:],params[-2:],50) 63 last = subPathStart[:] 65 last = params[-2:]
|
H A D | render_alphabetsoup.py | 74 last = c.pop() 75 nc.append(['M', last[1][-2:]]) 78 cmd = last[0] 80 nc.append([last[0], last[1][2:4] + last[1][:2] + this[1][-2:]]) 82 nc.append([last[0], this[1][-2:]]) 83 last = this 156 last = None 165 last [all...] |
H A D | cubicsuperpath.py | 104 last = [] 109 if last: 110 csp[subpath].append([lastctrl[:],last[:],last[:]]) 114 last = params[:] 117 csp[subpath].append([lastctrl[:],last[:],last[:]]) 118 last = params[:] 121 csp[subpath].append([lastctrl[:],last[:],params[:2]]) 122 last [all...] |
H A D | motion.py | 33 def makeface(self,last,(cmd, params)): 35 a.append(['M',last[:]]) 50 np[-2:] = last[0]+self.vx,last[1]+self.vy 79 bez = (last,params[:2],params[2:4],params[-2:]) 98 self.makeface(last,seg) 99 last = seg[1][-2:] 104 last = subPathStart 106 last = params[-2:]
|
H A D | edge3d.py | 89 last = [] 93 last = [] 95 if last: 96 a = degrees(atan2(params[-2:][0] - last[0], 97 params[-2:][1] - last[1])) 100 result.append(('M', last)) 102 last = params[-2:]
|
H A D | synfig_output.py | 904 last = [] 913 if last: 914 bline_list[-1]["points"].append([lastctrl[:], last[:], last[:], lastsplit]) 919 last = params[:] 924 bline_list[-1]["points"].append([lastctrl[:], last[:], last[:], lastsplit]) 925 last = params[:] 930 bline_list[-1]["points"].append([lastctrl[:], last[:], params[:2], lastsplit]) 931 last [all...] |
/inkscape/packaging/ |
H A D | mkNEWS | 23 last if $line =~ /^\s*Previous releases/;
|
/inkscape/src/ui/view/ |
H A D | view.h | 31 result_type operator()(T_iterator first, T_iterator last) const{ 32 for (; first != last; ++first) 46 result_type operator()(T_iterator first, T_iterator last) const{ 47 for (; first != last; ++first)
|
/inkscape/src/libdepixelize/priv/ |
H A D | optimization-kopf2011.h | 109 Point<T> last[4]; 115 last[i] = *it; 120 if ( !is_border(last) ) 130 last[0] = last[2]; 131 last[1] = last[3]; 132 last[2] = *it; 137 last[3] = *it; 139 if ( !is_border(last) ) [all...] |
/inkscape/src/livarot/ |
H A D | path-description.h | 38 virtual void dumpSVG(Inkscape::SVGOStringStream &/*s*/, Geom::Point const &/*last*/) const {} 54 void dumpSVG(Inkscape::SVGOStringStream &s, Geom::Point const &last) const; 67 void dumpSVG(Inkscape::SVGOStringStream &s, Geom::Point const &last) const; 110 void dumpSVG(Inkscape::SVGOStringStream &s, Geom::Point const &last) const; 126 void dumpSVG(Inkscape::SVGOStringStream &s, Geom::Point const &last) const; 155 void dumpSVG(Inkscape::SVGOStringStream &s, Geom::Point const &last) const;
|
H A D | PathStroke.cpp | 78 int last[2] = { -1, -1 }; local 83 DoButt(dest, width, butt, pos, dir, last[RIGHT], last[LEFT]); 87 dest->AddEdge (end[LEFT], last[LEFT]); 88 dest->AddEdge (last[RIGHT], end[RIGHT]); 145 int last[2] = { -1, -1 }; local 149 DoButt(dest, width, butt, curP, dir, last[RIGHT], last[LEFT]); 153 dest->AddEdge (end[LEFT], last[LEFT]); 154 dest->AddEdge (last[RIGH 161 int last[2] = { -1, -1 }; local [all...] |
H A D | path-description.cpp | 9 void PathDescrMoveTo::dumpSVG(Inkscape::SVGOStringStream& s, Geom::Point const &/*last*/) const 25 void PathDescrLineTo::dumpSVG(Inkscape::SVGOStringStream& s, Geom::Point const &/*last*/) const 78 void PathDescrCubicTo::dumpSVG(Inkscape::SVGOStringStream& s, Geom::Point const &last) const 81 << last[Geom::X] + start[0] / 3 << " " 82 << last[Geom::Y] + start[1] / 3 << " " 113 void PathDescrArcTo::dumpSVG(Inkscape::SVGOStringStream& s, Geom::Point const &/*last*/) const 151 void PathDescrClose::dumpSVG(Inkscape::SVGOStringStream& s, Geom::Point const &/*last*/) const
|
/inkscape/src/ui/tool/ |
H A D | control-point-selection.h | 68 void insert(InputIterator first, InputIterator last) { argument 69 for (; first != last; ++first) { 72 signal_selection_changed.emit(std::vector<key_type>(first, last), true); 79 void erase(iterator first, iterator last); 144 //the purpose of this list is to keep track of first and last selected
|
/inkscape/src/2geom/ |
H A D | bezier-utils.cpp | 402 /* First and last control points of the Bezier curve are positioned exactly at the first and 403 last data points. */ 545 unsigned const last = len - 1; 547 assert( bezCurve[3] == d[last] ); 549 assert( u[last] == 1.0 ); 550 /* Otherwise, consider including 0 and last in the below loop. */ 552 for (unsigned i = 1; i < last; i++) { 714 * Estimates the (backward) tangent at d[last - 0.5]. 727 unsigned const last = len - 1; 728 unsigned const prev = last [all...] |
H A D | path-sink.cpp | 49 Path::const_iterator iter = path.begin(), last = path.end_open(); local 50 for (; iter != last; ++iter) {
|
H A D | convex-hull.h | 145 ConvexHull(Iter first, Iter last) argument 148 _prune(first, last, _boundary); 283 static void _prune(Iter first, Iter last, std::vector<Point> &out) { argument 285 for (Iter i = first; i != last; ++i) { 303 for (Iter i = first; i != last; ++i) {
|
H A D | path.cpp | 266 Point last = ch.front(); 269 _data->curves.push_back(new LineSegment(last, ch[i])); 270 last = ch[i]; 309 // when closing, if last segment is linear and ends at initial point, 311 Sequence::iterator last = _data->curves.end() - 2; 312 if (last->isLineSegment() && last->finalPoint() == initialPoint()) { 313 _closing_seg->setInitial(last->initialPoint()); 314 _data->curves.erase(last); 905 void Path::erase(iterator first, iterator last) [all...] |
H A D | pathvector.h | 140 PathVector(InputIter first, InputIter last) argument 141 : _data(first, last) 175 /// Remove the last path. 183 void insert(iterator out, InputIter first, InputIter last) { argument 184 _data.insert(out, first, last); 191 iterator erase(iterator first, iterator last) { argument 192 return _data.erase(first, last); 220 /** @brief Get the last point in the last path of the vector.
|
H A D | circulator.h | 51 Iterator const &last, 53 : _first(first), _last(last), _pos(pos) 50 Circulator(Iterator const &first, Iterator const &last, Iterator const &pos) argument
|
H A D | elliptical-arc-from-sbasis.cpp | 141 unsigned int last; // N-1 member in class:Geom::make_elliptical_arc 202 N(_total_samples), last(N-1), partitions(N-1), p(N) 246 print_bound_error(last); 261 for ( unsigned int k = 1; k < last; ++k )
|
/inkscape/src/ |
H A D | document-subset.cpp | 60 Siblings::const_iterator last=children.end() - 1; local 62 while ( first != last ) { 63 Siblings::const_iterator mid = first + ( last - first + 1 ) / 2; 68 if ( last == mid ) { 69 last = mid - 1; // already at the top limit 71 last = mid; 78 if ( first == last ) { 80 int pos = sp_object_compare_position(*last, obj); 82 ++last; 86 return last [all...] |
/inkscape/src/libvpsc/ |
H A D | block.h | 104 bool canFollowLeft(Constraint *c, const Variable* const last); 105 bool canFollowRight(Constraint *c, const Variable* const last);
|
/inkscape/src/libavoid/ |
H A D | shape.cpp | 51 VertInf *last = NULL; local 63 node->shPrev = last; 64 last->shNext = node; 65 //node->lstPrev = last; 66 //last->lstNext = node; 69 last = node;
|
/inkscape/src/ui/tools/ |
H A D | dynamic-base.h | 82 Geom::Point last; member in class:Inkscape::UI::Tools::DynamicBase
|