$extrastylesheet
Olena  User documentation 2.1
An Image Processing Platform
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
doc/examples/tuto4/point2d.cc
1 #include <mln/core/alias/point2d.hh>
2 
3 int main()
4 {
5  using namespace mln;
6 
7  // \{
8  point2d p(3,3);
9  std::cout << p << std::endl;
10  // \}
11 }