From ea295a0ee467013eaa9ae05e5f6da3ec2a0f0e39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Thu, 27 Apr 2017 16:53:30 +0200 Subject: [PATCH] Made some typedefs readable for people without a 30" screen (no real changes) --- .../test_fixed_alpha_shape_3.cpp | 52 +++++++++---------- 1 file changed, 25 insertions(+), 27 deletions(-) diff --git a/Alpha_shapes_3/test/Alpha_shapes_3/test_fixed_alpha_shape_3.cpp b/Alpha_shapes_3/test/Alpha_shapes_3/test_fixed_alpha_shape_3.cpp index 317ec86ba8a..26146781e4c 100644 --- a/Alpha_shapes_3/test/Alpha_shapes_3/test_fixed_alpha_shape_3.cpp +++ b/Alpha_shapes_3/test/Alpha_shapes_3/test_fixed_alpha_shape_3.cpp @@ -13,39 +13,37 @@ #include #include +typedef CGAL::Exact_predicates_inexact_constructions_kernel K; +typedef K::Point_3 Point_3; +typedef K::Weighted_point_3 Weighted_point_3; -typedef CGAL::Exact_predicates_inexact_constructions_kernel K; -typedef CGAL::Regular_triangulation_vertex_base_3 Vbb; -typedef CGAL::Regular_triangulation_cell_base_3 Cbb; +typedef CGAL::Regular_triangulation_vertex_base_3 Vbb; +typedef CGAL::Regular_triangulation_cell_base_3 Cbb; -typedef K::Point_3 Point_3; -typedef K::Weighted_point_3 Weighted_point_3; +typedef CGAL::Fixed_alpha_shape_vertex_base_3 WFixed_Vb; +typedef CGAL::Fixed_alpha_shape_cell_base_3 WFixed_Cb; +typedef CGAL::Triangulation_data_structure_3 WFixed_TDS; +typedef CGAL::Regular_triangulation_3 WFixed_DT; +typedef CGAL::Fixed_alpha_shape_3< WFixed_DT > WFixed_AS; -typedef CGAL::Fixed_alpha_shape_vertex_base_3 WFixed_Vb; -typedef CGAL::Fixed_alpha_shape_cell_base_3 WFixed_Cb; -typedef CGAL::Triangulation_data_structure_3 WFixed_TDS; -typedef CGAL::Regular_triangulation_3 WFixed_DT; -typedef CGAL::Fixed_alpha_shape_3< WFixed_DT > WFixed_AS; - - -typedef CGAL::Alpha_shape_vertex_base_3 WVb; -typedef CGAL::Alpha_shape_cell_base_3 WCb; -typedef CGAL::Triangulation_data_structure_3 WTDS; -typedef CGAL::Regular_triangulation_3 WDT; -typedef CGAL::Alpha_shape_3< WDT > WAS; +typedef CGAL::Alpha_shape_vertex_base_3 WVb; +typedef CGAL::Alpha_shape_cell_base_3 WCb; +typedef CGAL::Triangulation_data_structure_3 WTDS; +typedef CGAL::Regular_triangulation_3 WDT; +typedef CGAL::Alpha_shape_3< WDT > WAS; //Unweighted stuff -typedef CGAL::Fixed_alpha_shape_vertex_base_3 Fixed_Vb; -typedef CGAL::Fixed_alpha_shape_cell_base_3 Fixed_Cb; -typedef CGAL::Triangulation_data_structure_3 Fixed_TDS; -typedef CGAL::Delaunay_triangulation_3 Fixed_DT; -typedef CGAL::Fixed_alpha_shape_3 Fixed_AS; +typedef CGAL::Fixed_alpha_shape_vertex_base_3 Fixed_Vb; +typedef CGAL::Fixed_alpha_shape_cell_base_3 Fixed_Cb; +typedef CGAL::Triangulation_data_structure_3 Fixed_TDS; +typedef CGAL::Delaunay_triangulation_3 Fixed_DT; +typedef CGAL::Fixed_alpha_shape_3 Fixed_AS; -typedef CGAL::Alpha_shape_vertex_base_3 Vb; -typedef CGAL::Alpha_shape_cell_base_3 Fb; -typedef CGAL::Triangulation_data_structure_3 TDS; -typedef CGAL::Delaunay_triangulation_3 DT; -typedef CGAL::Alpha_shape_3
AS; +typedef CGAL::Alpha_shape_vertex_base_3 Vb; +typedef CGAL::Alpha_shape_cell_base_3 Fb; +typedef CGAL::Triangulation_data_structure_3 TDS; +typedef CGAL::Delaunay_triangulation_3 DT; +typedef CGAL::Alpha_shape_3
AS; void fill_lists(const char* file_path, std::list& lst, std::list& wlst,