Searched defs:lineTo (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/2geom/
H A Dcairo-path-sink.cpp48 void CairoPathSink::lineTo(Point const &p) function in class:Geom::CairoPathSink
H A Dpath-sink.h62 virtual void lineTo(Point const &p) = 0;
103 /// Output an axis-aligned rectangle, using moveTo, lineTo and closePath.
129 void lineTo(Point const &p) { function in class:Geom::PathIteratorSink
H A Dsvg-path-writer.cpp69 void SVGPathWriter::lineTo(Point const &p) function in class:Geom::SVGPathWriter
/inkscape/share/extensions/ink2canvas/
H A Dcanvas.py137 def lineTo(self, x, y): member in class:Canvas
138 self.write("ctx.lineTo(%f, %f);" % (x, y))
152 self.lineTo(x, y+h-ry)
154 self.lineTo(x+w-rx, y+h)
156 self.lineTo(x+w, y+ry)
158 self.lineTo(x+rx, y)
/inkscape/src/display/
H A Ddrawing-context.h59 void lineTo(Geom::Point const &p) { cairo_line_to(_ct, p[Geom::X], p[Geom::Y]); } function in class:Inkscape::DrawingContext
/inkscape/src/svg/
H A Dpath-string.h78 PathString &lineTo(Geom::Coord x, Geom::Coord y) { function in class:Inkscape::SVG::PathString
79 return lineTo(Geom::Point(x, y));
82 PathString &lineTo(Geom::Point p) { function in class:Inkscape::SVG::PathString

Completed in 14 milliseconds