Made some typedefs readable for people without a 30" screen (no real changes)

This commit is contained in:
Mael Rouxel-Labbé 2017-04-27 16:53:30 +02:00
parent 38c212c521
commit ea295a0ee4
1 changed files with 25 additions and 27 deletions

View File

@ -13,21 +13,19 @@
#include <CGAL/Alpha_shape_cell_base_3.h>
#include <CGAL/Alpha_shape_vertex_base_3.h>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Regular_triangulation_vertex_base_3<K> Vbb;
typedef CGAL::Regular_triangulation_cell_base_3<K> Cbb;
typedef K::Point_3 Point_3;
typedef K::Weighted_point_3 Weighted_point_3;
typedef CGAL::Regular_triangulation_vertex_base_3<K> Vbb;
typedef CGAL::Regular_triangulation_cell_base_3<K> Cbb;
typedef CGAL::Fixed_alpha_shape_vertex_base_3<K,Vbb> WFixed_Vb;
typedef CGAL::Fixed_alpha_shape_cell_base_3<K,Cbb> WFixed_Cb;
typedef CGAL::Triangulation_data_structure_3<WFixed_Vb,WFixed_Cb> WFixed_TDS;
typedef CGAL::Regular_triangulation_3<K,WFixed_TDS> WFixed_DT;
typedef CGAL::Fixed_alpha_shape_3< WFixed_DT > WFixed_AS;
typedef CGAL::Alpha_shape_vertex_base_3<K,Vbb> WVb;
typedef CGAL::Alpha_shape_cell_base_3<K,Cbb> WCb;
typedef CGAL::Triangulation_data_structure_3<WVb,WCb> WTDS;