2.0
3.0
>
comp
>
gb.cairo
>
cairo
>
relmoveto
Voorgaande
Volgende
Bewerken
Hernoemen
Undo
Search
Administratie
Handleiding
Waarschuwing Deze pagina is niet vertaald.
Zie Engelse versie
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.