OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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)
48
knots.segment(0,degree+1) =
KnotVectorType
::Zero(degree+1);
49
knots.segment(knots.size()-degree-1,degree+1) =
KnotVectorType
::Ones(degree+1);
61
template <typename PointArrayType, typename
KnotVectorType
>
62
void ChordLengths(const PointArrayType& pts,
KnotVectorType
& chord_lengths)
64
typedef typename
KnotVectorType
::Scalar Scalar;
88
typedef typename SplineType::
KnotVectorType
KnotVectorType
;
[
all
...]
Spline.h
46
typedef typename SplineTraits<Spline>::
KnotVectorType
KnotVectorType
;
88
const
KnotVectorType
& knots() const { return m_knots; }
190
static DenseIndex Span(typename SplineTraits<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)
229
const typename Spline<_Scalar, _Dim, _Degree>::
KnotVectorType
& knots)
236
const
KnotVectorType
& U = knots;
241
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
204
typedef Spline2d::
KnotVectorType
KnotVectorType
;
209
KnotVectorType
chord_lengths; // knot parameters
Completed in 361 milliseconds