CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Public Attributes
Rot2< T > Struct Template Reference

#include <ExtVec.h>

Public Types

typedef Vec2< TVec
 

Public Member Functions

constexpr Rot2 ()
 
constexpr Rot2 (Vec2< T > ix, Vec2< T > iy)
 
constexpr Rot2 (T xx, T xy, T yx, T yy)
 
constexpr Vec2< Trotate (Vec2< T > v) const
 
Rot2 rotate (Rot2 const &r) const
 
constexpr Vec2< TrotateBack (Vec2< T > v) const
 
constexpr Rot2 rotateBack (Rot2 const &r) const
 
constexpr Rot2 transpose () const
 
constexpr Vec2< Tx () const
 
constexpr Vec2< Ty () const
 

Public Attributes

Vec2< Taxis [2]
 

Detailed Description

template<typename T>
struct Rot2< T >

Definition at line 227 of file ExtVec.h.

Member Typedef Documentation

◆ Vec

template<typename T>
typedef Vec2<T> Rot2< T >::Vec

Definition at line 228 of file ExtVec.h.

Constructor & Destructor Documentation

◆ Rot2() [1/3]

template<typename T>
constexpr Rot2< T >::Rot2 ( )
inline

Definition at line 231 of file ExtVec.h.

Referenced by Rot2< Scalar >::rotate(), Rot2< Scalar >::rotateBack(), and Rot2< Scalar >::transpose().

231 : axis{{(Vec){T(1), 0}}, {(Vec){0, T(1)}}} {}
Vec2< T > Vec
Definition: ExtVec.h:228
Vec2< T > axis[2]
Definition: ExtVec.h:229
long double T

◆ Rot2() [2/3]

template<typename T>
constexpr Rot2< T >::Rot2 ( Vec2< T ix,
Vec2< T iy 
)
inline

Definition at line 233 of file ExtVec.h.

233 : axis{ix, iy} {}
Vec2< T > axis[2]
Definition: ExtVec.h:229

◆ Rot2() [3/3]

template<typename T>
constexpr Rot2< T >::Rot2 ( T  xx,
T  xy,
T  yx,
T  yy 
)
inline

Definition at line 235 of file ExtVec.h.

235 : Rot2((Vec){xx, xy}, (Vec){yx, yy}) {}
Vec2< T > Vec
Definition: ExtVec.h:228
auto xy(V v) -> Vec2< typename std::remove_reference< decltype(v[0])>::type >
Definition: ExtVec.h:69
constexpr Rot2()
Definition: ExtVec.h:231

Member Function Documentation

◆ rotate() [1/2]

template<typename T>
constexpr Vec2<T> Rot2< T >::rotate ( Vec2< T v) const
inline

Definition at line 243 of file ExtVec.h.

243 { return transpose().rotateBack(v); }
constexpr Rot2 transpose() const
Definition: ExtVec.h:237
constexpr Vec2< T > rotateBack(Vec2< T > v) const
Definition: ExtVec.h:246

◆ rotate() [2/2]

template<typename T>
Rot2 Rot2< T >::rotate ( Rot2< T > const &  r) const
inline

Definition at line 248 of file ExtVec.h.

248  {
249  Rot2 tr = transpose();
250  return Rot2(tr.rotateBack(r.axis[0]), tr.rotateBack(r.axis[1]));
251  }
constexpr Rot2()
Definition: ExtVec.h:231
constexpr Rot2 transpose() const
Definition: ExtVec.h:237
Definition: ExtVec.h:227
constexpr Vec2< T > rotateBack(Vec2< T > v) const
Definition: ExtVec.h:246

◆ rotateBack() [1/2]

template<typename T>
constexpr Vec2<T> Rot2< T >::rotateBack ( Vec2< T v) const
inline

Definition at line 246 of file ExtVec.h.

Referenced by mathSSE::Rot2< Scalar >::rotate(), Rot2< Scalar >::rotate(), and Rot2< Scalar >::rotateBack().

246 { return v[0] * axis[0] + v[1] * axis[1]; }
Vec2< T > axis[2]
Definition: ExtVec.h:229

◆ rotateBack() [2/2]

template<typename T>
constexpr Rot2 Rot2< T >::rotateBack ( Rot2< T > const &  r) const
inline

Definition at line 253 of file ExtVec.h.

Referenced by Rot2< Scalar >::rotateBack().

253 { return Rot2(rotateBack(r.axis[0]), rotateBack(r.axis[1])); }
constexpr Rot2()
Definition: ExtVec.h:231
constexpr Vec2< T > rotateBack(Vec2< T > v) const
Definition: ExtVec.h:246

◆ transpose()

template<typename T>
constexpr Rot2 Rot2< T >::transpose ( ) const
inline

Definition at line 237 of file ExtVec.h.

Referenced by Rot2< Scalar >::rotate().

237 { return Rot2(axis[0][0], axis[1][0], axis[0][1], axis[1][1]); }
constexpr Rot2()
Definition: ExtVec.h:231
Vec2< T > axis[2]
Definition: ExtVec.h:229

◆ x()

template<typename T>
constexpr Vec2<T> Rot2< T >::x ( ) const
inline

◆ y()

template<typename T>
constexpr Vec2<T> Rot2< T >::y ( ) const
inline

Member Data Documentation

◆ axis

template<typename T>
Vec2<T> Rot2< T >::axis[2]