TR-mbed 1.0
Loading...
Searching...
No Matches
Public Types | Static Public Attributes | Friends | List of all members
Eigen::EulerSystem< _AlphaAxis, _BetaAxis, _GammaAxis > Class Template Reference

Represents a fixed Euler rotation system. More...

#include <EulerSystem.h>

Public Types

enum  {
  AlphaAxisAbs = internal::Abs<AlphaAxis>::value , BetaAxisAbs = internal::Abs<BetaAxis>::value , GammaAxisAbs = internal::Abs<GammaAxis>::value , IsAlphaOpposite = (AlphaAxis < 0) ? 1 : 0 ,
  IsBetaOpposite = (BetaAxis < 0) ? 1 : 0 , IsGammaOpposite = (GammaAxis < 0) ? 1 : 0 , IsOdd = ((AlphaAxisAbs)%3 == (BetaAxisAbs - 1)%3) ? 0 : 1 , IsEven = IsOdd ? 0 : 1 ,
  IsTaitBryan = ((unsigned)AlphaAxisAbs != (unsigned)GammaAxisAbs) ? 1 : 0
}
 

Static Public Attributes

static const int AlphaAxis = _AlphaAxis
 
static const int BetaAxis = _BetaAxis
 
static const int GammaAxis = _GammaAxis
 

Friends

template<typename _Scalar , class _System >
class Eigen::EulerAngles
 
template<typename System , typename Other , int OtherRows, int OtherCols>
struct internal::eulerangles_assign_impl
 

Detailed Description

template<int _AlphaAxis, int _BetaAxis, int _GammaAxis>
class Eigen::EulerSystem< _AlphaAxis, _BetaAxis, _GammaAxis >

Represents a fixed Euler rotation system.

This meta-class goal is to represent the Euler system in compilation time, for EulerAngles.

You can use this class to get two things:

Euler rotation is a set of three rotation on fixed axes. (see EulerAngles) This meta-class store constantly those signed axes. (see EulerAxis)

Types of Euler systems

All and only valid 3 dimension Euler rotation over standard signed axes{+X,+Y,+Z,-X,-Y,-Z} are supported:

Since EulerSystem support both positive and negative directions, you may call this rotation distinction in other names:

Notice all axed combination are valid, and would trigger a static assertion. Same unsigned axes can't be neighbors, e.g. {X,X,Y} is invalid. This yield two and only two classes:

Intrinsic vs extrinsic Euler systems

Only intrinsic Euler systems are supported for simplicity. If you want to use extrinsic Euler systems, just use the equal intrinsic opposite order for axes and angles. I.e axes (A,B,C) becomes (C,B,A), and angles (a,b,c) becomes (c,b,a).

Convenient user typedefs

Convenient typedefs for EulerSystem exist (only for positive axes Euler systems), in a form of EulerSystem{A}{B}{C}, e.g. EulerSystemXYZ.

Additional reading

More information about Euler angles: https://en.wikipedia.org/wiki/Euler_angles

Template Parameters
_AlphaAxisthe first fixed EulerAxis
_BetaAxisthe second fixed EulerAxis
_GammaAxisthe third fixed EulerAxis

Member Enumeration Documentation

◆ anonymous enum

template<int _AlphaAxis, int _BetaAxis, int _GammaAxis>
anonymous enum
Enumerator
AlphaAxisAbs 

the first rotation axis unsigned

BetaAxisAbs 

the second rotation axis unsigned

GammaAxisAbs 

the third rotation axis unsigned

IsAlphaOpposite 

whether alpha axis is negative

IsBetaOpposite 

whether beta axis is negative

IsGammaOpposite 

whether gamma axis is negative

IsOdd 

whether the Euler system is odd

IsEven 

whether the Euler system is even

IsTaitBryan 

whether the Euler system is Tait-Bryan

Friends And Related Symbol Documentation

◆ Eigen::EulerAngles

template<int _AlphaAxis, int _BetaAxis, int _GammaAxis>
template<typename _Scalar , class _System >
friend class Eigen::EulerAngles
friend

◆ internal::eulerangles_assign_impl

template<int _AlphaAxis, int _BetaAxis, int _GammaAxis>
template<typename System , typename Other , int OtherRows, int OtherCols>
friend struct internal::eulerangles_assign_impl
friend

Member Data Documentation

◆ AlphaAxis

template<int _AlphaAxis, int _BetaAxis, int _GammaAxis>
const int Eigen::EulerSystem< _AlphaAxis, _BetaAxis, _GammaAxis >::AlphaAxis = _AlphaAxis
static

The first rotation axis

◆ BetaAxis

template<int _AlphaAxis, int _BetaAxis, int _GammaAxis>
const int Eigen::EulerSystem< _AlphaAxis, _BetaAxis, _GammaAxis >::BetaAxis = _BetaAxis
static

The second rotation axis

◆ GammaAxis

template<int _AlphaAxis, int _BetaAxis, int _GammaAxis>
const int Eigen::EulerSystem< _AlphaAxis, _BetaAxis, _GammaAxis >::GammaAxis = _GammaAxis
static

The third rotation axis


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