25#include "utility/graphic/orientation.hpp"
27namespace utility::graphic
29 std::ostream &operator<<(std::ostream &stream,
30 const OrientationF &orientation)
32 stream <<
"OrientationF(" << orientation.x <<
", " << orientation.y
33 <<
", " << orientation.z <<
", " << orientation.w <<
")";
37 std::ostream &operator<<(std::ostream &stream,
38 const OrientationD &orientation)
40 stream <<
"OrientationD(" << orientation.x <<
", " << orientation.y
41 <<
", " << orientation.z <<
", " << orientation.w <<
")";