2.0
3.0
>
comp
>
gb.cairo
>
cairo
>
relmoveto
Previous
Next
Edit
Rename
Undo
Search
Administration
Documentation
Warning! This page is not translated.
See english version
Cairo.RelMoveTo (gb.cairo)
Static
Sub
RelMoveTo
(
DX
As
Float
,
DY
As
Float
)
Begin a new sub-path. After this call the current point will offset by (
DX
,
DY
).
DX
: the X offset.
DY
: the Y offset.
Given a current point of (X, Y),
Cairo.RelMoveTo(DX, DY)
is logically equivalent to
Cairo.MoveTo
(X + DX, Y + DY)
.
It is an error to call this function with no current point.