#include <cmath>
#include <iosfwd>
Go to the source code of this file.
std::ostream& operator<< |
( |
std::ostream & |
out, |
|
|
mathSSE::Vec2D const & |
v |
|
) |
| |
std::ostream& operator<< |
( |
std::ostream & |
out, |
|
|
mathSSE::Vec2F const & |
v |
|
) |
| |
std::ostream& operator<< |
( |
std::ostream & |
out, |
|
|
mathSSE::Vec4F const & |
v |
|
) |
| |
Definition at line 4 of file SSEVec.cc.
5 return out <<
'(' <<
v.arr[0] <<
", " <<
v.arr[1] <<
", "<<
v.arr[2] <<
", "<<
v.arr[3] <<
')';
std::ostream& operator<< |
( |
std::ostream & |
out, |
|
|
mathSSE::Vec4D const & |
v |
|
) |
| |
Definition at line 7 of file SSEVec.cc.
8 return out <<
'(' <<
v.arr[0] <<
", " <<
v.arr[1] <<
", "<<
v.arr[2] <<
", "<<
v.arr[3] <<
')';
std::ostream& operator<< |
( |
std::ostream & |
out, |
|
|
mathSSE::As3D< float > const & |
v |
|
) |
| |
Definition at line 17 of file SSEVec.cc.
References dbtoconf::out, and v.
18 return out <<
'(' << v.
v.arr[0] <<
", " << v.
v.arr[1] <<
", "<< v.
v.arr[2] <<
')';
std::ostream& operator<< |
( |
std::ostream & |
out, |
|
|
mathSSE::As3D< double > const & |
v |
|
) |
| |
Definition at line 21 of file SSEVec.cc.
References dbtoconf::out, and v.
22 return out <<
'(' << v.
v.arr[0] <<
", " << v.
v.arr[1] <<
", "<< v.
v.arr[2] <<
')';