Shapeworks Studio  2.1
Shape analysis software suite
List of all members | Public Types | Public Member Functions | Protected Attributes
Eigen::TranspositionsWrapper< _IndicesType > Class Template Reference
+ Inheritance diagram for Eigen::TranspositionsWrapper< _IndicesType >:
+ Collaboration diagram for Eigen::TranspositionsWrapper< _IndicesType >:

Public Types

typedef TranspositionsBase< TranspositionsWrapperBase
 
typedef Traits::IndicesType IndicesType
 
typedef IndicesType::Scalar Index
 
- Public Types inherited from Eigen::TranspositionsBase< TranspositionsWrapper< _IndicesType > >
typedef Traits::IndicesType IndicesType
 
typedef IndicesType::Scalar Index
 

Public Member Functions

 TranspositionsWrapper (IndicesType &a_indices)
 
template<typename OtherDerived >
TranspositionsWrapperoperator= (const TranspositionsBase< OtherDerived > &other)
 
TranspositionsWrapperoperator= (const TranspositionsWrapper &other)
 
const IndicesType & indices () const
 
IndicesType & indices ()
 
- Public Member Functions inherited from Eigen::TranspositionsBase< TranspositionsWrapper< _IndicesType > >
TranspositionsWrapper< _IndicesType > & derived ()
 
const TranspositionsWrapper< _IndicesType > & derived () const
 
TranspositionsWrapper< _IndicesType > & operator= (const TranspositionsBase< OtherDerived > &other)
 
TranspositionsWrapper< _IndicesType > & operator= (const TranspositionsBase &other)
 
Index size () const
 
const Index & coeff (Index i) const
 
Index & coeffRef (Index i)
 
const Index & operator() (Index i) const
 
Index & operator() (Index i)
 
const Index & operator[] (Index i) const
 
Index & operator[] (Index i)
 
const IndicesType & indices () const
 
IndicesType & indices ()
 
void resize (int newSize)
 
void setIdentity ()
 
Transpose< TranspositionsBaseinverse () const
 
Transpose< TranspositionsBasetranspose () const
 

Protected Attributes

const IndicesType::Nested m_indices
 

Detailed Description

template<typename _IndicesType>
class Eigen::TranspositionsWrapper< _IndicesType >

Definition at line 462 of file PermutationMatrix.h.

Member Function Documentation

template<typename _IndicesType >
const IndicesType& Eigen::TranspositionsWrapper< _IndicesType >::indices ( ) const
inline

const version of indices().

Definition at line 317 of file Transpositions.h.

317 { return m_indices; }
template<typename _IndicesType >
IndicesType& Eigen::TranspositionsWrapper< _IndicesType >::indices ( )
inline
Returns
a reference to the stored array representing the transpositions.

Definition at line 320 of file Transpositions.h.

320 { return m_indices; }
template<typename _IndicesType >
template<typename OtherDerived >
TranspositionsWrapper& Eigen::TranspositionsWrapper< _IndicesType >::operator= ( const TranspositionsBase< OtherDerived > &  other)
inline

Copies the other transpositions into *this

Definition at line 300 of file Transpositions.h.

301  {
302  return Base::operator=(other);
303  }
Derived & operator=(const TranspositionsBase< OtherDerived > &other)
template<typename _IndicesType >
TranspositionsWrapper& Eigen::TranspositionsWrapper< _IndicesType >::operator= ( const TranspositionsWrapper< _IndicesType > &  other)
inline

This is a special case of the templated operator=. Its purpose is to prevent a default operator= from hiding the templated operator=.

Definition at line 309 of file Transpositions.h.

310  {
311  m_indices = other.m_indices;
312  return *this;
313  }

The documentation for this class was generated from the following files: