Searched refs:KnotVectorType (Results 1 – 4 of 4) sorted by relevance
/external/eigen/unsupported/Eigen/src/Splines/ |
D | SplineFitting.h | 40 template <typename KnotVectorType> 41 void KnotAveraging(const KnotVectorType& parameters, DenseIndex degree, KnotVectorType& knots) in KnotAveraging() 48 knots.segment(0,degree+1) = KnotVectorType::Zero(degree+1); in KnotAveraging() 49 knots.segment(knots.size()-degree-1,degree+1) = KnotVectorType::Ones(degree+1); in KnotAveraging() 61 template <typename PointArrayType, typename KnotVectorType> 62 void ChordLengths(const PointArrayType& pts, KnotVectorType& chord_lengths) in ChordLengths() 64 typedef typename KnotVectorType::Scalar Scalar; in ChordLengths() 88 typedef typename SplineType::KnotVectorType KnotVectorType; typedef 111 …Type Interpolate(const PointArrayType& pts, DenseIndex degree, const KnotVectorType& knot_paramete… 116 …pe>::Interpolate(const PointArrayType& pts, DenseIndex degree, const KnotVectorType& knot_paramete… in Interpolate() [all …]
|
D | Spline.h | 46 typedef typename SplineTraits<Spline>::KnotVectorType KnotVectorType; typedef 88 const KnotVectorType& knots() const { return m_knots; } in knots() 190 …<Spline>::Scalar u, DenseIndex degree, const typename SplineTraits<Spline>::KnotVectorType& knots); 204 static BasisVectorType BasisFunctions(Scalar u, DenseIndex degree, const KnotVectorType& knots); 208 KnotVectorType m_knots; /*!< Knot vector. */ 216 const typename SplineTraits< Spline<_Scalar, _Dim, _Degree> >::KnotVectorType& knots) in Span() 229 const typename Spline<_Scalar, _Dim, _Degree>::KnotVectorType& knots) in BasisFunctions() 236 const KnotVectorType& U = knots; in BasisFunctions() 241 …VectorBlock<BasisVectorType,Degree>(left,1,p) = u - VectorBlock<const KnotVectorType,Degree>(U,i+1… in BasisFunctions() 242 …VectorBlock<BasisVectorType,Degree>(right,1,p) = VectorBlock<const KnotVectorType,Degree>(U,i+1,p)… in BasisFunctions() [all …]
|
D | SplineFwd.h | 48 typedef Array<Scalar,1,Dynamic> KnotVectorType;
|
/external/eigen/unsupported/test/ |
D | splines.cpp | 204 typedef Spline2d::KnotVectorType KnotVectorType; in check_global_interpolation2d() typedef 209 KnotVectorType chord_lengths; // knot parameters in check_global_interpolation2d()
|