#include <OSGMathIO.h>
Static Public Member Functions | |
| static void | apply (std::ostream &os, const VecTypeT &vec) |
Definition at line 57 of file OSGMathIO.h.
| void osg::VecToStreamWriter< VecTypeT, ValueTypeT, SizeI >::apply | ( | std::ostream & | os, | |
| const VecTypeT & | vec | |||
| ) | [inline, static] |
Helper struct for writing a vector-like type to a stream.
Definition at line 46 of file OSGMathIO.inl.
00048 { 00049 for(UInt32 i = 0; i < SizeI; ++i) 00050 { 00051 if(i != 0) 00052 os << ", "; 00053 00054 os << vec[i]; 00055 } 00056 }
1.6.1