Moved Plane and Quat << operators into the io_utils headers

This commit is contained in:
Robert Osfield
2005-04-15 20:59:24 +00:00
parent d3bdfe49ea
commit f4be038d46
5 changed files with 26 additions and 23 deletions

View File

@@ -206,9 +206,6 @@ class OSG_EXPORT Plane
calculateUpperLowerBBCorners();
}
friend inline std::ostream& operator << (std::ostream& output, const Plane& pl);
protected:
Vec4 _fv;
@@ -220,15 +217,6 @@ class OSG_EXPORT Plane
};
inline std::ostream& operator << (std::ostream& output, const Plane& pl)
{
output << pl._fv[0] << " "
<< pl._fv[1] << " "
<< pl._fv[2] << " "
<< pl._fv[3];
return output; // to enable cascading
}
} // end of namespace
#endif