OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_ctrls
(Results
1 - 1
of
1
) sorted by null
/external/eigen/unsupported/Eigen/src/Splines/
Spline.h
66
,
m_ctrls
(ControlPointVectorType::Zero(Dimension,(Degree==Dynamic ? 1 : Degree+1)))
81
Spline(const OtherVectorType& knots, const OtherArrayType& ctrls) : m_knots(knots),
m_ctrls
(ctrls) {}
89
m_knots(spline.knots()),
m_ctrls
(spline.ctrls()) {}
99
const ControlPointVectorType& ctrls() const { return
m_ctrls
; }
222
ControlPointVectorType
m_ctrls
; /*!< Control points. */
member in class:Eigen::Spline
285
return m_knots.size() -
m_ctrls
.cols() - 1;
Completed in 1021 milliseconds