Description Usage Arguments Details Author(s)
Begin a new sub-path. After this call the current point will offset
by (x, y).
1 | cairoRelMoveTo(cr, dx, dy)
|
|
[ |
|
[numeric] the X offset |
|
[numeric] the Y offset |
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).
It is an error to call this function with no current point. Doing
so will cause cr to shutdown with a status of
CAIRO_STATUS_NO_CURRENT_POINT.
Derived by RGtkGen from GTK+ documentation
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.