core / com.acmerobotics.roadrunner.path.heading

Package com.acmerobotics.roadrunner.path.heading

A set of interpolators that describe how the robot's heading changes along a path.

Types

ConstantInterpolator

class ConstantInterpolator : HeadingInterpolator

Constant heading interpolator used for arbitrary holonomic translations.

HeadingInterpolator

abstract class HeadingInterpolator

Interpolator for specifying the heading for holonomic paths.

LinearInterpolator

class LinearInterpolator : HeadingInterpolator

Linear heading interpolator for time-optimal transitions between poses.

SplineInterpolator

class SplineInterpolator : HeadingInterpolator

Spline heading interpolator for transitioning smoothly between headings without violating continuity (and hence allowing for integration into longer profiles).

TangentInterpolator

class TangentInterpolator : HeadingInterpolator

Tangent (system) interpolator for tank/differential and other nonholonomic drives.

WiggleInterpolator

class WiggleInterpolator : HeadingInterpolator

Heading interpolator that wraps another interpolator and adds sinusoidal oscillations ("wiggles") while preserving continuity. More specifically, the wiggle function is composed of a sine wave with a quintic spline on either end.