Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &s, const quat &q) |
|
Definition at line 40 of file quat-io.hpp. 00041 { 00042 s << "( " << q.x << ", " << q.y << ", " << q.z 00043 << "; " << q.r << " )"; 00044 return s; 00045 }
|