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.