WPILibC++ 2023.4.3-108-ge5452e3
frc::QuinticHermiteSpline Class Reference

Represents a hermite spline of degree 5. More...

#include <frc/spline/QuinticHermiteSpline.h>

Inheritance diagram for frc::QuinticHermiteSpline:
frc::Spline< 5 >

Public Member Functions

 QuinticHermiteSpline (wpi::array< double, 3 > xInitialControlVector, wpi::array< double, 3 > xFinalControlVector, wpi::array< double, 3 > yInitialControlVector, wpi::array< double, 3 > yFinalControlVector)
 Constructs a quintic hermite spline with the specified control vectors. More...
 
- Public Member Functions inherited from frc::Spline< 5 >
 Spline ()=default
 
 Spline (const Spline &)=default
 
 Spline (Spline &&)=default
 
Splineoperator= (const Spline &)=default
 
Splineoperator= (Spline &&)=default
 
virtual ~Spline ()=default
 
PoseWithCurvature GetPoint (double t) const
 Gets the pose and curvature at some point t on the spline. More...
 

Protected Member Functions

Matrixd< 6, 6 > Coefficients () const override
 Returns the coefficients matrix. More...
 
virtual Matrixd< 6, Degree+1 > Coefficients () const=0
 Returns the coefficients of the spline. More...
 

Additional Inherited Members

- Public Types inherited from frc::Spline< 5 >
using PoseWithCurvature = std::pair< Pose2d, units::curvature_t >
 
- Static Protected Member Functions inherited from frc::Spline< 5 >
static Eigen::Vector2d ToVector (const Translation2d &translation)
 Converts a Translation2d into a vector that is compatible with Eigen. More...
 
static Translation2d FromVector (const Eigen::Vector2d &vector)
 Converts an Eigen vector into a Translation2d. More...
 

Detailed Description

Represents a hermite spline of degree 5.

Constructor & Destructor Documentation

◆ QuinticHermiteSpline()

frc::QuinticHermiteSpline::QuinticHermiteSpline ( wpi::array< double, 3 >  xInitialControlVector,
wpi::array< double, 3 >  xFinalControlVector,
wpi::array< double, 3 >  yInitialControlVector,
wpi::array< double, 3 >  yFinalControlVector 
)

Constructs a quintic hermite spline with the specified control vectors.

Each control vector contains into about the location of the point, its first derivative, and its second derivative.

Parameters
xInitialControlVectorThe control vector for the initial point in the x dimension.
xFinalControlVectorThe control vector for the final point in the x dimension.
yInitialControlVectorThe control vector for the initial point in the y dimension.
yFinalControlVectorThe control vector for the final point in the y dimension.

Member Function Documentation

◆ Coefficients()

Matrixd< 6, 6 > frc::QuinticHermiteSpline::Coefficients ( ) const
inlineoverrideprotectedvirtual

Returns the coefficients matrix.

Returns
The coefficients matrix.

Implements frc::Spline< 5 >.


The documentation for this class was generated from the following file: