#include <Edge.hpp>

Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &os, const Edge &e) |
| Outputs the Edge e using the stream os. | |
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const Edge & | e | |||
| ) |
Outputs the Edge e using the stream os.
Prints the edge to a given stream
| os | the given stream | |
| e | the edge to print |
Definition at line 23 of file Edge.cpp.
00024 { 00025 os << '(' << e(0)[0] << ' ' << e(0)[1] << ' ' << e(0)[2] << "),"; 00026 os << '(' << e(1)[0] << ' ' << e(1)[1] << ' ' << e(1)[2] << ')'; 00027 00028 return os; 00029 }
1.5.6