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 (T xx, T xy, T yx, T yy)
 
constexpr Rot2 (Vec2< T > ix, Vec2< T > iy)
 
Rot2 rotate (Rot2 const &r) const
 
constexpr Vec2< Trotate (Vec2< T > v) const
 
constexpr Rot2 rotateBack (Rot2 const &r) const
 
constexpr Vec2< TrotateBack (Vec2< T > v) 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 ( )
inlineconstexpr

Definition at line 231 of file ExtVec.h.

231 : axis{{(Vec){T(1), 0}}, {(Vec){0, T(1)}}} {}

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

◆ Rot2() [2/3]

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

Definition at line 233 of file ExtVec.h.

233 : axis{ix, iy} {}

◆ Rot2() [3/3]

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

Definition at line 235 of file ExtVec.h.

235 : Rot2((Vec){xx, xy}, (Vec){yx, yy}) {}

Member Function Documentation

◆ rotate() [1/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  }

◆ rotate() [2/2]

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

Definition at line 243 of file ExtVec.h.

243 { return transpose().rotateBack(v); }

◆ rotateBack() [1/2]

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

Definition at line 253 of file ExtVec.h.

253 { return Rot2(rotateBack(r.axis[0]), rotateBack(r.axis[1])); }

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

◆ rotateBack() [2/2]

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

Definition at line 246 of file ExtVec.h.

246 { return v[0] * axis[0] + v[1] * axis[1]; }

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

◆ transpose()

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

Definition at line 237 of file ExtVec.h.

237 { return Rot2(axis[0][0], axis[1][0], axis[0][1], axis[1][1]); }

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

◆ x()

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

◆ y()

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

Member Data Documentation

◆ axis

template<typename T>
Vec2<T> Rot2< T >::axis[2]
Rot2::Rot2
constexpr Rot2()
Definition: ExtVec.h:231
Rot2::Vec
Vec2< T > Vec
Definition: ExtVec.h:228
findQualityFiles.v
v
Definition: findQualityFiles.py:179
Rot2::transpose
constexpr Rot2 transpose() const
Definition: ExtVec.h:237
Rot2::axis
Vec2< T > axis[2]
Definition: ExtVec.h:229
geometryCSVtoXML.yy
yy
Definition: geometryCSVtoXML.py:19
alignCSCRings.r
r
Definition: alignCSCRings.py:93
T
long double T
Definition: Basic3DVectorLD.h:48
Rot2
Definition: ExtVec.h:227
Rot2::rotateBack
constexpr Vec2< T > rotateBack(Vec2< T > v) const
Definition: ExtVec.h:246
xy
auto xy(V v) -> Vec2< typename std::remove_reference< decltype(v[0])>::type >
Definition: ExtVec.h:69
geometryCSVtoXML.xx
xx
Definition: geometryCSVtoXML.py:19