Definition in file Boundary.cpp.
#include <config.h>
#include <utility>
#include "GeomHelper.h"
#include "Boundary.h"
#include "Position2DVector.h"
#include "Position2D.h"
Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &os, const Boundary &b) |
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const Boundary & | b | |||
| ) |
Definition at line 218 of file Boundary.cpp.
References Boundary::myXmax, Boundary::myXmin, Boundary::myYmax, and Boundary::myYmin.
00218 { 00219 os << b.myXmin << "," << b.myYmin << "," << b.myXmax << "," << b.myYmax; 00220 return os; 00221 }
1.5.6