MWAWVec3< T > Class Template Reference

small class which defines a vector with 3 elements More...

#include <libmwaw_internal.hxx>

Classes

struct  PosSizeLt
 internal struct used to create sorted map, sorted by X, Y, Z More...
 

Public Types

typedef std::map< MWAWVec3< T >, T, struct PosSizeLtMap
 map of MWAWVec3 More...
 

Public Member Functions

 MWAWVec3 (T xx=0, T yy=0, T zz=0)
 constructor More...
 
template<class U >
 MWAWVec3 (MWAWVec3< U > const &p)
 generic copy constructor More...
 
x () const
 first element More...
 
y () const
 second element More...
 
z () const
 third element More...
 
operator[] (int c) const
 operator[] More...
 
T & operator[] (int c)
 operator[] More...
 
void set (T xx, T yy, T zz)
 resets the three elements More...
 
void setX (T xx)
 resets the first element More...
 
void setY (T yy)
 resets the second element More...
 
void setZ (T zz)
 resets the third element More...
 
void add (T dx, T dy, T dz)
 increases the actuals values by dx, dy, dz More...
 
MWAWVec3< T > & operator+= (MWAWVec3< T > const &p)
 operator+= More...
 
MWAWVec3< T > & operator-= (MWAWVec3< T > const &p)
 operator-= More...
 
template<class U >
MWAWVec3< T > & operator*= (U scale)
 generic operator*= More...
 
bool operator== (MWAWVec3< T > const &p) const
 comparison== More...
 
bool operator!= (MWAWVec3< T > const &p) const
 comparison!= More...
 
bool operator< (MWAWVec3< T > const &p) const
 comparison<: which first compares x values, then y values then z values. More...
 
int cmp (MWAWVec3< T > const &p) const
 a comparison function: which first compares x values, then y values then z values. More...
 

Protected Attributes

m_val [3]
 the values More...
 

Friends

MWAWVec3< T > operator+ (MWAWVec3< T > const &p1, MWAWVec3< T > const &p2)
 operator+ More...
 
MWAWVec3< T > operator- (MWAWVec3< T > const &p1, MWAWVec3< T > const &p2)
 operator- More...
 
template<class U >
MWAWVec3< T > operator* (U scale, MWAWVec3< T > const &p1)
 generic operator* More...
 
std::ostream & operator<< (std::ostream &o, MWAWVec3< T > const &f)
 operator<<: prints data in form "XxYxZ" More...
 

Detailed Description

template<class T>
class MWAWVec3< T >

small class which defines a vector with 3 elements

Member Typedef Documentation

◆ Map

template<class T>
MWAWVec3< T >::Map

map of MWAWVec3

Constructor & Destructor Documentation

◆ MWAWVec3() [1/2]

template<class T>
MWAWVec3< T >::MWAWVec3 ( xx = 0,
yy = 0,
zz = 0 
)
inlineexplicit

constructor

◆ MWAWVec3() [2/2]

template<class T>
template<class U >
MWAWVec3< T >::MWAWVec3 ( MWAWVec3< U > const &  p)
inlineexplicit

generic copy constructor

Member Function Documentation

◆ add()

template<class T>
void MWAWVec3< T >::add ( dx,
dy,
dz 
)
inline

increases the actuals values by dx, dy, dz

◆ cmp()

template<class T>
int MWAWVec3< T >::cmp ( MWAWVec3< T > const &  p) const
inline

a comparison function: which first compares x values, then y values then z values.

Referenced by MWAWVec3< int >::operator!=(), MWAWVec3< T >::PosSizeLt::operator()(), MWAWVec3< int >::operator<(), and MWAWVec3< int >::operator==().

◆ operator!=()

template<class T>
bool MWAWVec3< T >::operator!= ( MWAWVec3< T > const &  p) const
inline

comparison!=

◆ operator*=()

template<class T>
template<class U >
MWAWVec3<T>& MWAWVec3< T >::operator*= ( scale)
inline

generic operator*=

◆ operator+=()

template<class T>
MWAWVec3<T>& MWAWVec3< T >::operator+= ( MWAWVec3< T > const &  p)
inline

operator+=

◆ operator-=()

template<class T>
MWAWVec3<T>& MWAWVec3< T >::operator-= ( MWAWVec3< T > const &  p)
inline

operator-=

◆ operator<()

template<class T>
bool MWAWVec3< T >::operator< ( MWAWVec3< T > const &  p) const
inline

comparison<: which first compares x values, then y values then z values.

◆ operator==()

template<class T>
bool MWAWVec3< T >::operator== ( MWAWVec3< T > const &  p) const
inline

comparison==

◆ operator[]() [1/2]

template<class T>
T MWAWVec3< T >::operator[] ( int  c) const
inline

operator[]

◆ operator[]() [2/2]

template<class T>
T& MWAWVec3< T >::operator[] ( int  c)
inline

operator[]

◆ set()

template<class T>
void MWAWVec3< T >::set ( xx,
yy,
zz 
)
inline

resets the three elements

◆ setX()

template<class T>
void MWAWVec3< T >::setX ( xx)
inline

resets the first element

◆ setY()

template<class T>
void MWAWVec3< T >::setY ( yy)
inline

resets the second element

◆ setZ()

template<class T>
void MWAWVec3< T >::setZ ( zz)
inline

resets the third element

◆ x()

template<class T>
T MWAWVec3< T >::x ( ) const
inline

first element

◆ y()

template<class T>
T MWAWVec3< T >::y ( ) const
inline

second element

◆ z()

template<class T>
T MWAWVec3< T >::z ( ) const
inline

third element

Friends And Related Function Documentation

◆ operator*

template<class T>
template<class U >
MWAWVec3<T> operator* ( scale,
MWAWVec3< T > const &  p1 
)
friend

generic operator*

◆ operator+

template<class T>
MWAWVec3<T> operator+ ( MWAWVec3< T > const &  p1,
MWAWVec3< T > const &  p2 
)
friend

operator+

◆ operator-

template<class T>
MWAWVec3<T> operator- ( MWAWVec3< T > const &  p1,
MWAWVec3< T > const &  p2 
)
friend

operator-

◆ operator<<

template<class T>
std::ostream& operator<< ( std::ostream &  o,
MWAWVec3< T > const &  f 
)
friend

operator<<: prints data in form "XxYxZ"

Member Data Documentation

◆ m_val


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

Generated for libmwaw by doxygen 1.8.14