From 8473a77f2fc3461a4d93de08cda4a50a62ca0abe Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sat, 13 Sep 2008 18:51:51 +0000 Subject: move CommaInitializer out of MatrixBase and documment it (because of .finished()) --- Eigen/src/Core/CommaInitializer.h | 44 +++++++++++++++++++++++++-------------- 1 file changed, 28 insertions(+), 16 deletions(-) (limited to 'Eigen/src/Core/CommaInitializer.h') diff --git a/Eigen/src/Core/CommaInitializer.h b/Eigen/src/Core/CommaInitializer.h index 282510550..4aa1fcd0a 100644 --- a/Eigen/src/Core/CommaInitializer.h +++ b/Eigen/src/Core/CommaInitializer.h @@ -26,25 +26,34 @@ #ifndef EIGEN_COMMAINITIALIZER_H #define EIGEN_COMMAINITIALIZER_H -/** \internal - * Helper class to define the MatrixBase::operator<< +/** \class CommaInitializer + * + * \brief Helper class used by the comma initializer operator + * + * This class is internally used to implement the comma initializer feature. It is + * the return type of MatrixBase::operator<<, and most of the time this is the only + * way it is used. + * + * \sa \ref MatrixBaseCommaInitRef "MatrixBase::operator<<", CommaInitializer::finished() */ -template -struct MatrixBase::CommaInitializer +template +struct CommaInitializer { - inline CommaInitializer(Derived& mat, const Scalar& s) + typedef typename ei_traits::Scalar Scalar; + inline CommaInitializer(MatrixType& mat, const Scalar& s) : m_matrix(mat), m_row(0), m_col(1), m_currentBlockRows(1) { m_matrix.coeffRef(0,0) = s; } template - inline CommaInitializer(Derived& mat, const MatrixBase& other) + inline CommaInitializer(MatrixType& mat, const MatrixBase& other) : m_matrix(mat), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows()) { m_matrix.block(0, 0, other.rows(), other.cols()) = other; } + /* inserts a scalar value in the target matrix */ CommaInitializer& operator,(const Scalar& s) { if (m_col==m_matrix.cols()) @@ -62,6 +71,7 @@ struct MatrixBase::CommaInitializer return *this; } + /* inserts a matrix expression in the target matrix */ template CommaInitializer& operator,(const MatrixBase& other) { @@ -77,8 +87,8 @@ struct MatrixBase::CommaInitializer && "Too many coefficients passed to comma initializer (operator<<)"); ei_assert(m_currentBlockRows==other.rows()); if (OtherDerived::SizeAtCompileTime != Dynamic) - m_matrix.block + m_matrix.template block (m_row, m_col) = other; else m_matrix.block(m_row, m_col, other.rows(), other.cols()) = other; @@ -100,11 +110,11 @@ struct MatrixBase::CommaInitializer * quaternion.fromRotationMatrix((Matrix3f() << axis0, axis1, axis2).finished()); * \endcode */ - inline Derived& finished() { return m_matrix; } + inline MatrixType& finished() { return m_matrix; } - Derived& m_matrix; - int m_row; // current row id - int m_col; // current col id + MatrixType& m_matrix; // target matrix + int m_row; // current row id + int m_col; // current col id int m_currentBlockRows; // current block height }; @@ -118,20 +128,22 @@ struct MatrixBase::CommaInitializer * * Example: \include MatrixBase_set.cpp * Output: \verbinclude MatrixBase_set.out + * + * \sa CommaInitializer::finished(), class CommaInitializer */ template -inline typename MatrixBase::CommaInitializer MatrixBase::operator<< (const Scalar& s) +inline CommaInitializer MatrixBase::operator<< (const Scalar& s) { - return CommaInitializer(*static_cast(this), s); + return CommaInitializer(*static_cast(this), s); } /** \sa operator<<(const Scalar&) */ template template -inline typename MatrixBase::CommaInitializer +inline CommaInitializer MatrixBase::operator<<(const MatrixBase& other) { - return CommaInitializer(*static_cast(this), other); + return CommaInitializer(*static_cast(this), other); } #endif // EIGEN_COMMAINITIALIZER_H -- cgit v1.2.3