Skip to content
Snippets Groups Projects
Commit e33a128f authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

Rotation<2>: export ctype and EmbeddedTangentVector

[[Imported from SVN: r5787]]
parent 89e1a695
No related branches found
No related tags found
No related merge requests found
...@@ -20,14 +20,23 @@ class Rotation ...@@ -20,14 +20,23 @@ class Rotation
}; };
/** \brief Specialization for dim==2 /** \brief Specialization for dim==2
\tparam T The type used for coordinates
*/ */
template <class T> template <class T>
class Rotation<2,T> class Rotation<2,T>
{ {
public: public:
/** \brief The type used for coordinates */
typedef T ctype;
/** \brief Member of the corresponding Lie algebra. This really is a skew-symmetric matrix */ /** \brief Member of the corresponding Lie algebra. This really is a skew-symmetric matrix */
typedef Dune::FieldVector<T,1> TangentVector; typedef Dune::FieldVector<T,1> TangentVector;
/** \brief Member of the corresponding Lie algebra. This really is a skew-symmetric matrix
This vector is not really embedded in anything. I have to make my notation more consistent! */
typedef Dune::FieldVector<T,1> EmbeddedTangentVector;
/** \brief Default constructor, create the identity rotation */ /** \brief Default constructor, create the identity rotation */
Rotation() Rotation()
: angle_(0) : angle_(0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment