mirror of https://github.com/CGAL/cgal
Remove the Mesh_2 stuff that I had commited be error.
This commit is contained in:
parent
625cc4512c
commit
1f6ae50e76
|
|
@ -5,11 +5,7 @@
|
|||
#include <CGAL/Simple_cartesian.h>
|
||||
#include <CGAL/Constrained_Delaunay_triangulation_2.h>
|
||||
#include <CGAL/Triangulation_hierarchy_2.h>
|
||||
#include <CGAL/Constrained_triangulation_2.h>
|
||||
#include <CGAL/Mesh_2.h>
|
||||
#include <CGAL/Mesh_local_size_traits_2.h>
|
||||
#include <CGAL/Mesh_face_base_2.h>
|
||||
|
||||
#include <CGAL/Constrained_triangulation_plus_2.h>
|
||||
#include <CGAL/Filtered_kernel.h>
|
||||
#include <CGAL/Partition_traits_2.h>
|
||||
#include <CGAL/point_generators_2.h>
|
||||
|
|
@ -28,19 +24,15 @@ typedef Rep::Circle_2 Circle;
|
|||
|
||||
typedef CGAL::Triangulation_vertex_base_2<Rep> Vb;
|
||||
typedef CGAL::Triangulation_hierarchy_vertex_base_2<Vb> Vb1;
|
||||
typedef CGAL::Mesh_face_base_2<Rep> Fb1;
|
||||
//typedef CGAL::Constrained_triangulation_face_base_2<Rep> Fb1;
|
||||
|
||||
typedef CGAL::Constrained_triangulation_face_base_2<Rep>
|
||||
Fb1;
|
||||
typedef CGAL::Triangulation_data_structure_2<Vb1, Fb1>
|
||||
TDS;
|
||||
typedef CGAL::Exact_predicates_tag Itag;
|
||||
|
||||
typedef CGAL::Mesh_local_size_traits_2<Rep> Meshtraits;
|
||||
typedef CGAL::Constrained_Delaunay_triangulation_2<Meshtraits, TDS, Itag>
|
||||
typedef CGAL::Constrained_Delaunay_triangulation_2<Rep, TDS, Itag>
|
||||
CT;
|
||||
typedef CGAL::Triangulation_hierarchy_2<CT> CDT;
|
||||
typedef CGAL::Mesh_2<CDT> Mesh;
|
||||
|
||||
typedef CDT::Vertex_iterator Vertex_iterator;
|
||||
typedef CDT::Constraint Constraint;
|
||||
typedef CDT::Vertex_handle Vertex_handle;
|
||||
|
|
|
|||
Loading…
Reference in New Issue