#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Delaunay_triangulation_2.h>
#include <CGAL/Projection_traits_xy_3.h>
#include <CGAL/Interval_skip_list.h>
#include <CGAL/Level_interval.h>
#include <iostream>
#include <fstream>
 
typedef EIK::Point_3                                   Point_3;
typedef CGAL::Delaunay_triangulation_2<K>              Delaunay;
typedef Delaunay::Face_handle                          Face_handle;
typedef Delaunay::Finite_faces_iterator                Finite_faces_iterator;
 
int main()
{
  std::ifstream fin("terrain.pts"); 
  Delaunay dt;
 
  dt.insert(std::istream_iterator<Point_3>(fin),
            std::istream_iterator<Point_3>());
 
  Interval_skip_list isl;
  for(Finite_faces_iterator fh = dt.finite_faces_begin();
      fh != dt.finite_faces_end();
      ++fh){
  }
  std::list<Interval> level;
  isl.find_intervals(50, std::back_inserter(level));
  for(std::list<Interval>::iterator it = level.begin();
      it != level.end();
      ++it){
    std::cout << dt.triangle(it->face_handle()) << std::endl;
  }
  return 0;
}
The class Interval_skip_list is a dynamic data structure that allows to find all members of a set of ...
Definition: Interval_skip_list.h:22
The class Level_interval represents intervals for the minimum and maximum value of the z-coordinate o...
Definition: Level_interval.h:20
The concept Interval describes the requirements for the template argument Interval of a Interval_skip...
Definition: Interval.h:21