$extrastylesheet
Olena  User documentation 2.1
An Image Processing Platform
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
parray-append.cc
1 #include <mln/core/site_set/p_array.hh>
2 #include <mln/core/alias/point2d.hh>
3 int main()
4 {
5  using namespace mln;
6 
7  // \{
9  arr.append(point2d(3, 6));
10  arr.append(point2d(3, 7));
11  arr.append(point2d(3, 8));
12  arr.append(point2d(4, 8));
13  arr.append(point2d(4, 9));
14  // \}
15 }