HomeSort by relevance Sort by last modified time
    Searched refs:KnotVectorType (Results 1 - 4 of 4) sorted by null

  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 40 template <typename KnotVectorType>
41 void KnotAveraging(const KnotVectorType& parameters, DenseIndex degree, KnotVectorType& knots)
43 typedef typename KnotVectorType::Scalar Scalar;
50 knots.segment(0,degree+1) = KnotVectorType::Zero(degree+1);
51 knots.segment(knots.size()-degree-1,degree+1) = KnotVectorType::Ones(degree+1);
63 template <typename PointArrayType, typename KnotVectorType>
64 void ChordLengths(const PointArrayType& pts, KnotVectorType& chord_lengths)
66 typedef typename KnotVectorType::Scalar Scalar;
90 typedef typename SplineType::KnotVectorType KnotVectorType
    [all...]
Spline.h 46 typedef typename SplineTraits<Spline>::KnotVectorType KnotVectorType;
73 const KnotVectorType& knots() const { return m_knots; }
175 static DenseIndex Span(typename SplineTraits<Spline>::Scalar u, DenseIndex degree, const typename SplineTraits<Spline>::KnotVectorType& knots);
189 static BasisVectorType BasisFunctions(Scalar u, DenseIndex degree, const KnotVectorType& knots);
193 KnotVectorType m_knots; /*!< Knot vector. */
201 const typename SplineTraits< Spline<_Scalar, _Dim, _Degree> >::KnotVectorType& knots)
214 const typename Spline<_Scalar, _Dim, _Degree>::KnotVectorType& knots)
221 const KnotVectorType& U = knots;
226 VectorBlock<BasisVectorType,Degree>(left,1,p) = u - VectorBlock<const KnotVectorType,Degree>(U,i+1-p,p).reverse()
    [all...]
SplineFwd.h 48 typedef Array<Scalar,1,Dynamic> KnotVectorType;
  /external/eigen/unsupported/test/
splines.cpp 200 typedef Spline2d::KnotVectorType KnotVectorType;
205 KnotVectorType chord_lengths; // knot parameters

Completed in 1263 milliseconds