Paint.RelMoveTo (gb.qt4)
Static Sub RelMoveTo ( X As Float, Y As Float )
Begin a new sub-path. After this call the current point will be offset by (
X,
Y).
-
X : the X offset.
-
Y : the Y offset.
Given a current point of (X0, Y0),
Paint.RelMoveTo(X, Y)
is logically equivalent to
Paint.MoveTo(X0 + X, Y0 + Y)
.