Searched defs:back (Results 1 - 8 of 8) sorted by relevance

/inkscape/src/util/
H A Dlist-container.h222 /* back insertion sequence */
223 reference back() { return *_tail; } function in class:Inkscape::Util::ListContainer
224 const_reference back() const { return *_tail; } function in class:Inkscape::Util::ListContainer
/inkscape/src/2geom/
H A Dconvex-hull.h216 Point const &back() const { return _boundary.back(); } function in class:Geom::ConvexHull
H A Dpathvector.h169 Path &back() { return _data.back(); } function in class:Geom::PathVector
170 Path const &back() const { return _data.back(); } function in class:Geom::PathVector
223 return _data.back().finalPoint();
H A Dpath.h371 _closing_seg = new ClosingSegment(_data->curves.back().finalPoint(),
417 Curve const &back() const { return back_default(); } function in class:Geom::Path
419 if (empty()) return _data->curves.back();
479 * will not always give back the original path. */
831 _closing_seg = static_cast<ClosingSegment*>(&_data->curves.back());
/inkscape/src/display/
H A Dcurve.cpp219 else _pathv.back().appendNew<Geom::LineSegment>( p );
238 else _pathv.back().appendNew<Geom::QuadraticBezier>( p1, p2);
258 else _pathv.back().appendNew<Geom::CubicBezier>( p0, p1, p2 );
276 _pathv.back().close(true);
282 Used for freehand drawing when the user draws back to the start point.
287 if (_pathv.back().size() > 0 && dynamic_cast<Geom::LineSegment const *>(&_pathv.back().back_open())) {
288 _pathv.back().erase_last();
290 _pathv.back().setFinal(_pathv.back()
437 Geom::Curve const &back = lastpath.back_default(); member in class:Geom
[all...]
/inkscape/src/livarot/
H A DPath.h78 // also back data: info on where this polyline's segment comes from, ie wich command in the path description: "piece"
95 bool back; member in class:Path
125 void SetBackData (bool nVal); // has back data?
148 // and segments. the algorithm was found in a plugin for Impress (by Chris Cox), but i can't find it back...
H A DShapeMisc.cpp20 * polygon offset and polyline to path reassembling (when using back data)
109 bool back = false; local
135 // no next edge: end of this contour, we get back
136 if (back == false)
138 back = true;
148 if (back)
152 back = false;
249 bool back = false; local
275 if (back == false)
289 back
420 bool back = false; local
[all...]
/inkscape/src/ui/tool/
H A Dnode.h197 Handle *back() { return &_back; } function in class:Inkscape::UI::Node
445 Node &back() { return *static_cast<Node*>(ln_prev); } function in class:Inkscape::UI::NodeList

Completed in 155 milliseconds