void PathArcAdd ( double *  center,
double  angle 
)

Description:
PathArcAdd adds an arc segment to the path.
Parameters:
center An array of the center position of the arc (in UserUnits for each Axis).
angle The relative angle of the arc. Positive values specify counterclockwise motion and negative values specify clockwise motion.
Sample Code:
  double[2] center = {1000.0, 0.0);
  multiAxis->PathArcAdd(center, 360);  // do a full circle, counterclockwise
Notes:
Two dimesional paths only.
See also:
PathArcAdd
Examples:
pathMotion.cpp.