cairoRelMoveTo {RGtk2}R Documentation

cairoRelMoveTo

Description

If the current subpath is not empty, begin a new subpath. After this call the current point will offset by (x, y).

Usage

cairoRelMoveTo(cr, dx, dy)

Arguments

cr [Cairo] a cairo context
dx [numeric] the X offset
dy [numeric] the Y offset

Details

Given a current point of (x, y), cairo_rel_move_to(cr, dx, dy) is logically equivalent to cairo_move_to (cr, x + dx, y + dy).

Author(s)

Derived by RGtkGen from GTK+ documentation


[Package RGtk2 version 2.8.5 Index]