Parametric Paths

With a clear coordinate system in place, paths can be specified at the global level (i.e., not 'go forward 60 inches and turn 45 degrees right'). Complex, abstract paths can now be devised without having to explicitly consider the robot velocities necessary to execute them.

Lines

To describe these paths, we will use parametric curves. For our purposes, these curves are composed of two single variable functions x(t)x(t) and y(t)y(t) that together determine the path shape. Parametric lines take the form x(t)=x0+vxtx(t) = x_0 + v_x \, t, y(t)=y0+vyty(t) = y_0 + v_y \, t. This can be represented more conveniently in the notation of vectors: r(t)=x0+vt\vec{r}(t) = \vec{x_0} + \vec{v} \, t (there is an intimate relationship between parametrics and vectors; they're often called vector-valued functions). Lines and other parametric functions are often defined over the whole tt domains; however, for the purposes of constructing finite paths, the domain is constrained to a closed interval. Road Runner assumes parametric curves are only defined on [0,1][0, 1].

To create a LineSegment, simply provide a start vector and an end vector.

LineSegment line = new LineSegment(
    new Vector2d(0, 0),
    new Vector2d(50, 100)
);
Vector2d position = line.get(0.5);

Splines

In addition to lines, there are built-in quintic splines. Unlike lines, splines can assume a variety of curved shapes. The shape of the spline is controlled by waypoints on either end that specify the desired position, first derivative, and second derivative.

The quintic spline above was generated with the following code:

QuinticSpline spline = new QuinticSpline(
    new QuinticSpline.Waypoint(0, 0, 20, 20),
    new QuinticSpline.Waypoint(30, 15, -30, 10)
);

As we'll see soon, there are more convenient methods of customizing splines without specifying derivatives directly.

Heading Interpolation

For tank drives, specifying the (x,y)(x, y) position of the robot at every point along the path is sufficient to determine the full pose. This so-called nonholonomic constraint mandates that the robot most be oriented tangent to the path. However, for holonomic drives, the heading is fully independent of the translational velocity, and this enables more complex manuevers. For instance, a holonomic drive may traverse a spline while rotating or maintaining a constant heading (relative to the global frame).

Road Runner was designed with first-class holonomic support and provides a number of HeadingInterpolators. The default (and only option for nonholonomic drives) interpolator is TangentInterpolator. The next most commonly used are ConstantInterpolator and LinearInterpolator for strafing and efficient pose-to-pose movements, respectively.

The combination of a ParametricCurve and a HeadingInterpolator is a PathSegment. A sequence of PathSegments can be strung together into a single continuous Path.

Here's an example demonstrating the construction of a Path from lower-level abstractions:

LineSegment line = new LineSegment(
    new Vector2d(0, 0),
    new Vector2d(56, 24)
);
LinearInterpolator interp = new LinearInterpolator(
    Math.toRadians(30), Math.toRadians(45)
);
PathSegment segment = new PathSegment(line, interp);
Path path = new Path(segment);

PathBuilder

This process of creating Paths is a bit tedious, and verbose---there is often duplicate information required to connect the segments. To make things easier, the PathBuilder class provides a more streamlined interface for Path construction.

Path path = new PathBuilder(new Pose2d(0, 0, 0))
    .splineTo(new Pose2d(15, 15, 0))
    .lineTo(new Vector2d(30, 15))
    .build();

Last updated