10#ifndef EIGEN_SPLINES_FWD_H
11#define EIGEN_SPLINES_FWD_H
14#include "./InternalHeaderCheck.h"
15#include "../../../../Eigen/Core"
18template <
typename Scalar,
int Dim,
int Degree = Dynamic>
21template <
typename SplineType,
int DerivativeOrder = Dynamic>
22struct SplineTraits {};
28template <
typename Scalar_,
int Dim_,
int Degree_>
73template <
typename Scalar_,
int Dim_,
int Degree_,
int _DerivativeOrder>
74struct SplineTraits<
Spline<Scalar_, Dim_, Degree_>, _DerivativeOrder>
75 :
public SplineTraits<Spline<Scalar_, Dim_, Degree_> > {
83 : _DerivativeOrder + 1
A class representing multi-dimensional spline curves.
Definition Spline.h:37
Namespace containing all symbols from the Eigen library.
Spline< float, 3 > Spline3f
3D float B-spline with dynamic degree.
Definition SplineFwd.h:100
Spline< float, 2 > Spline2f
2D float B-spline with dynamic degree.
Definition SplineFwd.h:97
Spline< double, 2 > Spline2d
2D double B-spline with dynamic degree.
Definition SplineFwd.h:103
Spline< double, 3 > Spline3d
3D double B-spline with dynamic degree.
Definition SplineFwd.h:106
Array< Scalar, Dynamic, Dynamic, RowMajor, NumOfDerivativesAtCompileTime, OrderAtCompileTime > BasisDerivativeType
The data type used to store the values of the basis function derivatives.
Definition SplineFwd.h:48
Array< Scalar, 1, Dynamic > ParameterVectorType
The data type used to store parameter vectors.
Definition SplineFwd.h:61
@ Degree
Definition SplineFwd.h:32
Array< Scalar, Dimension, 1 > PointType
The point type the spline is representing.
Definition SplineFwd.h:55
Array< Scalar, 1, OrderAtCompileTime > BasisVectorType
The data type used to store non-zero basis functions.
Definition SplineFwd.h:44
Array< Scalar, Dimension, Dynamic > ControlPointVectorType
The data type representing the spline's control points.
Definition SplineFwd.h:64
@ DerivativeMemoryLayout
Definition SplineFwd.h:41
@ NumOfDerivativesAtCompileTime
Definition SplineFwd.h:38
Array< Scalar, Dimension, Dynamic, DerivativeMemoryLayout, Dimension, NumOfDerivativesAtCompileTime > DerivativeType
The data type used to store the spline's derivative values.
Definition SplineFwd.h:52
Scalar_ Scalar
Definition SplineFwd.h:30
@ Dimension
Definition SplineFwd.h:31
@ OrderAtCompileTime
Definition SplineFwd.h:35
Array< Scalar, 1, Dynamic > KnotVectorType
The data type used to store knot vectors.
Definition SplineFwd.h:58
@ DerivativeMemoryLayout
Definition SplineFwd.h:86
@ OrderAtCompileTime
Definition SplineFwd.h:77
@ NumOfDerivativesAtCompileTime
Definition SplineFwd.h:80
Array< Scalar_, Dynamic, Dynamic, RowMajor, NumOfDerivativesAtCompileTime, OrderAtCompileTime > BasisDerivativeType
The data type used to store the values of the basis function derivatives.
Definition SplineFwd.h:90
Array< Scalar_, Dim_, Dynamic, DerivativeMemoryLayout, Dim_, NumOfDerivativesAtCompileTime > DerivativeType
The data type used to store the spline's derivative values.
Definition SplineFwd.h:93