void MovePVT ( double *  position,
double *  velocity,
double *  time,
long  pointCount,
long  emptyCount,
bool  retain,
bool  final 
)

Description:
MovePVT fits jerk profile segments through the list of points.
Parameters:
*position Array of positions.
*velocity Array of velocities.
*time Array of times (seconds).
pointCount The number of points.
emptyCount E-stop generated if there aren't at least this many points loaded.
retain Points kept, or not kept.
final If True, this is the final point. If False, more points expected.
Sample Code:
  axis->MovePVT(position, vel,  time, POINTS, -1, false, true);
Examples:
pvtMotion.cpp.