Name
RelCurveTo -- add curve to path (V5.0)
Synopsis
RelCurveTo(id, dx1, dy1, dx2, dy2, dx3, dy3)
Function
This command does the same as CurveTo() except that the coordinates are delta values instead of absolute positions. The delta coordinates are all interpreted as relative offsets to the path's current point.

Inputs
id
identifier of path to add curve to
dx1
delta x coordinate of control point #1
dy1
delta y coordinate of control point #1
dx2
delta x coordinate of control point #2
dy2
delta y coordinate of control point #2
dx3
delta x coordinate of curve destination point
dy3
delta y coordinate of curve destination point

Show TOC