~ubuntu-branches/debian/stretch/cgal/stretch

« back to all changes in this revision

Viewing changes to demo/CGAL_ipelets/mesh_2.cpp

  • Committer: Package Import Robot
  • Author(s): Joachim Reichel
  • Date: 2014-04-05 10:56:43 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20140405105643-jgnrpu2thtx23zfs
Tags: 4.4-1
* New upstream release.
* Remove patches do-not-link-example-with-qt4-support-library.patch and
  fix_jet_fitting_3.patch (applied upstream).

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
  typedef CGAL::Triangulation_vertex_base_2<Kernel>                 Vb;
32
32
  typedef CGAL::Delaunay_mesh_face_base_2<Kernel>                   Fb;
33
33
  typedef CGAL::Triangulation_data_structure_2<Vb, Fb>              Tds;
34
 
  typedef CGAL::Constrained_Delaunay_triangulation_2<Kernel,Tds>    CDT;
 
34
  typedef CGAL::Exact_predicates_tag                                     Itag;
 
35
  typedef CGAL::Constrained_Delaunay_triangulation_2<Kernel,Tds,Itag>    CDT;
35
36
  typedef CGAL::Delaunay_mesh_size_criteria_2<CDT>                  Criteria;
36
37
  typedef CGAL::Delaunay_mesher_2<CDT, Criteria>                    Mesher;
37
38