Go to the source code of this file.
|
template<class T , class U > |
Basic3DVector< U > | operator* (const TkRotation< T > &r, const Basic3DVector< U > &v) |
|
template<class T , class U > |
TkRotation< typename PreciseFloatType< T, U >::Type > | operator* (const TkRotation< T > &a, const TkRotation< U > &b) |
|
template<class T > |
std::ostream & | operator<< (std::ostream &s, const TkRotation< T > &r) |
|
template<class T > |
std::ostream & | operator<< (std::ostream &s, const TkRotation2D< T > &r) |
|
template<> |
std::ostream & | operator<< < double > (std::ostream &s, const TkRotation< double > &r) |
|
template<> |
std::ostream & | operator<< < double > (std::ostream &s, const TkRotation2D< double > &r) |
|
template<> |
std::ostream & | operator<< < float > (std::ostream &s, const TkRotation< float > &r) |
|
template<> |
std::ostream & | operator<< < float > (std::ostream &s, const TkRotation2D< float > &r) |
|
void | geometryDetails::TkRotationErr1 () |
|
void | geometryDetails::TkRotationErr2 () |
|
template<class T , class U >
Definition at line 274 of file oldTkRotation.h.
References Basic3DVector< T >::x(), TkRotation< T >::xx(), TkRotation< T >::xy(), TkRotation< T >::xz(), Basic3DVector< T >::y(), TkRotation< T >::yx(), TkRotation< T >::yy(), TkRotation< T >::yz(), Basic3DVector< T >::z(), TkRotation< T >::zx(), TkRotation< T >::zy(), and TkRotation< T >::zz().
Referenced by TkRotation< align::Scalar >::operator*=().
276 r.
yx()*v.
x() + r.
yy()*v.
y() + r.
yz()*v.
z(),
277 r.
zx()*v.
x() + r.
zy()*v.
y() + r.
zz()*v.
z());
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<class T , class U >
template<class T >
std::ostream& operator<< |
( |
std::ostream & |
s, |
|
|
const TkRotation< T > & |
r |
|
) |
| |
template<class T >
std::ostream& operator<< |
( |
std::ostream & |
s, |
|
|
const TkRotation2D< T > & |
r |
|
) |
| |
template<>
std::ostream& operator<< < double > |
( |
std::ostream & |
s, |
|
|
const TkRotation< double > & |
r |
|
) |
| |
Definition at line 12 of file TkRotation.cc.
13 return s <<
" (" << rtmp.xx() <<
',' << rtmp.xy() <<
',' << rtmp.xz() <<
")\n" 14 <<
" (" << rtmp.yx() <<
',' << rtmp.yy() <<
',' << rtmp.yz() <<
")\n" 15 <<
" (" << rtmp.zx() <<
',' << rtmp.zy() <<
',' << rtmp.zz() <<
") ";
template<>
std::ostream& operator<< < double > |
( |
std::ostream & |
s, |
|
|
const TkRotation2D< double > & |
r |
|
) |
| |
Definition at line 24 of file TkRotation.cc.
25 return s << rtmp.x() <<
"\n" << rtmp.y();
template<>
std::ostream& operator<< < float > |
( |
std::ostream & |
s, |
|
|
const TkRotation< float > & |
r |
|
) |
| |
Definition at line 5 of file TkRotation.cc.
6 return s <<
" (" << rtmp.xx() <<
',' << rtmp.xy() <<
',' << rtmp.xz() <<
")\n" 7 <<
" (" << rtmp.yx() <<
',' << rtmp.yy() <<
',' << rtmp.yz() <<
")\n" 8 <<
" (" << rtmp.zx() <<
',' << rtmp.zy() <<
',' << rtmp.zz() <<
") ";
template<>
std::ostream& operator<< < float > |
( |
std::ostream & |
s, |
|
|
const TkRotation2D< float > & |
r |
|
) |
| |
Definition at line 19 of file TkRotation.cc.
20 return s << rtmp.x() <<
"\n" << rtmp.y();