Home > comp > gb.cairo > cairo > relmoveto 
 en fr de es it nl pl pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
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).

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.