#include <cmath>
#include <iosfwd>
Go to the source code of this file.
Function Documentation
std::ostream& operator<< |
( |
std::ostream & |
out, |
|
|
mathSSE::As3D< float > const & |
v |
|
) |
| |
Definition at line 17 of file SSEVec.cc.
References dbtoconf::out, and v.
{
return out << '(' << v.v.arr[0] <<", " << v.v.arr[1] <<", "<< v.v.arr[2] <<')';
}
std::ostream& operator<< |
( |
std::ostream & |
out, |
|
|
mathSSE::Vec4F const & |
v |
|
) |
| |
Definition at line 4 of file SSEVec.cc.
{
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.
{
return out << '(' << v.arr[0] <<", " << v.arr[1] <<", "<< v.arr[2] <<", "<< v.arr[3] <<')';
}
std::ostream& operator<< |
( |
std::ostream & |
out, |
|
|
mathSSE::As3D< double > const & |
v |
|
) |
| |
Definition at line 21 of file SSEVec.cc.
References dbtoconf::out, and v.
{
return out << '(' << v.v.arr[0] <<", " << v.v.arr[1] <<", "<< v.v.arr[2] <<')';
}
std::ostream & operator<< |
( |
std::ostream & |
out, |
|
|
mathSSE::Vec2D const & |
v |
|
) |
| |
Variable Documentation