00001 00005 #include "Point.h" 00006 #include <iostream> 00007 00008 std::ostream& operator<<(std::ostream& out, const Point& p) 00009 { 00010 out << '[' << p.x() << ", " << p.y() << ", " << p.z() << ']'; 00011 return out; 00012 }