cairo-paths {RGtk2} | R Documentation |
Creating paths and manipulating path data
cairoCopyPath(cr)
cairoCopyPathFlat(cr)
cairoAppendPath(cr, path)
cairoHasCurrentPoint(cr)
cairoGetCurrentPoint(cr, x, y)
cairoNewPath(cr)
cairoNewSubPath(cr)
cairoClosePath(cr)
cairoArc(cr, xc, yc, radius, angle1, angle2)
cairoArcNegative(cr, xc, yc, radius, angle1, angle2)
cairoCurveTo(cr, x1, y1, x2, y2, x3, y3)
cairoLineTo(cr, x, y)
cairoMoveTo(cr, x, y)
cairoRectangle(cr, x, y, width, height)
cairoGlyphPath(cr, glyphs)
cairoTextPath(cr, utf8)
cairoRelCurveTo(cr, dx1, dy1, dx2, dy2, dx3, dy3)
cairoRelLineTo(cr, dx, dy)
cairoRelMoveTo(cr, dx, dy)
cairoPathExtents(cr)
Paths are the most basic drawing tools and are primarily used to implicitly generate simple masks.
CairoPathDataType
CairoPathData
is used to describe the type of one portion
of a path when represented as a CairoPath
.
See CairoPathData
for details.
move-to
A move-to operation
line-to
A line-to operation
curve-to
A curve-to operation
close-path
A close-path operation
Derived by RGtkGen from GTK+ documentation
http://www.cairographics.org/manual/cairo-paths.html