diff --git a/Installation/CMakeLists.txt b/Installation/CMakeLists.txt index 477c6cdb340..257d983c9de 100644 --- a/Installation/CMakeLists.txt +++ b/Installation/CMakeLists.txt @@ -1055,7 +1055,7 @@ You must disable CGAL_ENABLE_CHECK_HEADERS and CGAL_COMPUTE_DEPENDENCIES.") endif() message( "== Setting header checking ==" ) - + find_package(Doxygen REQUIRED) find_package(Eigen3 REQUIRED) find_package(Qt5 COMPONENTS Core Widgets Xml OpenGL REQUIRED) find_package(QGLViewer) @@ -1143,9 +1143,49 @@ You must disable CGAL_ENABLE_CHECK_HEADERS and CGAL_COMPUTE_DEPENDENCIES.") endforeach() include_directories ( SYSTEM ${CGAL_3RD_PARTY_INCLUDE_DIRS} ) - include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/list_of_documented_headers.cmake - OPTIONAL RESULT_VARIABLE has_list_of_documented_headers) - include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/list_of_whitelisted_headers.cmake + ## Build the doc + # file(MAKE_DIRECTORY "${CMAKE_SOURCE_DIR}/build_doc") + set(DOC_DIR "${CMAKE_SOURCE_DIR}/build_doc") + # execute_process(COMMAND "${CMAKE_COMMAND}" -DDOXYGEN_EXECUTABLE=${DOXYGEN_EXECUTABLE} "${CMAKE_SOURCE_DIR}/Documentation/doc" + # WORKING_DIRECTORY "${DOC_DIR}" + # ) + # execute_process(COMMAND "${CMAKE_COMMAND}" --build . --target "doc" + # WORKING_DIRECTORY "${DOC_DIR}" ) + + ##Get the list of the documented headers + + # include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/list_of_documented_headers.cmake + # OPTIONAL RESULT_VARIABLE has_list_of_documented_headers) + + file(GLOB html_files RELATIVE "${DOC_DIR}/doc_output/" "${DOC_DIR}/doc_output/*/*.html") + file(GLOB example_files RELATIVE "${CMAKE_SOURCE_DIR}/" "${CMAKE_SOURCE_DIR}/*/examples/*/*.cpp") + find_program(AWK awk) + #set(arguments [=[{ match($0, /# *include *(<|[<"])(CGAL\/[^>&]*)([>"]|>)/,arr); if(arr[2]!="") print arr[2] }]=]) + set(arguments [=[{ match($0, /# *include *(<)(CGAL\/[^>&]*)([>"]|>)/,arr); if(arr[2]!="") print arr[2] }]=]) + message("listing headers from html files") + foreach(f ${html_files}) + execute_process(COMMAND "${AWK}" "${arguments}" "${DOC_DIR}/doc_output/${f}" + OUTPUT_VARIABLE list_of_documented_headers) + if (NOT "${list_of_documented_headers}" STREQUAL "") + string(REPLACE "\n" ";" list_of_documented_headers ${list_of_documented_headers}) + LIST( APPEND list_of_documented_headers_txt ${list_of_documented_headers}) + endif() + endforeach() + message("listing headers from examples files") + foreach(f ${example_files}) + execute_process(COMMAND "${AWK}" "${arguments}" "${CMAKE_SOURCE_DIR}/${f}" + OUTPUT_VARIABLE list_of_documented_headers) + if (NOT "${list_of_documented_headers}" STREQUAL "") + string(REPLACE "\n" ";" list_of_documented_headers ${list_of_documented_headers}) + LIST( APPEND list_of_documented_headers_txt ${list_of_documented_headers}) + endif() + endforeach() + message("removing duplicates:") + list(REMOVE_DUPLICATES list_of_documented_headers_txt) + message("sorting:") + list(SORT list_of_documented_headers_txt) + string(REPLACE ";" " \n" list_of_documented_headers_txt "${list_of_documented_headers_txt}") + include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/list_of_whitelisted_headers.cmake OPTIONAL RESULT_VARIABLE has_list_of_whitelisted_headers) message("list_of_whitelisted_headers: ${list_of_whitelisted_headers}") ## Loop on package and headers diff --git a/Installation/cmake/modules/list_of_documented_headers.cmake b/Installation/cmake/modules/list_of_documented_headers.cmake index e01ca994878..51fc78213be 100644 --- a/Installation/cmake/modules/list_of_documented_headers.cmake +++ b/Installation/cmake/modules/list_of_documented_headers.cmake @@ -1,28 +1,14 @@ # Generated using ../Scripts/developer_scripts/generate_list_of_documented_headers set(list_of_documented_headers_txt [=[ -CGAL/AABB_C3T3_triangle_primitive.h CGAL/AABB_face_graph_triangle_primitive.h CGAL/AABB_halfedge_graph_segment_primitive.h -CGAL/AABB_intersections.h -CGAL/AABB_polyhedron_segment_primitive.h -CGAL/AABB_polyhedron_triangle_primitive.h -CGAL/AABB_primitive.h CGAL/AABB_segment_primitive.h CGAL/AABB_traits.h CGAL/AABB_tree.h CGAL/AABB_triangle_primitive.h -CGAL/Advancing_front_surface_reconstruction_cell_base_3.h CGAL/Advancing_front_surface_reconstruction.h -CGAL/Advancing_front_surface_reconstruction_vertex_base_3.h -CGAL/Aff_transformation_2.h -CGAL/Aff_transformation_3.h -CGAL/aff_transformation_tags.h CGAL/Algebraic_kernel_d_1.h -CGAL/Algebraic_kernel_d_2.h CGAL/Algebraic_kernel_for_circles_2_2.h -CGAL/Algebraic_kernel_for_spheres_2_3.h -CGAL/Algebraic_kernel_rs_gmpq_d_1.h -CGAL/Algebraic_kernel_rs_gmpz_d_1.h CGAL/Algebraic_structure_traits.h CGAL/algorithm.h CGAL/all_furthest_neighbors_2.h @@ -33,20 +19,13 @@ CGAL/Alpha_shape_face_base_2.h CGAL/Alpha_shape_vertex_base_2.h CGAL/Alpha_shape_vertex_base_3.h CGAL/Apollonius_graph_2.h -CGAL/Apollonius_graph_adaptation_policies_2.h -CGAL/Apollonius_graph_adaptation_traits_2.h CGAL/Apollonius_graph_filtered_traits_2.h CGAL/Apollonius_graph_hierarchy_2.h -CGAL/Apollonius_graph_hierarchy_vertex_base_2.h CGAL/Apollonius_graph_traits_2.h CGAL/Apollonius_graph_vertex_base_2.h -CGAL/Apollonius_site_2.h CGAL/approximated_offset_2.h CGAL/Approximate_min_ellipsoid_d.h -CGAL/Approximate_min_ellipsoid_d_traits_2.h -CGAL/Approximate_min_ellipsoid_d_traits_3.h CGAL/Approximate_min_ellipsoid_d_traits_d.h -CGAL/Arr_accessor.h CGAL/Arr_algebraic_segment_traits_2.h CGAL/Arrangement_2.h CGAL/Arrangement_on_surface_2.h @@ -56,28 +35,22 @@ CGAL/array.h CGAL/Arr_batched_point_location.h CGAL/Arr_Bezier_curve_traits_2.h CGAL/Arr_circle_segment_traits_2.h -CGAL/Arr_circular_arc_traits_2.h CGAL/Arr_circular_line_arc_traits_2.h CGAL/Arr_conic_traits_2.h CGAL/Arr_consolidated_curve_data_traits_2.h CGAL/Arr_counting_traits_2.h CGAL/Arr_curve_data_traits_2.h -CGAL/Arr_dcel_base.h -CGAL/Arr_default_dcel.h CGAL/Arr_default_overlay_traits.h CGAL/Arr_directional_non_caching_segment_basic_traits_2.h CGAL/Arr_extended_dcel.h CGAL/Arr_face_index_map.h CGAL/Arr_geodesic_arc_on_sphere_traits_2.h CGAL/Arr_landmarks_point_location.h -CGAL/Arr_line_arc_traits_2.h CGAL/Arr_linear_traits_2.h CGAL/Arr_naive_point_location.h CGAL/Arr_non_caching_segment_basic_traits_2.h -CGAL/Arr_non_caching_segment_traits_2.h CGAL/Arr_observer.h CGAL/Arr_overlay_2.h -CGAL/Arr_point_location_result.h CGAL/Arr_polycurve_basic_traits_2.h CGAL/Arr_polycurve_traits_2.h CGAL/Arr_polyline_traits_2.h @@ -85,7 +58,6 @@ CGAL/Arr_rational_function_traits_2.h CGAL/Arr_segment_traits_2.h CGAL/Arr_simple_point_location.h CGAL/Arr_spherical_topology_traits_2.h -CGAL/Arr_tags.h CGAL/Arr_tracing_traits_2.h CGAL/Arr_trapezoid_ric_point_location.h CGAL/Arr_vertex_index_map.h @@ -99,97 +71,80 @@ CGAL/Barycentric_coordinates_2/Mean_value_2.h CGAL/Barycentric_coordinates_2/Segment_coordinates_2.h CGAL/Barycentric_coordinates_2/Triangle_coordinates_2.h CGAL/Barycentric_coordinates_2/Wachspress_2.h -CGAL/Barycentric_mapping_parameterizer_3.h CGAL/basic.h CGAL/Bbox_2.h CGAL/Bbox_3.h CGAL/bilateral_smooth_point_set.h -CGAL/Boolean_set_operations_2/Gps_default_dcel.h CGAL/Boolean_set_operations_2.h +CGAL/boost/graph/convert_nef_polyhedron_to_polygon_mesh.h CGAL/boost/graph/copy_face_graph.h CGAL/boost/graph/dijkstra_shortest_paths.h CGAL/boost/graph/Dual.h CGAL/boost/graph/Euler_operations.h +CGAL/boost/graph/Face_filtered_graph.h +CGAL/boost/graph/graph_traits_Constrained_Delaunay_triangulation_2.h +CGAL/boost/graph/graph_traits_Constrained_triangulation_plus_2.h CGAL/boost/graph/graph_traits_Delaunay_triangulation_2.h +CGAL/boost/graph/graph_traits_Linear_cell_complex_for_combinatorial_map.h CGAL/boost/graph/graph_traits_Polyhedron_3.h CGAL/boost/graph/graph_traits_PolyMesh_ArrayKernelT.h +CGAL/boost/graph/graph_traits_Regular_triangulation_2.h CGAL/boost/graph/graph_traits_Surface_mesh.h CGAL/boost/graph/graph_traits_Triangulation_2.h +CGAL/boost/graph/graph_traits_Triangulation_hierarchy_2.h CGAL/boost/graph/graph_traits_TriMesh_ArrayKernelT.h +CGAL/boost/graph/Graph_with_descriptor_with_graph.h CGAL/boost/graph/helpers.h +CGAL/boost/graph/io.h CGAL/boost/graph/iterator.h -CGAL/boost/graph/properties_Polyhedron_3.h +CGAL/boost/graph/properties.h +CGAL/boost/graph/properties_Linear_cell_complex_for_combinatorial_map.h CGAL/boost/graph/properties_PolyMesh_ArrayKernelT.h -CGAL/boost/graph/properties_Surface_mesh.h +CGAL/boost/graph/Seam_mesh.h +CGAL/boost/graph/selection.h CGAL/boost/graph/split_graph_into_polylines.h +CGAL/boost/iterator/counting_iterator.hpp CGAL/Bounded_kernel.h CGAL/bounding_box.h -CGAL/Box_intersection_d/Box_d.h -CGAL/Box_intersection_d/Box_traits_d.h -CGAL/Box_intersection_d/Box_with_handle_d.h CGAL/box_intersection_d.h CGAL/Cartesian_converter.h CGAL/Cartesian_d.h CGAL/Cartesian.h CGAL/Cartesian_matrix.h -CGAL/CC_safe_handle.h CGAL/Cell_attribute.h -CGAL/Cell_attribute_with_point.h CGAL/centroid.h -CGAL/CGAL_Ipelet_base.h CGAL/ch_akl_toussaint.h CGAL/ch_bykat.h CGAL/ch_eddy.h CGAL/ch_graham_andrew.h CGAL/ch_jarvis.h CGAL/ch_timing_2.h -CGAL/Circle_2.h -CGAL/Circle_3.h -CGAL/Circular_arc_2.h -CGAL/Circular_arc_3.h -CGAL/Circular_arc_point_2.h -CGAL/Circular_arc_point_3.h -CGAL/Circular_border_parameterizer_3.h CGAL/Circular_kernel_2.h -CGAL/circulator_bases.h CGAL/circulator.h +CGAL/Classification.h +CGAL/Classification/Random_forest_classifier.h CGAL/Coercion_traits.h CGAL/Combination_enumerator.h CGAL/Combinatorial_map_constructors.h CGAL/Combinatorial_map.h -CGAL/Combinatorial_map_min_items.h -CGAL/Combinatorial_map_operations.h -CGAL/Compact_container.h -CGAL/Compact_mesh_cell_base_3.h CGAL/Complex_2_in_triangulation_3.h -CGAL/Complexity_tags.h CGAL/compute_average_spacing.h CGAL/Compute_cone_boundaries_2.h CGAL/compute_outer_frame_margin.h -CGAL/Concurrent_compact_container.h CGAL/config.h CGAL/connect_holes.h CGAL/Constrained_Delaunay_triangulation_2.h -CGAL/Constrained_triangulation_2.h -CGAL/Constrained_triangulation_face_base_2.h CGAL/Constrained_triangulation_plus_2.h CGAL/constructions_d.h CGAL/Construct_theta_graph_2.h -CGAL/Construct_yao_graph_2.h CGAL/convex_decomposition_3.h CGAL/convex_hull_2.h CGAL/Convex_hull_3/dual/halfspace_intersection_3.h CGAL/convex_hull_3.h -CGAL/convex_hull_3_to_polyhedron_3.h -CGAL/convex_hull_constructive_traits_2.h -CGAL/Convex_hull_d.h -CGAL/Convex_hull_d_to_polyhedron_3.h -CGAL/Convex_hull_d_traits_3.h -CGAL/convex_hull_incremental_3.h +CGAL/convex_hull_3_to_face_graph.h CGAL/convex_hull_traits_2.h -CGAL/Convex_hull_traits_3.h +CGAL/convexity_check_3.h CGAL/CORE_algebraic_number_traits.h -CGAL/CORE_BigFloat.h CGAL/CORE_BigInt.h CGAL/CORE_BigRat.h CGAL/CORE_Expr.h @@ -198,12 +153,7 @@ CGAL/create_offset_polygons_2.h CGAL/create_offset_polygons_from_polygon_with_holes_2.h CGAL/create_straight_skeleton_2.h CGAL/create_straight_skeleton_from_polygon_with_holes_2.h -CGAL/Dart.h CGAL/Default.h -CGAL/Deformation_Eigen_closest_rotation_traits_3.h -CGAL/Deformation_Eigen_polar_closest_rotation_traits_3.h -CGAL/Delaunay_d.h -CGAL/Delaunay_mesh_criteria_2.h CGAL/Delaunay_mesher_2.h CGAL/Delaunay_mesh_face_base_2.h CGAL/Delaunay_mesh_size_criteria_2.h @@ -212,17 +162,9 @@ CGAL/Delaunay_triangulation_2.h CGAL/Delaunay_triangulation_3.h CGAL/Delaunay_triangulation_adaptation_policies_2.h CGAL/Delaunay_triangulation_adaptation_traits_2.h -CGAL/Delaunay_triangulation_cell_base_3.h -CGAL/Delaunay_triangulation_cell_base_with_circumcenter_3.h CGAL/Delaunay_triangulation.h CGAL/Diagonalize_traits.h -CGAL/Dimension.h -CGAL/Direction_2.h -CGAL/Direction_3.h -CGAL/Discrete_authalic_parameterizer_3.h -CGAL/Discrete_conformal_map_parameterizer_3.h CGAL/double.h -CGAL/Dynamic_matrix.h CGAL/edge_aware_upsample_point_set.h CGAL/Eigen_diagonalize_traits.h CGAL/Eigen_matrix.h @@ -237,24 +179,18 @@ CGAL/Env_sphere_traits_3.h CGAL/Env_surface_data_traits_3.h CGAL/Env_triangle_traits_3.h CGAL/Epick_d.h +CGAL/estimate_scale.h CGAL/Euclidean_distance.h -CGAL/Euclidean_distance_sphere_point.h -CGAL/Euler_integrator_2.h CGAL/Exact_circular_kernel_2.h CGAL/Exact_integer.h CGAL/Exact_predicates_exact_constructions_kernel.h -CGAL/Exact_predicates_exact_constructions_kernel_with_kth_root.h CGAL/Exact_predicates_exact_constructions_kernel_with_root_of.h -CGAL/Exact_predicates_exact_constructions_kernel_with_sqrt.h CGAL/Exact_predicates_inexact_constructions_kernel.h CGAL/Exact_rational.h CGAL/Exact_spherical_kernel_3.h -CGAL/Exponent_vector.h -CGAL/Extended_cartesian.h CGAL/Extended_homogeneous.h CGAL/extract_mean_curvature_flow_skeleton.h CGAL/extremal_polygon_2.h -CGAL/Extremal_polygon_traits_2.h CGAL/exude_mesh_3.h CGAL/Filtered_extended_homogeneous.h CGAL/Filtered_kernel.h @@ -262,28 +198,18 @@ CGAL/Filtered_predicate.h CGAL/Fixed_alpha_shape_3.h CGAL/Fixed_alpha_shape_cell_base_3.h CGAL/Fixed_alpha_shape_vertex_base_3.h -CGAL/Fixed_border_parameterizer_3.h -CGAL/Fourtuple.h -CGAL/FPU.h CGAL/Fraction_traits.h CGAL/function_objects.h CGAL/Fuzzy_iso_box.h CGAL/Fuzzy_sphere.h +CGAL/Generalized_map.h CGAL/General_polygon_2.h CGAL/General_polygon_set_2.h -CGAL/General_polygon_with_holes_2.h -CGAL/global_functions_circular_kernel_2.h -CGAL/global_functions_circular_kernel_3.h -CGAL/global_functions_spherical_kernel_3.h -CGAL/Gmpfi.h -CGAL/Gmpfr.h CGAL/Gmpq.h -CGAL/gmpxx.h CGAL/Gmpzf.h CGAL/Gmpz.h CGAL/gnuplot_output_2.h CGAL/Gps_circle_segment_traits_2.h -CGAL/Gps_segment_traits_2.h CGAL/Gps_traits_2.h CGAL/grabbers.h CGAL/graph_traits_Arrangement_2.h @@ -291,66 +217,36 @@ CGAL/graph_traits_Dual_Arrangement_2.h CGAL/Gray_image_mesh_domain_3.h CGAL/Gray_level_image_3.h CGAL/grid_simplify_point_set.h -CGAL/HalfedgeDS_bases.h -CGAL/HalfedgeDS_const_decorator.h CGAL/HalfedgeDS_decorator.h CGAL/HalfedgeDS_default.h -CGAL/HalfedgeDS_face_base.h -CGAL/HalfedgeDS_face_max_base_with_id.h -CGAL/HalfedgeDS_face_min_base.h -CGAL/HalfedgeDS_halfedge_base.h -CGAL/HalfedgeDS_halfedge_max_base_with_id.h -CGAL/HalfedgeDS_halfedge_min_base.h CGAL/HalfedgeDS_items_2.h -CGAL/HalfedgeDS_items_decorator.h CGAL/HalfedgeDS_list.h CGAL/HalfedgeDS_min_items.h CGAL/HalfedgeDS_vector.h -CGAL/HalfedgeDS_vertex_base.h -CGAL/HalfedgeDS_vertex_max_base_with_id.h -CGAL/HalfedgeDS_vertex_min_base.h -CGAL/Handle_hash_function.h CGAL/hierarchy_simplify_point_set.h -CGAL/Hilbert_policy_tags.h -CGAL/Hilbert_sort_2.h -CGAL/Hilbert_sort_3.h -CGAL/Hilbert_sort_d.h CGAL/hilbert_sort.h -CGAL/Hilbert_sort_on_sphere_3.h CGAL/hilbert_sort_on_sphere.h -CGAL/Homogeneous_converter.h -CGAL/Homogeneous_d.h CGAL/Homogeneous.h -CGAL/Identity_policy_2.h CGAL/Image_3.h CGAL/ImageIO.h CGAL/Implicit_mesh_domain_3.h CGAL/Implicit_surface_3.h CGAL/Implicit_to_labeling_function_wrapper.h -CGAL/import_from_triangulation_2.h -CGAL/import_from_triangulation_3.h -CGAL/Incremental_neighbor_search.h CGAL/In_place_list.h -CGAL/internal/Combination_enumerator.h -CGAL/internal/Exact_type_selector.h -CGAL/internal/Polyhedron_plane_clipping_3.h +CGAL/internal/boost/function_property_map.hpp CGAL/interpolation_functions.h CGAL/Interpolation_gradient_fitting_traits_2.h CGAL/Interpolation_traits_2.h -CGAL/intersection_of_Polyhedra_3.h -CGAL/intersection_of_Polyhedra_3_refinement_visitor.h -CGAL/intersections_d.h CGAL/intersections.h -CGAL/Interval_nt.h CGAL/Interval_skip_list.h CGAL/Interval_skip_list_interval.h CGAL/IO/Arr_iostream.h CGAL/IO/Arr_text_formatter.h CGAL/IO/Arr_with_history_iostream.h -CGAL/IO/Arr_with_history_text_formatter.h CGAL/IO/Color.h CGAL/IO/Complex_2_in_triangulation_3_file_writer.h CGAL/IO/Dxf_bsop_reader.h +CGAL/IO/facets_in_complex_2_to_triangle_mesh.h CGAL/IO/File_medit.h CGAL/IO/File_scanner_OFF.h CGAL/IO/File_writer_inventor.h @@ -358,29 +254,22 @@ CGAL/IO/File_writer_OFF.h CGAL/IO/File_writer_VRML_2.h CGAL/IO/File_writer_wavefront.h CGAL/IO/generic_copy_OFF.h -CGAL/IO/Geomview_stream.h CGAL/IO/Inventor_ostream.h CGAL/IO/io.h -CGAL/IO/Istream_iterator.h CGAL/IO/Nef_polyhedron_iostream_3.h CGAL/IO/OFF_reader.h CGAL/IO/Ostream_iterator.h -CGAL/IO/output_surface_facets_to_polyhedron.h -CGAL/IO/Polyhedron_geomview_ostream.h -CGAL/IO/Polyhedron_inventor_ostream.h CGAL/IO/Polyhedron_iostream.h CGAL/IO/Polyhedron_VRML_1_ostream.h -CGAL/IO/Polyhedron_VRML_2_ostream.h +CGAL/IO/read_las_points.h CGAL/IO/read_off_points.h CGAL/IO/read_ply_points.h CGAL/IO/read_xyz_points.h -CGAL/IO/Triangulation_geomview_ostream_2.h -CGAL/IO/Triangulation_geomview_ostream_3.h CGAL/IO/Verbose_ostream.h CGAL/IO/VRML_1_ostream.h CGAL/IO/VRML_2_ostream.h +CGAL/IO/write_ply_points.h CGAL/IO/write_xyz_points.h -CGAL/Iso_cuboid_3.h CGAL/Iso_rectangle_2.h CGAL/iterator.h CGAL/Iterator_range.h @@ -388,21 +277,8 @@ CGAL/jet_estimate_normals.h CGAL/jet_smooth_point_set.h CGAL/Join_input_iterator.h CGAL/Kd_tree.h -CGAL/Kd_tree_node.h -CGAL/Kd_tree_rectangle.h -CGAL/Kernel_d/Aff_transformation_d.h -CGAL/Kernel_d/Direction_d.h -CGAL/Kernel_d/Hyperplane_d.h -CGAL/Kernel_d/Iso_box_d.h -CGAL/Kernel_d/Line_d.h -CGAL/Kernel_d/Point_d.h -CGAL/Kernel_d/Ray_d.h -CGAL/Kernel_d/Segment_d.h -CGAL/Kernel_d/Sphere_d.h -CGAL/Kernel_d/Vector_d.h +CGAL/Kernel/global_functions_2.h CGAL/Kernel/global_functions.h -CGAL/Kernel_traits.h -CGAL/Kinetic/Active_objects_listener_helper.h CGAL/Kinetic/Active_objects_vector.h CGAL/Kinetic/basic.h CGAL/Kinetic/Cartesian.h @@ -411,15 +287,7 @@ CGAL/Kinetic/Default_instantaneous_kernel.h CGAL/Kinetic/Default_simulator.h CGAL/Kinetic/Delaunay_triangulation_2.h CGAL/Kinetic/Delaunay_triangulation_3.h -CGAL/Kinetic/Delaunay_triangulation_cell_base_3.h -CGAL/Kinetic/Delaunay_triangulation_event_log_visitor_2.h CGAL/Kinetic/Delaunay_triangulation_event_log_visitor_3.h -CGAL/Kinetic/Delaunay_triangulation_face_base_2.h -CGAL/Kinetic/Delaunay_triangulation_recent_edges_visitor_2.h -CGAL/Kinetic/Delaunay_triangulation_visitor_base_2.h -CGAL/Kinetic/Delaunay_triangulation_visitor_base_3.h -CGAL/Kinetic/Enclosing_box_2.h -CGAL/Kinetic/Enclosing_box_3.h CGAL/Kinetic/Erase_event.h CGAL/Kinetic/Event_base.h CGAL/Kinetic/Exact_simulation_traits.h @@ -429,18 +297,9 @@ CGAL/Kinetic/Inexact_simulation_traits.h CGAL/Kinetic/Insert_event.h CGAL/Kinetic/Listener.h CGAL/Kinetic/listeners.h -CGAL/Kinetic/Multi_listener.h CGAL/Kinetic/Ref_counted.h CGAL/Kinetic/Regular_triangulation_3.h -CGAL/Kinetic/Regular_triangulation_cell_base_3.h -CGAL/Kinetic/Regular_triangulation_event_log_visitor_3.h CGAL/Kinetic/Regular_triangulation_exact_simulation_traits.h -CGAL/Kinetic/Regular_triangulation_instantaneous_kernel.h -CGAL/Kinetic/Regular_triangulation_vertex_base_3.h -CGAL/Kinetic/Regular_triangulation_visitor_base_3.h -CGAL/Kinetic/Simulator_kds_listener.h -CGAL/Kinetic/Simulator_objects_listener.h -CGAL/Kinetic/Sort_event_log_visitor.h CGAL/Kinetic/Sort.h CGAL/Kinetic/Sort_visitor_base.h CGAL/Kinetic/Two_list_pointer_event_queue.h @@ -449,59 +308,35 @@ CGAL/Labeled_image_mesh_domain_3.h CGAL/Labeled_mesh_domain_3.h CGAL/Largest_empty_iso_rectangle_2.h CGAL/Lazy_exact_nt.h -CGAL/leda_bigfloat.h CGAL/leda_integer.h -CGAL/leda_rational.h CGAL/leda_real.h CGAL/Level_interval.h -CGAL/Line_2.h -CGAL/Line_3.h -CGAL/Linear_algebraCd.h -CGAL/Linear_algebraHd.h -CGAL/Line_arc_2.h -CGAL/Line_arc_3.h CGAL/Linear_cell_complex_constructors.h -CGAL/Linear_cell_complex.h -CGAL/Linear_cell_complex_min_items.h -CGAL/Linear_cell_complex_operations.h -CGAL/Linear_cell_complex_traits.h +CGAL/Linear_cell_complex_for_combinatorial_map.h +CGAL/Linear_cell_complex_for_generalized_map.h CGAL/linear_least_squares_fitting_2.h CGAL/linear_least_squares_fitting_3.h +CGAL/link_to_face_graph.h CGAL/lloyd_optimize_mesh_2.h -CGAL/Location_policy.h -CGAL/LSCM_parameterizer_3.h CGAL/make_mesh_3.h -CGAL/make_piecewise_smooth_surface_mesh.h CGAL/make_skin_surface_mesh_3.h CGAL/make_surface_mesh.h CGAL/Manhattan_distance_iso_box_point.h CGAL/Mean_curvature_flow_skeletonization.h -CGAL/Mean_value_coordinates_parameterizer_3.h -CGAL/memory.h CGAL/Memory_sizer.h -CGAL/Mesh_3/dihedral_angle_3.h CGAL/Mesh_3/Dump_c3t3.h -CGAL/Mesh_3/implicit_to_labeled_function_wrapper.h +CGAL/Mesh_3/experimental/Lipschitz_sizing_polyhedron.h CGAL/Mesh_3/initialize_triangulation_from_labeled_image.h -CGAL/Mesh_3/Labeled_mesh_domain_3.h -CGAL/Mesh_3/polyhedral_to_labeled_function_wrapper.h CGAL/Mesh_3/polylines_to_protect.h -CGAL/Mesh_3/search_for_connected_components_in_labeled_image.h -CGAL/Mesh_3/squared_distance_Point_3_Triangle_3.h -CGAL/Mesh_cell_base_3.h -CGAL/Mesh_cell_criteria_3.h +CGAL/Mesh_3/properties_Surface_mesh.h CGAL/Mesh_complex_3_in_triangulation_3.h CGAL/Mesh_constant_domain_field_3.h CGAL/Mesh_criteria_3.h CGAL/Mesh_domain_with_polyline_features_3.h -CGAL/Mesh_edge_criteria_3.h -CGAL/Mesh_facet_criteria_3.h -CGAL/Mesh_polyhedron_3.h CGAL/mesh_segmentation.h CGAL/mesh_skin_surface_3.h CGAL/Mesh_triangulation_3.h CGAL/mesh_union_of_balls_3.h -CGAL/Mesh_vertex_base_3.h CGAL/Min_annulus_d.h CGAL/Min_circle_2.h CGAL/Min_circle_2_traits_2.h @@ -510,195 +345,117 @@ CGAL/Min_ellipse_2_traits_2.h CGAL/minkowski_sum_2.h CGAL/minkowski_sum_3.h CGAL/min_quadrilateral_2.h -CGAL/Min_quadrilateral_traits_2.h CGAL/Min_sphere_annulus_d_traits_2.h -CGAL/Min_sphere_annulus_d_traits_3.h CGAL/Min_sphere_annulus_d_traits_d.h CGAL/Min_sphere_d.h -CGAL/Min_sphere_of_points_d_traits_2.h -CGAL/Min_sphere_of_points_d_traits_3.h -CGAL/Min_sphere_of_points_d_traits_d.h CGAL/Min_sphere_of_spheres_d.h -CGAL/Min_sphere_of_spheres_d_traits_2.h -CGAL/Min_sphere_of_spheres_d_traits_3.h -CGAL/Min_sphere_of_spheres_d_traits_d.h -CGAL/Modifier_base.h -CGAL/Modular_traits.h CGAL/Monge_via_jet_fitting.h CGAL/MP_Float.h -CGAL/Mpzf.h CGAL/mst_orient_normals.h -CGAL/Multiscale_sort.h -CGAL/Multiset.h CGAL/natural_neighbor_coordinates_2.h CGAL/natural_neighbor_coordinates_3.h -CGAL/Nef_3/Polygon_constructor.h CGAL/Nef_3/SNC_indexed_items.h -CGAL/Nef_nary_union_3.h CGAL/Nef_polyhedron_2.h CGAL/Nef_polyhedron_3.h CGAL/Nef_polyhedron_S2.h CGAL/Nef_S2/create_random_Nef_S2.h CGAL/N_step_adaptor.h -CGAL/NT_converter.h -CGAL/Number_type_checker.h CGAL/number_utils.h -CGAL/Object.h CGAL/offset_polygon_2.h CGAL/OFF_to_nef_3.h -CGAL/OpenNL/linear_solver.h CGAL/Optimal_transportation_reconstruction_2.h -CGAL/optimisation\_assertions.h CGAL/Origin.h CGAL/Orthogonal_incremental_neighbor_search.h CGAL/Orthogonal_k_neighbor_search.h -CGAL/Parameterization_mesh_feature_extractor.h -CGAL/Parameterization_mesh_patch_3.h -CGAL/Parameterization_polyhedron_adaptor_3.h -CGAL/parameterize.h -CGAL/Parameterizer_traits_3.h CGAL/partition_2.h CGAL/Partition_is_valid_traits_2.h CGAL/Partition_traits_2.h CGAL/pca_estimate_normals.h CGAL/Periodic_2_Delaunay_triangulation_2.h CGAL/Periodic_2_Delaunay_triangulation_traits_2.h -CGAL/Periodic_2_offset_2.h -CGAL/Periodic_2_triangulation_2.h CGAL/Periodic_2_triangulation_face_base_2.h -CGAL/Periodic_2_triangulation_filtered_traits_2.h CGAL/Periodic_2_triangulation_hierarchy_2.h -CGAL/Periodic_2_triangulation_hierarchy_vertex_base_2.h -CGAL/Periodic_2_triangulation_traits_2.h -CGAL/Periodic_2_triangulation_vertex_base_2.h CGAL/Periodic_3_Delaunay_triangulation_3.h CGAL/Periodic_3_Delaunay_triangulation_traits_3.h -CGAL/Periodic_3_offset_3.h -CGAL/Periodic_3_triangulation_3.h -CGAL/Periodic_3_triangulation_ds_cell_base_3.h +CGAL/Periodic_3_regular_triangulation_3.h +CGAL/Periodic_3_regular_triangulation_traits_3.h +CGAL/periodic_3_triangulation_3_io.h CGAL/Periodic_3_triangulation_ds_vertex_base_3.h -CGAL/Periodic_3_triangulation_filtered_traits_3.h -CGAL/Periodic_3_triangulation_hierarchy_3.h -CGAL/Periodic_3_triangulation_traits_3.h CGAL/perturb_mesh_3.h -CGAL/Piecewise_smooth_surface_mesh_default_edges_criteria_3.h -CGAL/Plane_3.h -CGAL/Plane_separator.h CGAL/Point_2.h -CGAL/Point_3.h -CGAL/Point_container.h CGAL/point_generators_2.h CGAL/point_generators_3.h CGAL/point_generators_d.h CGAL/Point_set_2.h +CGAL/Point_set_3.h +CGAL/Point_set_3/IO.h CGAL/Point_with_normal_3.h CGAL/Poisson_implicit_surface_3.h CGAL/Poisson_reconstruction_function.h +CGAL/poisson_surface_reconstruction.h CGAL/Polygon_2_algorithms.h CGAL/Polygon_2.h -CGAL/Polygon_convex_decomposition_2.h CGAL/polygon_function_objects.h +CGAL/Polygon_mesh_processing/bbox.h CGAL/Polygon_mesh_processing/border.h CGAL/Polygon_mesh_processing/compute_normal.h CGAL/Polygon_mesh_processing/connected_components.h +CGAL/Polygon_mesh_processing/corefinement.h +CGAL/Polygon_mesh_processing/detect_features.h +CGAL/Polygon_mesh_processing/distance.h CGAL/Polygon_mesh_processing/fair.h +CGAL/Polygon_mesh_processing/intersection.h +CGAL/Polygon_mesh_processing/measure.h CGAL/Polygon_mesh_processing/orientation.h CGAL/Polygon_mesh_processing/orient_polygon_soup.h CGAL/Polygon_mesh_processing/polygon_soup_to_polygon_mesh.h +CGAL/Polygon_mesh_processing/random_perturbation.h CGAL/Polygon_mesh_processing/refine.h CGAL/Polygon_mesh_processing/remesh.h -CGAL/Polygon_mesh_processing/repair.h CGAL/Polygon_mesh_processing/self_intersections.h CGAL/Polygon_mesh_processing/stitch_borders.h CGAL/Polygon_mesh_processing/triangulate_faces.h CGAL/Polygon_mesh_processing/triangulate_hole.h CGAL/Polygon_mesh_slicer.h -CGAL/Polygon_nop_decomposition_2.h CGAL/Polygon_offset_builder_2.h -CGAL/Polygon_offset_builder_traits_2.h CGAL/Polygon_set_2.h -CGAL/Polygon_triangulation_decomposition_2.h CGAL/Polygon_vertical_decomposition_2.h CGAL/Polygon_with_holes_2.h +CGAL/Polyhedral_complex_mesh_domain_3.h CGAL/Polyhedral_mesh_domain_3.h CGAL/Polyhedral_mesh_domain_with_features_3.h -CGAL/Polyhedral_surface_3.h CGAL/Polyhedron_3.h CGAL/polyhedron_cut_plane_3.h CGAL/Polyhedron_incremental_builder_3.h -CGAL/Polyhedron_items_3.h CGAL/Polyhedron_items_with_id_3.h -CGAL/Polyhedron_min_items_3.h CGAL/Polyhedron_traits_3.h CGAL/Polyhedron_traits_with_normals_3.h -CGAL/Polyline_simplification_2/Hybrid_squared_distance_cost.h -CGAL/Polyline_simplification_2/Scaled_squared_distance_cost.h CGAL/Polyline_simplification_2/simplify.h CGAL/Polyline_simplification_2/Squared_distance_cost.h -CGAL/Polyline_simplification_2/Stop_above_cost_threshold.h -CGAL/Polyline_simplification_2/Stop_below_count_ratio_threshold.h -CGAL/Polyline_simplification_2/Stop_below_count_threshold.h -CGAL/Polyline_simplification_2/Vertex_base_2.h CGAL/Polynomial.h -CGAL/Polynomial/internal/GSL_numeric_solver.h -CGAL/Polynomial/internal/numeric_solvers.h -CGAL/Polynomial/Kernel.h -CGAL/Polynomial/Numeric_root_stack.h -CGAL/Polynomial/polynomial_converters.h -CGAL/Polynomial/Polynomial.h -CGAL/Polynomial/Root_stack_default_traits.h -CGAL/Polynomials_1_2.h -CGAL/Polynomials_1_3.h -CGAL/Polynomials_2_2.h -CGAL/Polynomials_2_3.h -CGAL/Polynomials_for_line_3.h CGAL/Polynomial/Sturm_root_stack.h CGAL/Polynomial/Sturm_root_stack_traits.h CGAL/Polynomial_traits_d.h CGAL/Polynomial_type_generator.h CGAL/Polytope_distance_d.h -CGAL/Polytope_distance_d_traits_2.h CGAL/Polytope_distance_d_traits_3.h -CGAL/Polytope_distance_d_traits_d.h CGAL/Profile_counter.h CGAL/Profile_timer.h CGAL/Projection_traits_xy_3.h -CGAL/Projection_traits_xz_3.h CGAL/Projection_traits_yz_3.h CGAL/property_map.h CGAL/QP_functions.h CGAL/QP_models.h -CGAL/QP_options.h -CGAL/QP_solution.h -CGAL/Qt/CircularArcGraphicsItem.h -CGAL/Qt/ConstrainedTriangulationGraphicsItem.h -CGAL/Qt/Converter.h -CGAL/Qt/GraphicsItem.h -CGAL/Qt/GraphicsViewCircleInput.h -CGAL/Qt/GraphicsViewCircularArcInput.h -CGAL/Qt/GraphicsViewInput.h -CGAL/Qt/GraphicsViewIsoRectangleInput.h -CGAL/Qt/GraphicsViewNavigation.h -CGAL/Qt/GraphicsViewPolylineInput.h -CGAL/Qt/PainterOstream.h -CGAL/Qt/TriangulationGraphicsItem.h -CGAL/Qt/VoronoiGraphicsItem.h CGAL/Quotient.h CGAL/random_convex_hull_in_disc_2.h CGAL/random_convex_set_2.h -CGAL/Random_convex_set_traits_2.h CGAL/Random.h CGAL/random_polygon_2.h CGAL/random_selection.h CGAL/random_simplify_point_set.h CGAL/Range_segment_tree_traits.h -CGAL/Range_tree_d.h CGAL/Range_tree_k.h -CGAL/Rational_traits.h -CGAL/Ray_2.h -CGAL/Ray_3.h CGAL/read_vtk_image_data.h -CGAL/Real_embeddable_traits.h CGAL/Real_timer.h CGAL/rectangular_p_center_2.h CGAL/refine_mesh_3.h @@ -707,24 +464,14 @@ CGAL/regularize_planes.h CGAL/regular_neighbor_coordinates_2.h CGAL/Regular_triangulation_2.h CGAL/Regular_triangulation_3.h -CGAL/Regular_triangulation_adaptation_policies_2.h -CGAL/Regular_triangulation_adaptation_traits_2.h CGAL/Regular_triangulation_cell_base_3.h -CGAL/Regular_triangulation_cell_base_with_weighted_circumcenter_3.h -CGAL/Regular_triangulation_euclidean_traits_2.h -CGAL/Regular_triangulation_euclidean_traits_3.h -CGAL/Regular_triangulation_face_base_2.h -CGAL/Regular_triangulation_filtered_traits_2.h -CGAL/Regular_triangulation_vertex_base_2.h +CGAL/Regular_triangulation.h +CGAL/Regular_triangulation_vertex_base_3.h CGAL/remove_outliers.h -CGAL/Residue.h -CGAL/result_of.h CGAL/Ridges.h -CGAL/Root_for_circles_2_2.h -CGAL/Root_for_spheres_2_3.h -CGAL/Root_of_traits.h -CGAL/Rotational_sweep_visibility_2.h CGAL/Runge_kutta_integrator_2.h +CGAL/Scale_space_reconstruction_3/Advancing_front_mesher.h +CGAL/Scale_space_reconstruction_3/Jet_smoother.h CGAL/Scale_space_surface_reconstruction_3.h CGAL/Search_traits_2.h CGAL/Search_traits_3.h @@ -732,172 +479,115 @@ CGAL/Search_traits_adapter.h CGAL/Search_traits_d.h CGAL/Search_traits.h CGAL/Segment_2.h -CGAL/Segment_3.h CGAL/Segment_Delaunay_graph_2.h CGAL/Segment_Delaunay_graph_adaptation_policies_2.h CGAL/Segment_Delaunay_graph_adaptation_traits_2.h CGAL/Segment_Delaunay_graph_filtered_traits_2.h CGAL/Segment_Delaunay_graph_hierarchy_2.h -CGAL/Segment_Delaunay_graph_hierarchy_vertex_base_2.h CGAL/Segment_Delaunay_graph_Linf_2.h CGAL/Segment_Delaunay_graph_Linf_filtered_traits_2.h CGAL/Segment_Delaunay_graph_Linf_hierarchy_2.h CGAL/Segment_Delaunay_graph_Linf_traits_2.h -CGAL/Segment_Delaunay_graph_site_2.h -CGAL/Segment_Delaunay_graph_storage_site_2.h CGAL/Segment_Delaunay_graph_storage_traits_with_info_2.h CGAL/Segment_Delaunay_graph_traits_2.h -CGAL/Segment_Delaunay_graph_vertex_base_2.h CGAL/Segment_tree_d.h CGAL/Segment_tree_k.h -CGAL/Shape_detection_3/Cone.h -CGAL/Shape_detection_3/Cylinder.h -CGAL/Shape_detection_3/Efficient_RANSAC.h -CGAL/Shape_detection_3/Shape_detection_traits.h +CGAL/Set_movable_separability_2/Single_mold_translational_casting/is_pullout_direction.h +CGAL/Set_movable_separability_2/Single_mold_translational_casting/pullout_directions.h +CGAL/Set_movable_separability_2/Single_mold_translational_casting/top_edges.h CGAL/Shape_detection_3.h -CGAL/Shape_detection_3/Plane.h -CGAL/Shape_detection_3/Shape_base.h -CGAL/Shape_detection_3/Sphere.h -CGAL/Shape_detection_3/Torus.h CGAL/sibson_gradient_fitting.h CGAL/Side_of_triangle_mesh.h CGAL/Simple_cartesian.h -CGAL/Simple_homogeneous.h CGAL/Simple_polygon_visibility_2.h -CGAL/Sixtuple.h CGAL/Skin_surface_3.h CGAL/Skin_surface_polyhedral_items_3.h -CGAL/Skin_surface_traits_3.h CGAL/Small_side_angle_bisector_decomposition_2.h CGAL/Snap_rounding_2.h CGAL/Snap_rounding_traits_2.h CGAL/sorted_matrix_search.h -CGAL/Sorted_matrix_search_traits_adaptor.h -CGAL/Spatial_lock_grid_3.h CGAL/spatial_sort.h CGAL/spatial_sort_on_sphere.h CGAL/Spatial_sort_traits_adapter_2.h CGAL/Spatial_sort_traits_adapter_3.h CGAL/Spatial_sort_traits_adapter_d.h -CGAL/Sphere_3.h -CGAL/Spherical_kernel_3.h -CGAL/Splitters.h CGAL/Sqrt_extension.h -CGAL/Square_border_parameterizer_3.h CGAL/squared_distance_2.h -CGAL/squared_distance_3.h -CGAL/Straight_skeleton_2.h CGAL/Straight_skeleton_builder_2.h -CGAL/Straight_skeleton_builder_traits_2.h -CGAL/Straight_skeleton_converter_2.h -CGAL/Straight_skeleton_face_base_2.h -CGAL/Straight_skeleton_halfedge_base_2.h -CGAL/Straight_skeleton_vertex_base_2.h CGAL/Stream_lines_2.h +CGAL/structure_point_set.h CGAL/subdivide_skin_surface_mesh_3.h CGAL/subdivide_union_of_balls_mesh_3.h -CGAL/Subdivision_mask_3.h -CGAL/Subdivision_method_3.h -CGAL/Surface_mesh_cell_base_3.h -CGAL/Surface_mesh_complex_2_in_triangulation_3.h +CGAL/subdivision_method_3.h CGAL/Surface_mesh_default_criteria_3.h CGAL/Surface_mesh_default_triangulation_3.h CGAL/Surface_mesh_deformation.h CGAL/Surface_mesh.h +CGAL/Surface_mesh_parameterization/Circular_border_parameterizer_3.h +CGAL/Surface_mesh_parameterization/Discrete_authalic_parameterizer_3.h +CGAL/Surface_mesh_parameterization/Discrete_conformal_map_parameterizer_3.h +CGAL/Surface_mesh_parameterization/Error_code.h +CGAL/Surface_mesh_parameterization/internal/Containers_filler.h +CGAL/Surface_mesh_parameterization/internal/kernel_traits.h +CGAL/Surface_mesh_parameterization/internal/shortest_path.h +CGAL/Surface_mesh_parameterization/IO/File_off.h +CGAL/Surface_mesh_parameterization/LSCM_parameterizer_3.h +CGAL/Surface_mesh_parameterization/Orbifold_Tutte_parameterizer_3.h +CGAL/Surface_mesh_parameterization/parameterize.h +CGAL/Surface_mesh_parameterization/Square_border_parameterizer_3.h +CGAL/Surface_mesh_parameterization/Two_vertices_parameterizer_3.h CGAL/Surface_mesh_shortest_path.h CGAL/Surface_mesh_shortest_path/Surface_mesh_shortest_path.h CGAL/Surface_mesh_shortest_path/Surface_mesh_shortest_path_traits.h CGAL/Surface_mesh_simplification/edge_collapse.h CGAL/Surface_mesh_simplification/Edge_collapse_visitor_base.h -CGAL/Surface_mesh_simplification/HalfedgeGraph_Polyhedron_3.h +CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Bounded_normal_change_placement.h CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Constrained_placement.h CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Count_ratio_stop_predicate.h CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Count_stop_predicate.h CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_length_cost.h -CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_profile.h +CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_length_stop_predicate.h CGAL/Surface_mesh_simplification/Policies/Edge_collapse/LindstromTurk_cost.h CGAL/Surface_mesh_simplification/Policies/Edge_collapse/LindstromTurk_placement.h CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Midpoint_and_length.h CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Midpoint_placement.h -CGAL/Surface_mesh/Surface_mesh.h -CGAL/Surface_mesh_traits_generator_3.h -CGAL/Surface_mesh_vertex_base_3.h CGAL/surface_neighbor_coordinates_3.h -CGAL/Surface_Sweep_2_algorithms.h +CGAL/Surface_sweep_2_algorithms.h CGAL/tags.h -CGAL/Taucs_solver_traits.h -CGAL/Tetrahedron_3.h -CGAL/Three/Polyhedron_demo_io_plugin_interface.h -CGAL/Three/Polyhedron_demo_plugin_helper.h -CGAL/Three/Polyhedron_demo_plugin_interface.h -CGAL/Three/Scene_group_item.h -CGAL/Three/Scene_interface.h -CGAL/Three/Scene_item.h -CGAL/Three/Scene_print_interface_item.h -CGAL/Three/TextRenderer.h -CGAL/Threetuple.h -CGAL/Three/Viewer_interface.h CGAL/Timer.h CGAL/trace.h -CGAL/Tree_base.h CGAL/Tree_traits.h -CGAL/Triangle_2.h -CGAL/Triangle_3.h -CGAL/Triangle_accessor_3.h CGAL/Triangular_expansion_visibility_2.h CGAL/Triangular_field_2.h -CGAL/Triangulation_2_filtered_projection_traits_3.h CGAL/Triangulation_2.h +CGAL/Triangulation_2_to_lcc.h CGAL/Triangulation_3.h -CGAL/Triangulation_cell_base_3.h -CGAL/Triangulation_cell_base_with_circumcenter_3.h -CGAL/Triangulation_cell_base_with_info_3.h +CGAL/Triangulation_3_to_lcc.h CGAL/Triangulation_conformer_2.h CGAL/Triangulation_data_structure_2.h CGAL/Triangulation_data_structure_3.h CGAL/Triangulation_data_structure.h -CGAL/Triangulation_ds_cell_base_3.h -CGAL/Triangulation_ds_face_base_2.h -CGAL/Triangulation_ds_full_cell.h -CGAL/Triangulation_ds_vertex_base_2.h -CGAL/Triangulation_ds_vertex_base_3.h -CGAL/Triangulation_ds_vertex.h -CGAL/Triangulation_euclidean_traits_2.h CGAL/Triangulation_face_base_2.h CGAL/Triangulation_face_base_with_info_2.h -CGAL/Triangulation_face.h -CGAL/Triangulation_full_cell.h CGAL/Triangulation.h CGAL/Triangulation_hierarchy_2.h -CGAL/Triangulation_simplex_3.h -CGAL/Triangulation_utils_3.h +CGAL/Triangulation_hierarchy_vertex_base_2.h CGAL/Triangulation_vertex_base_2.h CGAL/Triangulation_vertex_base_3.h CGAL/Triangulation_vertex_base_with_id_2.h CGAL/Triangulation_vertex_base_with_info_2.h CGAL/Triangulation_vertex_base_with_info_3.h -CGAL/Triangulation_vertex.h CGAL/tuple.h -CGAL/Twotuple.h -CGAL/Two_vertices_parameterizer_3.h CGAL/Umbilics.h -CGAL/Uncertain.h -CGAL/Union_find.h CGAL/Union_of_balls_3.h CGAL/Unique_hash_map.h CGAL/use.h CGAL/utility.h -CGAL/utils_classes.h CGAL/value_type_traits.h CGAL/vcm_estimate_edges.h CGAL/vcm_estimate_normals.h -CGAL/Vector_2.h -CGAL/Vector_3.h CGAL/Voronoi_diagram_2.h -CGAL/Voronoi_intersection_2_traits_3.h -CGAL/Weighted_alpha_shape_euclidean_traits_2.h CGAL/Weighted_Minkowski_distance.h -CGAL/Weighted_point.h CGAL/Width_3.h CGAL/Width_default_traits_3.h CGAL/wlop_simplify_and_regularize_point_set.h