Searched defs:lineTo (Results 1 - 6 of 6) sorted by relevance
/inkscape/src/2geom/ |
H A D | cairo-path-sink.cpp | 48 void CairoPathSink::lineTo(Point const &p) function in class:Geom::CairoPathSink
|
H A D | path-sink.h | 62 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 D | svg-path-writer.cpp | 69 void SVGPathWriter::lineTo(Point const &p) function in class:Geom::SVGPathWriter
|
/inkscape/share/extensions/ink2canvas/ |
H A D | canvas.py | 137 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 D | drawing-context.h | 59 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 D | path-string.h | 78 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