moab
CartVect.cpp
Go to the documentation of this file.
00001 
00016 #include "moab/CartVect.hpp"
00017 #include <ostream>
00018 
00019 namespace moab {
00020 
00021 std::ostream& operator<<( std::ostream& s, const CartVect& v )
00022   { return s << '[' << v[0] << ' ' << v[1] << ' ' << v[2] << ']'; }
00023   
00024 } // namespace moab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines