$extrastylesheet
Olena  User documentation 2.1
An Image Processing Platform
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
forall-piter.cc
1 #include <mln/core/alias/box2d.hh>
2 
3 int main()
4 {
5  using namespace mln;
6 
7  // \{
8  box2d b(3, 2);
9  mln_piter_(box2d) p(b);
10 
11  for_all(p)
12  std::cout << p; //prints every site coordinates.
13  // \}
14 
15 }