首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

CGAL第三方库(5.5.1)

后端 10.03MB 17 需要积分: 1
立即下载

资源介绍:

CGAL第三方库(5.5.1)
// Copyright (c) 2005,2006,2007,2008,2009,2010,2011,2012,2013 Tel-Aviv University (Israel). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL: https://github.com/CGAL/cgal/blob/v5.5.1/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arrangement_on_surface_2_impl.h $ // $Id: Arrangement_on_surface_2_impl.h 30da4eb 2021-03-22T13:35:23+02:00 Efi Fogel // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s): Ron Wein // Efi Fogel // Eric Berberich // (based on old version by: Iddo Hanniel, // Eyal Flato, // Oren Nechushtan, // Ester Ezra, // Shai Hirsch, // and Eugene Lipovetsky) #ifndef CGAL_ARRANGEMENT_ON_SURFACE_2_IMPL_H #define CGAL_ARRANGEMENT_ON_SURFACE_2_IMPL_H #include #ifndef CGAL_ARRANGEMENT_ON_SURFACE_INSERT_VERBOSE #define CGAL_ARRANGEMENT_ON_SURFACE_INSERT_VERBOSE 0 #endif /*! \file * Member-function definitions for the Arrangement_2 * class-template. */ #include #include #include namespace CGAL { //----------------------------------------------------------------------------- // Default constructor. // template Arrangement_on_surface_2::Arrangement_on_surface_2() : m_topol_traits() { typedef has_Left_side_category Cond_left; typedef internal::Validate_left_side_category Validate_left_side_category; void (Validate_left_side_category::*pleft)(void) = &Validate_left_side_category::template missing__Left_side_category; (void)pleft; typedef has_Bottom_side_category Cond_bottom; typedef internal::Validate_bottom_side_category Validate_bottom_side_category; void (Validate_bottom_side_category::*pbottom)(void) = &Validate_bottom_side_category::template missing__Bottom_side_category; (void)pbottom; typedef has_Top_side_category Cond_top; typedef internal::Validate_top_side_category Validate_top_side_category; void (Validate_top_side_category::*ptop)(void) = &Validate_top_side_category::template missing__Top_side_category; (void)ptop; typedef has_Right_side_category Cond_right; typedef internal::Validate_right_side_category Validate_right_side_category; void (Validate_right_side_category::*pright)(void) = &Validate_right_side_category::template missing__Right_side_category; (void)pright; // Initialize the DCEL structure to represent an empty arrangement. m_topol_traits.init_dcel(); // Allocate the traits. m_geom_traits = new Traits_adaptor_2; m_own_traits = true; } //----------------------------------------------------------------------------- // Copy constructor. // template Arrangement_on_surface_2:: Arrangement_on_surface_2(const Self& arr) : m_geom_traits(nullptr), m_own_traits(false) { assign(arr); } //----------------------------------------------------------------------------- // Constructor given a traits object. // template Arrangement_on_surface_2:: Arrangement_on_surface_2(const Geometry_traits_2* geom_traits) : m_topol_traits(geom_traits) { typedef has_Left_side_category Cond_left; typedef internal::Validate_left_side_category Validate_left_side_category; void (Validate_left_side_category::*pleft)(void) = &Validate_left_side_category::template missing__Left_side_category; (void)pleft; typedef has_Bottom_side_category Cond_bottom; typedef internal::Validate_bottom_side_category Validate_bottom_side_category; void (Validate_bottom_side_category::*pbottom)(void) = &Validate_bottom_side_category::template missing__Bottom_side_category; (void)pbottom; typedef has_Top_side_category Cond_top; typedef internal::Validate_top_side_category Validate_top_side_category; void (Validate_top_side_category::*ptop)(void) = &Validate_top_side_category::template missing__Top_side_category; (void)ptop; typedef has_Right_side_category Cond_right; typedef internal::Validate_right_side_category Validate_right_side_category; void (Validate_right_side_category::*pright)(void) = &Validate_right_side_category::template missing__Right_side_category; (void)pright; // Initialize the DCEL structure to represent an empty arrangement. m_topol_traits.init_dcel(); // Set the traits. m_geom_traits = static_cast(geom_traits); m_own_traits = false; } //----------------------------------------------------------------------------- // Assignment operator. // template Arrangement_on_surface_2& Arrangement_on_surface_2::operator=(const Self& arr) { if (this == &arr) return (*this); // handle self-assignment assign(arr); return (*this); } //----------------------------------------------------------------------------- // Assign an arrangement. // template void Arrangement_on_surface_2::assign(const Self& arr) { // Clear the current contents of the arrangement. clear(); // Notify the observers that an assignment is to take place. _notify_before_assign(arr); // Assign the topology-traits object. m_topol_traits.assign(arr.m_topol_traits); // Go over the vertices and create duplicates of the stored points. typename Dcel::Vertex_iterator vit; for (vit = _dcel().vertices_begin(); vit != _dcel().vertices_end(); ++vit) { DVertex* p_v = &(*vit); if (! p_v->has_null_point()) { // Create the duplicate point and store it in the points container. Point_2* dup_p = _new_point(p_v->point()); // Associate the vertex with the duplicated point. p_v->set_point(dup_p); } } // Go over the edge and create duplicates of the stored curves. typename Dcel::Edge_iterator eit; for (eit = _dcel().edges_begin(); eit != _dcel().edges_end(); ++eit) { DHalfedge* p_e = &(*eit); if (! p_e->has_null_curve()) { // Create the duplicate curve and store it in the curves container. X_monotone_curve_2* dup_cv = _new_curve(p_e->curve()); // Associate the halfedge (and its twin) with the duplicated curve. p_e->set_curve(dup_cv); } } // Take care of the traits object. if (m_own_traits && (m_geom_traits != nullptr)) { delete m_geom_traits; m_geom_traits = nullptr; } m_geom_traits = (arr.m_own_traits) ? new Traits_adaptor_2 : arr.m_geom_traits; m_own_traits = arr.m_own_traits; // Notify the observers that the assignment has been performed. _notify_after_assign(); } //----------------------------------------------------------------------------- // Destructor. // template Arrangement_on_surface_2::~Arrangement_on_surface_2() { // Free all stored points. typename Dcel::Vertex_iterator vit; for (vit = _dcel().vertices_begin(); vit != _dcel().vertices_end(); ++vit) if (! vit->has_null_point()) _delete_point(vit->

资源文件列表:

CGAL5.zip 大约有4083个文件
  1. CGAL5/
  2. CGAL5/auxiliary/
  3. CGAL5/auxiliary/gmp/
  4. CGAL5/auxiliary/gmp/gmp.COPYING 34.32KB
  5. CGAL5/auxiliary/gmp/gmp.COPYING.LIB 7.46KB
  6. CGAL5/auxiliary/gmp/gmp.README 3.89KB
  7. CGAL5/auxiliary/gmp/include/
  8. CGAL5/auxiliary/gmp/include/gmp.h 84.21KB
  9. CGAL5/auxiliary/gmp/include/mpf2mpfr.h 6.13KB
  10. CGAL5/auxiliary/gmp/include/mpfr.h 44.59KB
  11. CGAL5/auxiliary/gmp/lib/
  12. CGAL5/auxiliary/gmp/lib/libgmp-10.dll 530.3KB
  13. CGAL5/auxiliary/gmp/lib/libgmp-10.lib 106.62KB
  14. CGAL5/auxiliary/gmp/lib/libmpfr-4.dll 425.79KB
  15. CGAL5/auxiliary/gmp/lib/libmpfr-4.lib 67.38KB
  16. CGAL5/auxiliary/gmp/mpfr.COPYING 34.32KB
  17. CGAL5/auxiliary/gmp/mpfr.COPYING.LESSER 7.46KB
  18. CGAL5/auxiliary/gmp/mpfr.README 3.96KB
  19. CGAL5/auxiliary/gmp/README 128B
  20. CGAL5/bin/
  21. CGAL5/bin/cgal_create_CMakeLists 13.03KB
  22. CGAL5/bin/cgal_create_cmake_script 3.86KB
  23. CGAL5/bin/cgal_make_macosx_app 2.91KB
  24. CGAL5/include/
  25. CGAL5/include/CGAL/
  26. CGAL5/include/CGAL/AABB_face_graph_triangle_primitive.h 8.14KB
  27. CGAL5/include/CGAL/AABB_halfedge_graph_segment_primitive.h 9.14KB
  28. CGAL5/include/CGAL/AABB_polyhedral_oracle.h 5.7KB
  29. CGAL5/include/CGAL/AABB_polyhedron_segment_primitive.h 5.55KB
  30. CGAL5/include/CGAL/AABB_polyhedron_triangle_primitive.h 5.48KB
  31. CGAL5/include/CGAL/AABB_primitive.h 8.92KB
  32. CGAL5/include/CGAL/AABB_segment_primitive.h 3.64KB
  33. CGAL5/include/CGAL/AABB_traits.h 19.06KB
  34. CGAL5/include/CGAL/AABB_tree/
  35. CGAL5/include/CGAL/AABB_tree/internal/
  36. CGAL5/include/CGAL/AABB_tree/internal/AABB_drawing_traits.h 2.74KB
  37. CGAL5/include/CGAL/AABB_tree/internal/AABB_node.h 10.72KB
  38. CGAL5/include/CGAL/AABB_tree/internal/AABB_ray_intersection.h 8.25KB
  39. CGAL5/include/CGAL/AABB_tree/internal/AABB_search_tree.h 4.77KB
  40. CGAL5/include/CGAL/AABB_tree/internal/AABB_traversal_traits.h 9.34KB
  41. CGAL5/include/CGAL/AABB_tree/internal/Has_nested_type_Shared_data.h 2.33KB
  42. CGAL5/include/CGAL/AABB_tree/internal/Is_ray_intersection_geomtraits.h 1.57KB
  43. CGAL5/include/CGAL/AABB_tree/internal/Primitive_helper.h 2.92KB
  44. CGAL5/include/CGAL/AABB_tree/internal/triangle_datum_covering.h 15.6KB
  45. CGAL5/include/CGAL/AABB_tree.h 37.34KB
  46. CGAL5/include/CGAL/AABB_triangle_primitive.h 3.73KB
  47. CGAL5/include/CGAL/AABB_triangulation_3_cell_primitive.h 3.19KB
  48. CGAL5/include/CGAL/AABB_triangulation_3_triangle_primitive.h 3.93KB
  49. CGAL5/include/CGAL/Advancing_front_surface_reconstruction/
  50. CGAL5/include/CGAL/Advancing_front_surface_reconstruction/internal/
  51. CGAL5/include/CGAL/Advancing_front_surface_reconstruction/internal/construct_polyhedron.h 2.56KB
  52. CGAL5/include/CGAL/Advancing_front_surface_reconstruction/internal/construct_surface_2.h 5.22KB
  53. CGAL5/include/CGAL/Advancing_front_surface_reconstruction/internal/Surface_face_base_2.h 2.72KB
  54. CGAL5/include/CGAL/Advancing_front_surface_reconstruction/internal/Surface_vertex_base_2.h 1.99KB
  55. CGAL5/include/CGAL/Advancing_front_surface_reconstruction/internal/write_triple_indices.h 1.69KB
  56. CGAL5/include/CGAL/Advancing_front_surface_reconstruction.h 95.48KB
  57. CGAL5/include/CGAL/Advancing_front_surface_reconstruction_cell_base_3.h 6.65KB
  58. CGAL5/include/CGAL/Advancing_front_surface_reconstruction_vertex_base_3.h 7.54KB
  59. CGAL5/include/CGAL/Aff_transformation_2.h 3.79KB
  60. CGAL5/include/CGAL/Aff_transformation_3.h 3.41KB
  61. CGAL5/include/CGAL/aff_transformation_tags.h 1.29KB
  62. CGAL5/include/CGAL/aff_transformation_tags_impl.h 935B
  63. CGAL5/include/CGAL/Algebraic_extension_traits.h 2.33KB
  64. CGAL5/include/CGAL/Algebraic_kernel_converter.h 2.44KB
  65. CGAL5/include/CGAL/Algebraic_kernel_d/
  66. CGAL5/include/CGAL/Algebraic_kernel_d/Algebraic_curve_kernel_2.h 94.26KB
  67. CGAL5/include/CGAL/Algebraic_kernel_d/algebraic_curve_kernel_2_tools.h 13.01KB
  68. CGAL5/include/CGAL/Algebraic_kernel_d/Algebraic_real_d_1.h 21.05KB
  69. CGAL5/include/CGAL/Algebraic_kernel_d/Algebraic_real_quadratic_refinement_rep_bfi.h 14.24KB
  70. CGAL5/include/CGAL/Algebraic_kernel_d/Algebraic_real_rep.h 17.59KB
  71. CGAL5/include/CGAL/Algebraic_kernel_d/Algebraic_real_rep_bfi.h 14.29KB
  72. CGAL5/include/CGAL/Algebraic_kernel_d/Bitstream_coefficient_kernel.h 1.79KB
  73. CGAL5/include/CGAL/Algebraic_kernel_d/Bitstream_coefficient_kernel_at_alpha.h 6.69KB
  74. CGAL5/include/CGAL/Algebraic_kernel_d/Bitstream_descartes.h 41.45KB
  75. CGAL5/include/CGAL/Algebraic_kernel_d/Bitstream_descartes_E08_tree.h 34.99KB
  76. CGAL5/include/CGAL/Algebraic_kernel_d/Bitstream_descartes_rndl_tree.h 60.04KB
  77. CGAL5/include/CGAL/Algebraic_kernel_d/Bitstream_descartes_rndl_tree_traits.h 12.98KB
  78. CGAL5/include/CGAL/Algebraic_kernel_d/bound_between_1.h 8.65KB
  79. CGAL5/include/CGAL/Algebraic_kernel_d/construct_binary.h 3.54KB
  80. CGAL5/include/CGAL/Algebraic_kernel_d/Curve_analysis_2.h 84.29KB
  81. CGAL5/include/CGAL/Algebraic_kernel_d/Curve_pair_analysis_2.h 88.34KB
  82. CGAL5/include/CGAL/Algebraic_kernel_d/Descartes.h 14.85KB
  83. CGAL5/include/CGAL/Algebraic_kernel_d/enums.h 1.13KB
  84. CGAL5/include/CGAL/Algebraic_kernel_d/Event_line_builder.h 24.61KB
  85. CGAL5/include/CGAL/Algebraic_kernel_d/exceptions.h 1.64KB
  86. CGAL5/include/CGAL/Algebraic_kernel_d/flags.h 6.73KB
  87. CGAL5/include/CGAL/Algebraic_kernel_d/Float_traits.h 4.38KB
  88. CGAL5/include/CGAL/Algebraic_kernel_d/Interval_evaluate_1.h 2.72KB
  89. CGAL5/include/CGAL/Algebraic_kernel_d/Interval_evaluate_2.h 3.25KB
  90. CGAL5/include/CGAL/Algebraic_kernel_d/LRU_hashed_map.h 12.22KB
  91. CGAL5/include/CGAL/Algebraic_kernel_d/macros.h 3.34KB
  92. CGAL5/include/CGAL/Algebraic_kernel_d/Real_embeddable_extension.h 13.32KB
  93. CGAL5/include/CGAL/Algebraic_kernel_d/Real_roots.h 10.33KB
  94. CGAL5/include/CGAL/Algebraic_kernel_d/refine_zero_against.h 6.78KB
  95. CGAL5/include/CGAL/Algebraic_kernel_d/shear.h 1.59KB
  96. CGAL5/include/CGAL/Algebraic_kernel_d/Shear_controller.h 3.16KB
  97. CGAL5/include/CGAL/Algebraic_kernel_d/Shear_transformation.h 40.2KB
  98. CGAL5/include/CGAL/Algebraic_kernel_d/Status_line_CA_1.h 18.5KB
  99. CGAL5/include/CGAL/Algebraic_kernel_d/Status_line_CPA_1.h 15.44KB
  100. CGAL5/include/CGAL/Algebraic_kernel_d/univariate_polynomial_utils.h 3.1KB
  101. CGAL5/include/CGAL/Algebraic_kernel_d/Xy_coordinate_2.h 23.46KB
  102. CGAL5/include/CGAL/Algebraic_kernel_d_1.h 21.89KB
  103. CGAL5/include/CGAL/Algebraic_kernel_d_2.h 1.05KB
  104. CGAL5/include/CGAL/Algebraic_kernel_for_circles/
  105. CGAL5/include/CGAL/Algebraic_kernel_for_circles/function_objects_on_roots_and_polynomials_2_2.h 6.57KB
  106. CGAL5/include/CGAL/Algebraic_kernel_for_circles/internal_functions_comparison_root_for_circles_2_2.h 1.89KB
  107. CGAL5/include/CGAL/Algebraic_kernel_for_circles/internal_functions_on_roots_and_polynomials_2_2.h 7.85KB
  108. CGAL5/include/CGAL/Algebraic_kernel_for_circles/internal_functions_on_roots_and_polynomial_1_2_and_2_2.h 6.51KB
  109. CGAL5/include/CGAL/Algebraic_kernel_for_circles_2_2.h 3.33KB
  110. CGAL5/include/CGAL/Algebraic_kernel_for_spheres/
  111. CGAL5/include/CGAL/Algebraic_kernel_for_spheres/function_objects_on_roots_and_polynomials_2_3.h 12.85KB
  112. CGAL5/include/CGAL/Algebraic_kernel_for_spheres/internal_functions_comparison_root_for_spheres_2_3.h 2.42KB
  113. CGAL5/include/CGAL/Algebraic_kernel_for_spheres/internal_functions_on_roots_and_polynomials_1_3.h 2.58KB
  114. CGAL5/include/CGAL/Algebraic_kernel_for_spheres/internal_functions_on_roots_and_polynomials_2_3.h 18.99KB
  115. CGAL5/include/CGAL/Algebraic_kernel_for_spheres/internal_functions_on_roots_and_polynomial_1_3_and_2_3.h 19.41KB
  116. CGAL5/include/CGAL/Algebraic_kernel_for_spheres_2_3.h 4.55KB
  117. CGAL5/include/CGAL/Algebraic_kernel_rs_gmpq_d_1.h 3.83KB
  118. CGAL5/include/CGAL/Algebraic_kernel_rs_gmpz_d_1.h 2.01KB
  119. CGAL5/include/CGAL/Algebraic_structure_traits.h 20.9KB
  120. CGAL5/include/CGAL/algorithm.h 11.11KB
  121. CGAL5/include/CGAL/all_furthest_neighbors_2.h 5.88KB
  122. CGAL5/include/CGAL/Alpha_shapes_2/
  123. CGAL5/include/CGAL/Alpha_shapes_2/internal/
  124. CGAL5/include/CGAL/Alpha_shapes_2/internal/Lazy_alpha_nt_2.h 15.11KB
  125. CGAL5/include/CGAL/Alpha_shapes_3/
  126. CGAL5/include/CGAL/Alpha_shapes_3/internal/
  127. CGAL5/include/CGAL/Alpha_shapes_3/internal/Classification_type.h 744B
  128. CGAL5/include/CGAL/Alpha_shapes_3/internal/Lazy_alpha_nt_3.h 14.44KB
  129. CGAL5/include/CGAL/Alpha_shape_2.h 57.66KB
  130. CGAL5/include/CGAL/Alpha_shape_3.h 62.72KB
  131. CGAL5/include/CGAL/Alpha_shape_cell_base_3.h 3.55KB
  132. CGAL5/include/CGAL/Alpha_shape_face_base_2.h 2.5KB
  133. CGAL5/include/CGAL/Alpha_shape_vertex_base_2.h 2.44KB
  134. CGAL5/include/CGAL/Alpha_shape_vertex_base_3.h 2.22KB
  135. CGAL5/include/CGAL/Alpha_wrap_3/
  136. CGAL5/include/CGAL/Alpha_wrap_3/internal/
  137. CGAL5/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_3.h 53.26KB
  138. CGAL5/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_AABB_geom_traits.h 8.7KB
  139. CGAL5/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_AABB_traits.h 8.88KB
  140. CGAL5/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_triangulation_cell_base_3.h 2.51KB
  141. CGAL5/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_triangulation_vertex_base_3.h 1.58KB
  142. CGAL5/include/CGAL/Alpha_wrap_3/internal/gate_priority_queue.h 2.61KB
  143. CGAL5/include/CGAL/Alpha_wrap_3/internal/geometry_utils.h 5.93KB
  144. CGAL5/include/CGAL/Alpha_wrap_3/internal/offset_intersection.h 7.01KB
  145. CGAL5/include/CGAL/Alpha_wrap_3/internal/oracles.h 957B
  146. CGAL5/include/CGAL/Alpha_wrap_3/internal/Oracle_base.h 10.92KB
  147. CGAL5/include/CGAL/Alpha_wrap_3/internal/Point_set_oracle.h 3.78KB
  148. CGAL5/include/CGAL/Alpha_wrap_3/internal/Segment_soup_oracle.h 3.86KB
  149. CGAL5/include/CGAL/Alpha_wrap_3/internal/splitting_helper.h 15.73KB
  150. CGAL5/include/CGAL/Alpha_wrap_3/internal/Triangle_mesh_oracle.h 6.59KB
  151. CGAL5/include/CGAL/Alpha_wrap_3/internal/Triangle_soup_oracle.h 7.17KB
  152. CGAL5/include/CGAL/alpha_wrap_3.h 18.64KB
  153. CGAL5/include/CGAL/Apollonius_graph_2/
  154. CGAL5/include/CGAL/Apollonius_graph_2/Apollonius_graph_2_impl.h 56.14KB
  155. CGAL5/include/CGAL/Apollonius_graph_2/Apollonius_graph_hierarchy_2_impl.h 14.99KB
  156. CGAL5/include/CGAL/Apollonius_graph_2/basic.h 744B
  157. CGAL5/include/CGAL/Apollonius_graph_2/Bounded_side_of_ccw_circle_C2.h 2.51KB
  158. CGAL5/include/CGAL/Apollonius_graph_2/comparator_profiler.h 4.43KB
  159. CGAL5/include/CGAL/Apollonius_graph_2/compare_quadratic.h 23.54KB
  160. CGAL5/include/CGAL/Apollonius_graph_2/Compare_weight_2.h 1.35KB
  161. CGAL5/include/CGAL/Apollonius_graph_2/Compare_x_2.h 1.31KB
  162. CGAL5/include/CGAL/Apollonius_graph_2/Compare_y_2.h 1.31KB
  163. CGAL5/include/CGAL/Apollonius_graph_2/Constructions_C2.h 12.9KB
  164. CGAL5/include/CGAL/Apollonius_graph_2/Constructions_ftC2.h 4.8KB
  165. CGAL5/include/CGAL/Apollonius_graph_2/Constructions_rtH2.h 2.4KB
  166. CGAL5/include/CGAL/Apollonius_graph_2/Finite_edge_test8_C2.h 22.49KB
  167. CGAL5/include/CGAL/Apollonius_graph_2/Finite_edge_test_C2.h 18.77KB
  168. CGAL5/include/CGAL/Apollonius_graph_2/Incircle8_C2.h 3.64KB
  169. CGAL5/include/CGAL/Apollonius_graph_2/Incircle_C2.h 7.26KB
  170. CGAL5/include/CGAL/Apollonius_graph_2/Infinite_edge_test_C2.h 10.04KB
  171. CGAL5/include/CGAL/Apollonius_graph_2/Is_degenerate_edge_C2.h 2.86KB
  172. CGAL5/include/CGAL/Apollonius_graph_2/Is_hidden_C2.h 2.22KB
  173. CGAL5/include/CGAL/Apollonius_graph_2/Kernel_wrapper_2.h 1.93KB
  174. CGAL5/include/CGAL/Apollonius_graph_2/Orientation8_C2.h 8.6KB
  175. CGAL5/include/CGAL/Apollonius_graph_2/Orientation_2.h 3.69KB
  176. CGAL5/include/CGAL/Apollonius_graph_2/Oriented_side_of_bisector_C2.h 3.79KB
  177. CGAL5/include/CGAL/Apollonius_graph_2/Predicates_C2.h 1.18KB
  178. CGAL5/include/CGAL/Apollonius_graph_2/Predicate_constructions_C2.h 10.39KB
  179. CGAL5/include/CGAL/Apollonius_graph_2/predicate_profiler.h 2.43KB
  180. CGAL5/include/CGAL/Apollonius_graph_2/Traits_wrapper_2.h 1.08KB
  181. CGAL5/include/CGAL/Apollonius_graph_2/uncertain/
  182. CGAL5/include/CGAL/Apollonius_graph_2/uncertain/uncertain_functions_on_signs.h 4.18KB
  183. CGAL5/include/CGAL/Apollonius_graph_2/uncertain/Uncertain_is_hidden_C2.h 2.63KB
  184. CGAL5/include/CGAL/Apollonius_graph_2/uncertain/Uncertain_oriented_side_of_bisector_C2.h 3.69KB
  185. CGAL5/include/CGAL/Apollonius_graph_2/uncertain/Uncertain_vertex_conflict_2.h 12.39KB
  186. CGAL5/include/CGAL/Apollonius_graph_2.h 40.99KB
  187. CGAL5/include/CGAL/Apollonius_graph_adaptation_policies_2.h 2.43KB
  188. CGAL5/include/CGAL/Apollonius_graph_adaptation_traits_2.h 1.55KB
  189. CGAL5/include/CGAL/Apollonius_graph_data_structure_2.h 937B
  190. CGAL5/include/CGAL/Apollonius_graph_filtered_traits_2.h 12.72KB
  191. CGAL5/include/CGAL/Apollonius_graph_hierarchy_2.h 12.52KB
  192. CGAL5/include/CGAL/Apollonius_graph_hierarchy_vertex_base_2.h 2.03KB
  193. CGAL5/include/CGAL/Apollonius_graph_traits_2.h 6.75KB
  194. CGAL5/include/CGAL/Apollonius_graph_vertex_base_2.h 3.57KB
  195. CGAL5/include/CGAL/Apollonius_site_2.h 1.85KB
  196. CGAL5/include/CGAL/apply_to_range.h 5.39KB
  197. CGAL5/include/CGAL/approximated_offset_2.h 6.61KB
  198. CGAL5/include/CGAL/Approximate_min_ellipsoid_d/
  199. CGAL5/include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_configure.h 5.87KB
  200. CGAL5/include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_debug.h 26.29KB
  201. CGAL5/include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_impl.h 9.33KB
  202. CGAL5/include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation.h 24.04KB
  203. CGAL5/include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation_impl.h 20.91KB
  204. CGAL5/include/CGAL/Approximate_min_ellipsoid_d.h 16.34KB
  205. CGAL5/include/CGAL/Approximate_min_ellipsoid_d_traits_2.h 1.54KB
  206. CGAL5/include/CGAL/Approximate_min_ellipsoid_d_traits_3.h 1.54KB
  207. CGAL5/include/CGAL/Approximate_min_ellipsoid_d_traits_d.h 1.55KB
  208. CGAL5/include/CGAL/argument_swaps.h 1.9KB
  209. CGAL5/include/CGAL/Arithmetic_kernel/
  210. CGAL5/include/CGAL/Arithmetic_kernel/Arithmetic_kernel_base.h 1.25KB
  211. CGAL5/include/CGAL/Arithmetic_kernel.h 2.1KB
  212. CGAL5/include/CGAL/Arrangement_2/
  213. CGAL5/include/CGAL/Arrangement_2/Arrangement_2_iterators.h 14.99KB
  214. CGAL5/include/CGAL/Arrangement_2/Arrangement_on_surface_2_global.h 67.3KB
  215. CGAL5/include/CGAL/Arrangement_2/Arrangement_on_surface_2_impl.h 209.87KB
  216. CGAL5/include/CGAL/Arrangement_2/arrangement_type_traits.h 2.81KB
  217. CGAL5/include/CGAL/Arrangement_2/Arrangement_zone_2_impl.h 51.64KB
  218. CGAL5/include/CGAL/Arrangement_2/Arr_compute_zone_visitor.h 6.53KB
  219. CGAL5/include/CGAL/Arrangement_2/Arr_default_planar_topology.h 2.33KB
  220. CGAL5/include/CGAL/Arrangement_2/Arr_do_intersect_zone_visitor.h 4.6KB
  221. CGAL5/include/CGAL/Arrangement_2/Arr_on_surface_with_history_2_impl.h 9.09KB
  222. CGAL5/include/CGAL/Arrangement_2/Arr_traits_adaptor_2.h 137.43KB
  223. CGAL5/include/CGAL/Arrangement_2/Arr_traits_adaptor_2_dispatching.h 18.45KB
  224. CGAL5/include/CGAL/Arrangement_2/Arr_with_history_accessor.h 4.74KB
  225. CGAL5/include/CGAL/Arrangement_2/graph_traits_dual.h 21.03KB
  226. CGAL5/include/CGAL/Arrangement_2.h 7.96KB
  227. CGAL5/include/CGAL/Arrangement_on_surface_2.h 113.15KB
  228. CGAL5/include/CGAL/Arrangement_on_surface_with_history_2.h 34.57KB
  229. CGAL5/include/CGAL/Arrangement_with_history_2.h 9.08KB
  230. CGAL5/include/CGAL/Arrangement_zone_2.h 20.04KB
  231. CGAL5/include/CGAL/arrange_offset_polygons_2.h 4.67KB
  232. CGAL5/include/CGAL/array.h 2.47KB
  233. CGAL5/include/CGAL/Arr_accessor.h 36.54KB
  234. CGAL5/include/CGAL/Arr_algebraic_segment_traits_2.h 22.6KB
  235. CGAL5/include/CGAL/Arr_batched_point_location.h 6KB
  236. CGAL5/include/CGAL/Arr_Bezier_curve_traits_2.h 25.8KB
  237. CGAL5/include/CGAL/Arr_bounded_planar_topology_traits_2.h 16.39KB
  238. CGAL5/include/CGAL/Arr_circle_segment_traits_2.h 23.83KB
  239. CGAL5/include/CGAL/Arr_circular_arc_traits_2.h 7.45KB
  240. CGAL5/include/CGAL/Arr_circular_line_arc_traits_2.h 18.81KB
  241. CGAL5/include/CGAL/Arr_conic_traits_2.h 26.82KB
  242. CGAL5/include/CGAL/Arr_consolidated_curve_data_traits_2.h 4.06KB
  243. CGAL5/include/CGAL/Arr_counting_traits_2.h 31.23KB
  244. CGAL5/include/CGAL/Arr_curve_data_traits_2.h 16.46KB
  245. CGAL5/include/CGAL/Arr_dcel_base.h 47.19KB
  246. CGAL5/include/CGAL/Arr_default_dcel.h 1.56KB
  247. CGAL5/include/CGAL/Arr_default_overlay_traits.h 2.93KB
  248. CGAL5/include/CGAL/Arr_directional_non_caching_segment_basic_traits_2.h 5.33KB
  249. CGAL5/include/CGAL/Arr_enums.h 4.6KB
  250. CGAL5/include/CGAL/Arr_extended_dcel.h 7.3KB
  251. CGAL5/include/CGAL/Arr_face_index_map.h 6.82KB
  252. CGAL5/include/CGAL/Arr_face_map.h 876B
  253. CGAL5/include/CGAL/Arr_geodesic_arc_on_sphere_partition_traits_2.h 18.28KB
  254. CGAL5/include/CGAL/Arr_geodesic_arc_on_sphere_traits_2.h 135.03KB
  255. CGAL5/include/CGAL/Arr_geometry_traits/
  256. CGAL5/include/CGAL/Arr_geometry_traits/Arr_plane_3.h 8.09KB
  257. CGAL5/include/CGAL/Arr_geometry_traits/Bezier_bounding_rational_traits.h 53.02KB
  258. CGAL5/include/CGAL/Arr_geometry_traits/Bezier_cache.h 29.6KB
  259. CGAL5/include/CGAL/Arr_geometry_traits/Bezier_curve_2.h 28.12KB
  260. CGAL5/include/CGAL/Arr_geometry_traits/Bezier_point_2.h 50.51KB
  261. CGAL5/include/CGAL/Arr_geometry_traits/Bezier_x_monotone_2.h 91.9KB
  262. CGAL5/include/CGAL/Arr_geometry_traits/Circle_segment_2.h 65.86KB
  263. CGAL5/include/CGAL/Arr_geometry_traits/Conic_arc_2.h 58.85KB
  264. CGAL5/include/CGAL/Arr_geometry_traits/Conic_intersections_2.h 8.74KB
  265. CGAL5/include/CGAL/Arr_geometry_traits/Conic_point_2.h 3.43KB
  266. CGAL5/include/CGAL/Arr_geometry_traits/Conic_x_monotone_arc_2.h 61.16KB
  267. CGAL5/include/CGAL/Arr_geometry_traits/Consolidated_curve_data_aux.h 4.13KB
  268. CGAL5/include/CGAL/Arr_geometry_traits/Curve_data_aux.h 2.35KB
  269. CGAL5/include/CGAL/Arr_geometry_traits/de_Casteljau_2.h 7.64KB
  270. CGAL5/include/CGAL/Arr_geometry_traits/IO/
  271. CGAL5/include/CGAL/Arr_geometry_traits/IO/Polycurve_2_iostream.h 5.54KB
  272. CGAL5/include/CGAL/Arr_geometry_traits/One_root_number.h 13.27KB
  273. CGAL5/include/CGAL/Arr_geometry_traits/Polycurve_2.h 16.04KB
  274. CGAL5/include/CGAL/Arr_geometry_traits/Polyline_2.h 5.11KB
  275. CGAL5/include/CGAL/Arr_geometry_traits/Rational_arc_2.h 77.75KB
  276. CGAL5/include/CGAL/Arr_geometry_traits/Segment_assertions.h 1.92KB
  277. CGAL5/include/CGAL/Arr_landmarks_point_location.h 12.46KB
  278. CGAL5/include/CGAL/Arr_linear_traits_2.h 59.41KB
  279. CGAL5/include/CGAL/Arr_line_arc_traits_2.h 5.16KB
  280. CGAL5/include/CGAL/Arr_naive_point_location.h 3.87KB
  281. CGAL5/include/CGAL/Arr_non_caching_segment_basic_traits_2.h 9.78KB
  282. CGAL5/include/CGAL/Arr_non_caching_segment_traits_2.h 14.6KB
  283. CGAL5/include/CGAL/Arr_observer.h 21.37KB
  284. CGAL5/include/CGAL/Arr_overlay.h 907B
  285. CGAL5/include/CGAL/Arr_overlay_2.h 14.25KB
  286. CGAL5/include/CGAL/Arr_point_location/
  287. CGAL5/include/CGAL/Arr_point_location/Arr_batched_point_location_traits_2.h 26.14KB
  288. CGAL5/include/CGAL/Arr_point_location/Arr_landmarks_pl_impl.h 37.44KB
  289. CGAL5/include/CGAL/Arr_point_location/Arr_lm_generator_base.h 13.64KB
  290. CGAL5/include/CGAL/Arr_point_location/Arr_lm_grid_generator.h 9.02KB
  291. CGAL5/include/CGAL/Arr_point_location/Arr_lm_halton_generator.h 5.05KB
  292. CGAL5/include/CGAL/Arr_point_location/Arr_lm_middle_edges_generator.h 5.55KB
  293. CGAL5/include/CGAL/Arr_point_location/Arr_lm_nearest_neighbor.h 7.25KB
  294. CGAL5/include/CGAL/Arr_point_location/Arr_lm_random_generator.h 4.1KB
  295. CGAL5/include/CGAL/Arr_point_location/Arr_lm_specified_points_generator.h 5.89KB
  296. CGAL5/include/CGAL/Arr_point_location/Arr_lm_vertices_generator.h 4.94KB
  297. CGAL5/include/CGAL/Arr_point_location/Arr_naive_point_location_impl.h 3.42KB
  298. CGAL5/include/CGAL/Arr_point_location/Arr_simple_point_location_impl.h 16.93KB
  299. CGAL5/include/CGAL/Arr_point_location/Arr_trapezoid_ric_pl_impl.h 13.21KB
  300. CGAL5/include/CGAL/Arr_point_location/Arr_triangulation_pl_functions.h 8.83KB
  301. CGAL5/include/CGAL/Arr_point_location/Arr_triangulation_pl_impl.h 9.31KB
  302. CGAL5/include/CGAL/Arr_point_location/Arr_walk_along_line_pl_impl.h 34.08KB
  303. CGAL5/include/CGAL/Arr_point_location/Td_active_edge.h 6.69KB
  304. CGAL5/include/CGAL/Arr_point_location/Td_active_fictitious_vertex.h 7.21KB
  305. CGAL5/include/CGAL/Arr_point_location/Td_active_trapezoid.h 11.79KB
  306. CGAL5/include/CGAL/Arr_point_location/Td_active_vertex.h 7.08KB
  307. CGAL5/include/CGAL/Arr_point_location/Td_dag.h 10.22KB
  308. CGAL5/include/CGAL/Arr_point_location/Td_dag_node.h 13.92KB
  309. CGAL5/include/CGAL/Arr_point_location/Td_inactive_edge.h 5.47KB
  310. CGAL5/include/CGAL/Arr_point_location/Td_inactive_fictitious_vertex.h 6.4KB
  311. CGAL5/include/CGAL/Arr_point_location/Td_inactive_trapezoid.h 1.15KB
  312. CGAL5/include/CGAL/Arr_point_location/Td_inactive_vertex.h 5.21KB
  313. CGAL5/include/CGAL/Arr_point_location/Td_ninetuple.h 1.35KB
  314. CGAL5/include/CGAL/Arr_point_location/Td_predicates.h 2.01KB
  315. CGAL5/include/CGAL/Arr_point_location/Td_traits.h 39.9KB
  316. CGAL5/include/CGAL/Arr_point_location/Td_X_trapezoid.h 32.89KB
  317. CGAL5/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2.h 72.9KB
  318. CGAL5/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_impl.h 113.25KB
  319. CGAL5/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_iostream.h 6.86KB
  320. CGAL5/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_misc.h 1.64KB
  321. CGAL5/include/CGAL/Arr_point_location_result.h 3.82KB
  322. CGAL5/include/CGAL/Arr_polycurve_basic_traits_2.h 108.78KB
  323. CGAL5/include/CGAL/Arr_polycurve_traits_2.h 45.84KB
  324. CGAL5/include/CGAL/Arr_polyline_traits_2.h 24.14KB
  325. CGAL5/include/CGAL/Arr_rational_function_traits_2.h 43.35KB
  326. CGAL5/include/CGAL/Arr_rat_arc/
  327. CGAL5/include/CGAL/Arr_rat_arc/Algebraic_point_2.h 13.98KB
  328. CGAL5/include/CGAL/Arr_rat_arc/Base_rational_arc_ds_1.h 3.92KB
  329. CGAL5/include/CGAL/Arr_rat_arc/Cache.h 10.54KB
  330. CGAL5/include/CGAL/Arr_rat_arc/Rational_arc_d_1.h 87.69KB
  331. CGAL5/include/CGAL/Arr_rat_arc/Rational_function.h 8.39KB
  332. CGAL5/include/CGAL/Arr_rat_arc/Rational_function_canonicalized_pair.h 18.31KB
  333. CGAL5/include/CGAL/Arr_rat_arc/Rational_function_ordered_pair.h 3.66KB
  334. CGAL5/include/CGAL/Arr_rat_arc/Rational_function_pair.h 3.33KB
  335. CGAL5/include/CGAL/Arr_rat_arc/Singleton.h 1.25KB
  336. CGAL5/include/CGAL/Arr_segment_traits_2.h 51.92KB
  337. CGAL5/include/CGAL/Arr_simple_point_location.h 6.95KB
  338. CGAL5/include/CGAL/Arr_spherical_gaussian_map_3/
  339. CGAL5/include/CGAL/Arr_spherical_gaussian_map_3/Arr_on_sphere_transformation.h 961B
  340. CGAL5/include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm.h 26.08KB
  341. CGAL5/include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_arr_dcel.h 3.5KB
  342. CGAL5/include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_initializer_visitor.h 2.47KB
  343. CGAL5/include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_overlay.h 5.65KB
  344. CGAL5/include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_polyhedron_3.h 8.16KB
  345. CGAL5/include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_traits.h 2.89KB
  346. CGAL5/include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_transformation.h 1.13KB
  347. CGAL5/include/CGAL/Arr_spherical_gaussian_map_3/Arr_spherical_gaussian_map_3.h 14.56KB
  348. CGAL5/include/CGAL/Arr_spherical_gaussian_map_3/Arr_transform_on_sphere.h 8.33KB
  349. CGAL5/include/CGAL/Arr_spherical_topology_traits_2.h 24.44KB
  350. CGAL5/include/CGAL/Arr_tags.h 21.41KB
  351. CGAL5/include/CGAL/Arr_topology_traits/
  352. CGAL5/include/CGAL/Arr_topology_traits/Arr_bounded_planar_batched_pl_helper.h 2.7KB
  353. CGAL5/include/CGAL/Arr_topology_traits/Arr_bounded_planar_construction_helper.h 5.16KB
  354. CGAL5/include/CGAL/Arr_topology_traits/Arr_bounded_planar_insertion_helper.h 2.64KB
  355. CGAL5/include/CGAL/Arr_topology_traits/Arr_bounded_planar_overlay_helper.h 3.88KB
  356. CGAL5/include/CGAL/Arr_topology_traits/Arr_bounded_planar_topology_traits_2_impl.h 2.37KB
  357. CGAL5/include/CGAL/Arr_topology_traits/Arr_bounded_planar_vert_decomp_helper.h 3.08KB
  358. CGAL5/include/CGAL/Arr_topology_traits/Arr_inc_insertion_zone_visitor.h 17.16KB
  359. CGAL5/include/CGAL/Arr_topology_traits/Arr_planar_topology_traits_base_2.h 13.99KB
  360. CGAL5/include/CGAL/Arr_topology_traits/Arr_spherical_batched_pl_helper.h 4.12KB
  361. CGAL5/include/CGAL/Arr_topology_traits/Arr_spherical_construction_helper.h 10.29KB
  362. CGAL5/include/CGAL/Arr_topology_traits/Arr_spherical_insertion_helper.h 10.15KB
  363. CGAL5/include/CGAL/Arr_topology_traits/Arr_spherical_overlay_helper.h 10.78KB
  364. CGAL5/include/CGAL/Arr_topology_traits/Arr_spherical_topology_traits_2_impl.h 36.07KB
  365. CGAL5/include/CGAL/Arr_topology_traits/Arr_spherical_vert_decomp_helper.h 6.17KB
  366. CGAL5/include/CGAL/Arr_topology_traits/Arr_unb_planar_batched_pl_helper.h 4.65KB
  367. CGAL5/include/CGAL/Arr_topology_traits/Arr_unb_planar_construction_helper.h 12.18KB
  368. CGAL5/include/CGAL/Arr_topology_traits/Arr_unb_planar_insertion_helper.h 7.27KB
  369. CGAL5/include/CGAL/Arr_topology_traits/Arr_unb_planar_overlay_helper.h 7.32KB
  370. CGAL5/include/CGAL/Arr_topology_traits/Arr_unb_planar_topology_traits_2_impl.h 30.63KB
  371. CGAL5/include/CGAL/Arr_topology_traits/Arr_unb_planar_vert_decomp_helper.h 6.03KB
  372. CGAL5/include/CGAL/Arr_tracing_traits_2.h 37.84KB
  373. CGAL5/include/CGAL/Arr_trapezoid_ric_point_location.h 14.62KB
  374. CGAL5/include/CGAL/Arr_triangulation_point_location.h 12.79KB
  375. CGAL5/include/CGAL/Arr_unb_planar_topology_traits_2.h 18.93KB
  376. CGAL5/include/CGAL/Arr_vertex_index_map.h 7.03KB
  377. CGAL5/include/CGAL/Arr_vertex_map.h 990B
  378. CGAL5/include/CGAL/Arr_vertical_decomposition_2.h 6.1KB
  379. CGAL5/include/CGAL/Arr_walk_along_line_point_location.h 7.92KB
  380. CGAL5/include/CGAL/assertions.h 14.81KB
  381. CGAL5/include/CGAL/assertions_behaviour.h 1.54KB
  382. CGAL5/include/CGAL/assertions_impl.h 7.4KB
  383. CGAL5/include/CGAL/atomic.h 996B
  384. CGAL5/include/CGAL/auto_link/
  385. CGAL5/include/CGAL/auto_link/auto_link.h 14.75KB
  386. CGAL5/include/CGAL/auto_link/CGAL.h 818B
  387. CGAL5/include/CGAL/auto_link/CORE.h 970B
  388. CGAL5/include/CGAL/auto_link/ImageIO.h 1000B
  389. CGAL5/include/CGAL/auto_link/Qt.h 948B
  390. CGAL5/include/CGAL/barycenter.h 4.03KB
  391. CGAL5/include/CGAL/Barycentric_coordinates_2/
  392. CGAL5/include/CGAL/Barycentric_coordinates_2/barycentric_enum_2.h 4.23KB
  393. CGAL5/include/CGAL/Barycentric_coordinates_2/boundary_coordinates_2.h 5.13KB
  394. CGAL5/include/CGAL/Barycentric_coordinates_2/Delaunay_domain_2.h 16.12KB
  395. CGAL5/include/CGAL/Barycentric_coordinates_2/Discrete_harmonic_2.h 18.76KB
  396. CGAL5/include/CGAL/Barycentric_coordinates_2/Discrete_harmonic_coordinates_2.h 18.23KB
  397. CGAL5/include/CGAL/Barycentric_coordinates_2/Generalized_barycentric_coordinates_2.h 26.97KB
  398. CGAL5/include/CGAL/Barycentric_coordinates_2/Harmonic_coordinates_2.h 19.04KB
  399. CGAL5/include/CGAL/Barycentric_coordinates_2/internal/
  400. CGAL5/include/CGAL/Barycentric_coordinates_2/internal/utils_2.h 12.32KB
  401. CGAL5/include/CGAL/Barycentric_coordinates_2/Mean_value_2.h 20.63KB
  402. CGAL5/include/CGAL/Barycentric_coordinates_2/Mean_value_coordinates_2.h 19.5KB
  403. CGAL5/include/CGAL/Barycentric_coordinates_2/segment_coordinates_2.h 12.99KB
  404. CGAL5/include/CGAL/Barycentric_coordinates_2/triangle_coordinates_2.h 13.82KB
  405. CGAL5/include/CGAL/Barycentric_coordinates_2/Wachspress_2.h 17.46KB
  406. CGAL5/include/CGAL/Barycentric_coordinates_2/Wachspress_coordinates_2.h 17.4KB
  407. CGAL5/include/CGAL/Barycentric_coordinates_2.h 1.68KB
  408. CGAL5/include/CGAL/Base_with_time_stamp.h 937B
  409. CGAL5/include/CGAL/basic.h 854B
  410. CGAL5/include/CGAL/basic_classes.h 845B
  411. CGAL5/include/CGAL/basic_constructions_2.h 737B
  412. CGAL5/include/CGAL/basic_constructions_3.h 736B
  413. CGAL5/include/CGAL/Basic_shaders.h 6.35KB
  414. CGAL5/include/CGAL/Bbox_2.h 5.81KB
  415. CGAL5/include/CGAL/Bbox_3.h 7KB
  416. CGAL5/include/CGAL/Bigfloat_interval_traits.h 1.62KB
  417. CGAL5/include/CGAL/bilateral_smooth_point_set.h 16.52KB
  418. CGAL5/include/CGAL/Boolean_set_operations_2/
  419. CGAL5/include/CGAL/Boolean_set_operations_2/Bso_internal_functions.h 22.32KB
  420. CGAL5/include/CGAL/Boolean_set_operations_2/Ccb_curve_iterator.h 2.98KB
  421. CGAL5/include/CGAL/Boolean_set_operations_2/complement.h 4.94KB
  422. CGAL5/include/CGAL/Boolean_set_operations_2/Curve_with_halfedge.h 1.16KB
  423. CGAL5/include/CGAL/Boolean_set_operations_2/difference.h 10.61KB
  424. CGAL5/include/CGAL/Boolean_set_operations_2/do_intersect.h 12.87KB
  425. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_agg_meta_traits.h 16.69KB
  426. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_agg_op.h 6.3KB
  427. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_agg_op_surface_sweep_2.h 8.31KB
  428. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_agg_op_visitor.h 8.78KB
  429. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_base_functor.h 2.42KB
  430. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_bfs_base_visitor.h 3.34KB
  431. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_bfs_intersection_visitor.h 2.14KB
  432. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_bfs_join_visitor.h 1.92KB
  433. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_bfs_scanner.h 2.82KB
  434. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_bfs_xor_visitor.h 3.23KB
  435. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_default_dcel.h 2.81KB
  436. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_default_traits.h 1.81KB
  437. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_difference_functor.h 1.26KB
  438. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_do_intersect_functor.h 3.2KB
  439. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_insertion_meta_traits.h 3.81KB
  440. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_intersection_functor.h 1.27KB
  441. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_join_functor.h 1.22KB
  442. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_merge.h 3.34KB
  443. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_on_surface_base_2.h 54.49KB
  444. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_on_surface_base_2_impl.h 24.97KB
  445. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_polygon_simplifier.h 6.17KB
  446. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_polygon_validation.h 30.72KB
  447. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_simplifier_traits.h 11.83KB
  448. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_sym_diff_functor.h 1.29KB
  449. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_traits_adaptor.h 5.88KB
  450. CGAL5/include/CGAL/Boolean_set_operations_2/Gps_traits_decorator.h 13.4KB
  451. CGAL5/include/CGAL/Boolean_set_operations_2/Indexed_event.h 1.46KB
  452. CGAL5/include/CGAL/Boolean_set_operations_2/intersection.h 14.6KB
  453. CGAL5/include/CGAL/Boolean_set_operations_2/join.h 13.65KB
  454. CGAL5/include/CGAL/Boolean_set_operations_2/oriented_side.h 13.38KB
  455. CGAL5/include/CGAL/Boolean_set_operations_2/Point_with_vertex.h 1.11KB
  456. CGAL5/include/CGAL/Boolean_set_operations_2/Polygon_2_curve_iterator.h 4.53KB
  457. CGAL5/include/CGAL/Boolean_set_operations_2/Polygon_conversions.h 9.43KB
  458. CGAL5/include/CGAL/Boolean_set_operations_2/symmetric_difference.h 14.8KB
  459. CGAL5/include/CGAL/Boolean_set_operations_2.h 1.13KB
  460. CGAL5/include/CGAL/boost/
  461. CGAL5/include/CGAL/boost/bimap/
  462. CGAL5/include/CGAL/boost/bimap/multiset_of.hpp 795B
  463. CGAL5/include/CGAL/boost/bimap.hpp 765B
  464. CGAL5/include/CGAL/boost/graph/
  465. CGAL5/include/CGAL/boost/graph/alpha_expansion_graphcut.h 26.56KB
  466. CGAL5/include/CGAL/boost/graph/Alpha_expansion_MaxFlow_tag.h 2.14KB
  467. CGAL5/include/CGAL/boost/graph/backward_compatibility_functions.h 2.17KB
  468. CGAL5/include/CGAL/boost/graph/breadth_first_search.h 888B
  469. CGAL5/include/CGAL/boost/graph/convert_nef_polyhedron_to_polygon_mesh.h 14.19KB
  470. CGAL5/include/CGAL/boost/graph/copy_face_graph.h 16.54KB
  471. CGAL5/include/CGAL/boost/graph/dijkstra_shortest_paths.h 907B
  472. CGAL5/include/CGAL/boost/graph/Dual.h 13.8KB
  473. CGAL5/include/CGAL/boost/graph/Euler_operations.h 61.74KB
  474. CGAL5/include/CGAL/boost/graph/Face_filtered_graph.h 58.02KB
  475. CGAL5/include/CGAL/boost/graph/generators.h 29.9KB
  476. CGAL5/include/CGAL/boost/graph/graph_concepts.h 4.84KB
  477. CGAL5/include/CGAL/boost/graph/graph_traits_Arrangement_2.h 750B
  478. CGAL5/include/CGAL/boost/graph/graph_traits_Constrained_Delaunay_triangulation_2.h 1.33KB
  479. CGAL5/include/CGAL/boost/graph/graph_traits_Constrained_triangulation_2.h 1.25KB
  480. CGAL5/include/CGAL/boost/graph/graph_traits_Constrained_triangulation_plus_2.h 1.24KB
  481. CGAL5/include/CGAL/boost/graph/graph_traits_Delaunay_triangulation_2.h 1.19KB
  482. CGAL5/include/CGAL/boost/graph/graph_traits_Dual_Arrangement_2.h 775B
  483. CGAL5/include/CGAL/boost/graph/graph_traits_HalfedgeDS.h 7.38KB
  484. CGAL5/include/CGAL/boost/graph/graph_traits_HalfedgeDS_default.h 17.52KB
  485. CGAL5/include/CGAL/boost/graph/graph_traits_inheritance_macros.h 6.65KB
  486. CGAL5/include/CGAL/boost/graph/graph_traits_Linear_cell_complex_for_combinatorial_map.h 21.88KB
  487. CGAL5/include/CGAL/boost/graph/graph_traits_OpenMesh.h 19.15KB
  488. CGAL5/include/CGAL/boost/graph/graph_traits_Polyhedron_3.h 18.6KB
  489. CGAL5/include/CGAL/boost/graph/graph_traits_PolyMesh_ArrayKernelT.h 1012B
  490. CGAL5/include/CGAL/boost/graph/graph_traits_Regular_triangulation_2.h 1.18KB
  491. CGAL5/include/CGAL/boost/graph/graph_traits_Seam_mesh.h 11.23KB
  492. CGAL5/include/CGAL/boost/graph/graph_traits_Surface_mesh.h 14.73KB
  493. CGAL5/include/CGAL/boost/graph/graph_traits_Triangulation_2.h 1.11KB
  494. CGAL5/include/CGAL/boost/graph/graph_traits_Triangulation_data_structure_2.h 15.5KB
  495. CGAL5/include/CGAL/boost/graph/graph_traits_Triangulation_hierarchy_2.h 1.18KB
  496. CGAL5/include/CGAL/boost/graph/graph_traits_TriMesh_ArrayKernelT.h 1004B
  497. CGAL5/include/CGAL/boost/graph/Graph_with_descriptor_with_graph.h 31.44KB
  498. CGAL5/include/CGAL/boost/graph/Graph_with_descriptor_with_graph_fwd.h 654B
  499. CGAL5/include/CGAL/boost/graph/halfedge_graph_traits.h 704B
  500. CGAL5/include/CGAL/boost/graph/halfedge_graph_traits_HalfedgeDS.h 1.96KB
  501. CGAL5/include/CGAL/boost/graph/halfedge_graph_traits_Polyhedron_3.h 951B
  502. CGAL5/include/CGAL/boost/graph/helpers.h 29.81KB
  503. CGAL5/include/CGAL/boost/graph/internal/
  504. CGAL5/include/CGAL/boost/graph/internal/graph_traits_2D_TDS_helper.h 9.18KB
  505. CGAL5/include/CGAL/boost/graph/internal/graph_traits_2D_triangulation.h 18.41KB
  506. CGAL5/include/CGAL/boost/graph/internal/graph_traits_2D_triangulation_helper.h 5.98KB
  507. CGAL5/include/CGAL/boost/graph/internal/Has_member_clear.h 839B
  508. CGAL5/include/CGAL/boost/graph/internal/Has_member_id.h 857B
  509. CGAL5/include/CGAL/boost/graph/internal/helpers.h 5.43KB
  510. CGAL5/include/CGAL/boost/graph/internal/initialized_index_maps_helpers.h 11.68KB
  511. CGAL5/include/CGAL/boost/graph/internal/OM_iterator_from_circulator.h 4.82KB
  512. CGAL5/include/CGAL/boost/graph/internal/properties_2D_triangulation.h 12.77KB
  513. CGAL5/include/CGAL/boost/graph/IO/
  514. CGAL5/include/CGAL/boost/graph/IO/3MF.h 4.13KB
  515. CGAL5/include/CGAL/boost/graph/IO/Generic_facegraph_builder.h 7.68KB
  516. CGAL5/include/CGAL/boost/graph/IO/Generic_facegraph_printer.h 6.8KB
  517. CGAL5/include/CGAL/boost/graph/IO/GOCAD.h 15.12KB
  518. CGAL5/include/CGAL/boost/graph/IO/INP.h 3.13KB
  519. CGAL5/include/CGAL/boost/graph/IO/OBJ.h 10.31KB
  520. CGAL5/include/CGAL/boost/graph/IO/OFF.h 19.41KB
  521. CGAL5/include/CGAL/boost/graph/IO/PLY.h 21.7KB
  522. CGAL5/include/CGAL/boost/graph/IO/polygon_mesh_io.h 8.46KB
  523. CGAL5/include/CGAL/boost/graph/IO/STL.h 14.34KB
  524. CGAL5/include/CGAL/boost/graph/IO/Tds_2_off.h 3.65KB
  525. CGAL5/include/CGAL/boost/graph/IO/VTK.h 18.68KB
  526. CGAL5/include/CGAL/boost/graph/IO/WRL.h 4.63KB
  527. CGAL5/include/CGAL/boost/graph/io.h 859B
  528. CGAL5/include/CGAL/boost/graph/iterator.h 41.92KB
  529. CGAL5/include/CGAL/boost/graph/kruskal_min_spanning_tree.h 918B
  530. CGAL5/include/CGAL/boost/graph/METIS/
  531. CGAL5/include/CGAL/boost/graph/METIS/partition_dual_graph.h 7.96KB
  532. CGAL5/include/CGAL/boost/graph/METIS/partition_graph.h 9.02KB
  533. CGAL5/include/CGAL/boost/graph/named_params_helper.h 20.52KB
  534. CGAL5/include/CGAL/boost/graph/partition.h 2.69KB
  535. CGAL5/include/CGAL/boost/graph/prim_minimum_spanning_tree.h 924B
  536. CGAL5/include/CGAL/boost/graph/properties.h 6.69KB
  537. CGAL5/include/CGAL/boost/graph/properties_Constrained_Delaunay_triangulation_2.h 986B
  538. CGAL5/include/CGAL/boost/graph/properties_Constrained_triangulation_2.h 923B
  539. CGAL5/include/CGAL/boost/graph/properties_Constrained_triangulation_plus_2.h 918B
  540. CGAL5/include/CGAL/boost/graph/properties_Delaunay_triangulation_2.h 881B
  541. CGAL5/include/CGAL/boost/graph/properties_HalfedgeDS_base.h 15.27KB
  542. CGAL5/include/CGAL/boost/graph/properties_HalfedgeDS_default.h 602B
  543. CGAL5/include/CGAL/boost/graph/properties_Linear_cell_complex_for_combinatorial_map.h 15.62KB
  544. CGAL5/include/CGAL/boost/graph/properties_OpenMesh.h 18.02KB
  545. CGAL5/include/CGAL/boost/graph/properties_Polyhedron_3.h 17.54KB
  546. CGAL5/include/CGAL/boost/graph/properties_Polyhedron_3_features.h 6.5KB
  547. CGAL5/include/CGAL/boost/graph/properties_Polyhedron_3_time_stamp.h 1.79KB
  548. CGAL5/include/CGAL/boost/graph/properties_PolyMesh_ArrayKernelT.h 757B
  549. CGAL5/include/CGAL/boost/graph/properties_Regular_triangulation_2.h 874B
  550. CGAL5/include/CGAL/boost/graph/properties_Seam_mesh.h 5.44KB
  551. CGAL5/include/CGAL/boost/graph/properties_Surface_mesh.h 14.45KB
  552. CGAL5/include/CGAL/boost/graph/properties_Surface_mesh_features.h 5.95KB
  553. CGAL5/include/CGAL/boost/graph/properties_Surface_mesh_time_stamp.h 4.06KB
  554. CGAL5/include/CGAL/boost/graph/properties_Triangulation_2.h 818B
  555. CGAL5/include/CGAL/boost/graph/properties_Triangulation_data_structure_2.h 11.32KB
  556. CGAL5/include/CGAL/boost/graph/properties_Triangulation_hierarchy_2.h 869B
  557. CGAL5/include/CGAL/boost/graph/properties_TriMesh_ArrayKernelT.h 806B
  558. CGAL5/include/CGAL/boost/graph/property_maps.h 7.55KB
  559. CGAL5/include/CGAL/boost/graph/Seam_mesh.h 34.31KB
  560. CGAL5/include/CGAL/boost/graph/selection.h 41.34KB
  561. CGAL5/include/CGAL/boost/graph/split_graph_into_polylines.h 13.77KB
  562. CGAL5/include/CGAL/boost/graph/visitor.h 22.87KB
  563. CGAL5/include/CGAL/boost/iterator/
  564. CGAL5/include/CGAL/boost/iterator/counting_iterator.hpp 961B
  565. CGAL5/include/CGAL/boost/iterator/transform_iterator.hpp 972B
  566. CGAL5/include/CGAL/boost/parameter.h 4.76KB
  567. CGAL5/include/CGAL/boost_mp.h 32.53KB
  568. CGAL5/include/CGAL/BOOST_MP_arithmetic_kernel.h 2.24KB
  569. CGAL5/include/CGAL/Bounded_kernel.h 10.5KB
  570. CGAL5/include/CGAL/bounding_box.h 4.12KB
  571. CGAL5/include/CGAL/Box_intersection_d/
  572. CGAL5/include/CGAL/Box_intersection_d/Box_d.h 7KB
  573. CGAL5/include/CGAL/Box_intersection_d/box_limits.h 1.48KB
  574. CGAL5/include/CGAL/Box_intersection_d/Box_traits_d.h 5.57KB
  575. CGAL5/include/CGAL/Box_intersection_d/Box_with_handle_d.h 2.54KB
  576. CGAL5/include/CGAL/Box_intersection_d/Box_with_info_d.h 1.57KB
  577. CGAL5/include/CGAL/Box_intersection_d/segment_tree.h 15.94KB
  578. CGAL5/include/CGAL/box_intersection_d.h 22.2KB
  579. CGAL5/include/CGAL/Buffer_for_vao.h 29.23KB
  580. CGAL5/include/CGAL/Cache.h 5.1KB
  581. CGAL5/include/CGAL/Cartesian/
  582. CGAL5/include/CGAL/Cartesian/Aff_transformation_2.h 6.25KB
  583. CGAL5/include/CGAL/Cartesian/Aff_transformation_3.h 6.27KB
  584. CGAL5/include/CGAL/Cartesian/Aff_transformation_rep_2.h 8.8KB
  585. CGAL5/include/CGAL/Cartesian/Aff_transformation_rep_3.h 11.45KB
  586. CGAL5/include/CGAL/Cartesian/basic_constructions_2.h 890B
  587. CGAL5/include/CGAL/Cartesian/basic_constructions_3.h 891B
  588. CGAL5/include/CGAL/Cartesian/Cartesian_base.h 6.2KB
  589. CGAL5/include/CGAL/Cartesian/Circle_2.h 1.97KB
  590. CGAL5/include/CGAL/Cartesian/Circle_3.h 9.4KB
  591. CGAL5/include/CGAL/Cartesian/ConicCPA2.h 19.69KB
  592. CGAL5/include/CGAL/Cartesian/Data_accessor_2.h 1.27KB
  593. CGAL5/include/CGAL/Cartesian/Direction_2.h 2.27KB
  594. CGAL5/include/CGAL/Cartesian/Direction_3.h 2.93KB
  595. CGAL5/include/CGAL/Cartesian/ft_constructions_2.h 1.68KB
  596. CGAL5/include/CGAL/Cartesian/ft_constructions_3.h 1.81KB
  597. CGAL5/include/CGAL/Cartesian/function_objects.h 126.24KB
  598. CGAL5/include/CGAL/Cartesian/Iso_cuboid_3.h 9.07KB
  599. CGAL5/include/CGAL/Cartesian/Iso_rectangle_2.h 1.76KB
  600. CGAL5/include/CGAL/Cartesian/Is_trivial_construction.h 16.53KB
  601. CGAL5/include/CGAL/Cartesian/Line_2.h 2.17KB
  602. CGAL5/include/CGAL/Cartesian/Line_3.h 3.46KB
  603. CGAL5/include/CGAL/Cartesian/line_constructions_2.h 1.31KB
  604. CGAL5/include/CGAL/Cartesian/MatrixC33.h 6.33KB
  605. CGAL5/include/CGAL/Cartesian/Plane_3.h 7.73KB
  606. CGAL5/include/CGAL/Cartesian/plane_constructions_3.h 1.9KB
  607. CGAL5/include/CGAL/Cartesian/Point_2.h 2.35KB
  608. CGAL5/include/CGAL/Cartesian/Point_3.h 2.91KB
  609. CGAL5/include/CGAL/Cartesian/point_constructions_2.h 1.28KB
  610. CGAL5/include/CGAL/Cartesian/point_constructions_3.h 1.35KB
  611. CGAL5/include/CGAL/Cartesian/predicates_on_directions_2.h 1.2KB
  612. CGAL5/include/CGAL/Cartesian/predicates_on_planes_3.h 1.29KB
  613. CGAL5/include/CGAL/Cartesian/predicates_on_points_2.h 1.53KB
  614. CGAL5/include/CGAL/Cartesian/predicates_on_points_3.h 2.2KB
  615. CGAL5/include/CGAL/Cartesian/Ray_2.h 1.47KB
  616. CGAL5/include/CGAL/Cartesian/Ray_3.h 4.41KB
  617. CGAL5/include/CGAL/Cartesian/Reflection_rep_2.h 5.85KB
  618. CGAL5/include/CGAL/Cartesian/Rotation_rep_2.h 5.42KB
  619. CGAL5/include/CGAL/Cartesian/Scaling_rep_2.h 4.03KB
  620. CGAL5/include/CGAL/Cartesian/Scaling_rep_3.h 4.53KB
  621. CGAL5/include/CGAL/Cartesian/Segment_2.h 1.41KB
  622. CGAL5/include/CGAL/Cartesian/Segment_3.h 4.64KB
  623. CGAL5/include/CGAL/Cartesian/solve_3.h 1.72KB
  624. CGAL5/include/CGAL/Cartesian/Sphere_3.h 7.99KB
  625. CGAL5/include/CGAL/Cartesian/Tetrahedron_3.h 5.58KB
  626. CGAL5/include/CGAL/Cartesian/Translation_rep_2.h 4.8KB
  627. CGAL5/include/CGAL/Cartesian/Translation_rep_3.h 5.12KB
  628. CGAL5/include/CGAL/Cartesian/Triangle_2.h 1.66KB
  629. CGAL5/include/CGAL/Cartesian/Triangle_3.h 3.19KB
  630. CGAL5/include/CGAL/Cartesian/Vector_2.h 3.26KB
  631. CGAL5/include/CGAL/Cartesian/Vector_3.h 5.74KB
  632. CGAL5/include/CGAL/Cartesian/Weighted_point_2.h 2.75KB
  633. CGAL5/include/CGAL/Cartesian/Weighted_point_3.h 2.77KB
  634. CGAL5/include/CGAL/Cartesian.h 1.76KB
  635. CGAL5/include/CGAL/Cartesian_converter.h 12.98KB
  636. CGAL5/include/CGAL/Cartesian_converter_fwd.h 881B
  637. CGAL5/include/CGAL/Cartesian_d.h 15.53KB
  638. CGAL5/include/CGAL/cartesian_homogeneous_conversion.h 3.52KB
  639. CGAL5/include/CGAL/Cartesian_matrix.h 3.12KB
  640. CGAL5/include/CGAL/CC_safe_handle.h 1.32KB
  641. CGAL5/include/CGAL/Cell_attribute.h 12.28KB
  642. CGAL5/include/CGAL/Cell_attribute_with_id.h 2.07KB
  643. CGAL5/include/CGAL/Cell_attribute_with_point.h 4.86KB
  644. CGAL5/include/CGAL/Cell_attribute_with_point_and_id.h 2.52KB
  645. CGAL5/include/CGAL/Cell_const_iterators.h 3.97KB
  646. CGAL5/include/CGAL/Cell_iterators.h 14.16KB
  647. CGAL5/include/CGAL/centroid.h 27.14KB
  648. CGAL5/include/CGAL/certified_numeric_predicates.h 4.41KB
  649. CGAL5/include/CGAL/certified_quotient_predicates.h 3.69KB
  650. CGAL5/include/CGAL/CGAL_Ipelet_base.h 500B
  651. CGAL5/include/CGAL/CGAL_Ipelet_base_v6.h 38.25KB
  652. CGAL5/include/CGAL/CGAL_Ipelet_base_v7.h 39.07KB
  653. CGAL5/include/CGAL/Chinese_remainder_traits.h 3KB
  654. CGAL5/include/CGAL/ch_akl_toussaint.h 1.58KB
  655. CGAL5/include/CGAL/ch_bykat.h 2.21KB
  656. CGAL5/include/CGAL/ch_eddy.h 1.46KB
  657. CGAL5/include/CGAL/ch_function_objects_2.h 1.57KB
  658. CGAL5/include/CGAL/ch_graham_andrew.h 3.76KB
  659. CGAL5/include/CGAL/ch_jarvis.h 2.81KB
  660. CGAL5/include/CGAL/ch_melkman.h 1.28KB
  661. CGAL5/include/CGAL/ch_selected_extreme_points_2.h 7.21KB
  662. CGAL5/include/CGAL/Circle_2.h 7.46KB
  663. CGAL5/include/CGAL/Circle_3.h 4.7KB
  664. CGAL5/include/CGAL/Circle_type.h 1020B
  665. CGAL5/include/CGAL/Circular_arc_2.h 5.32KB
  666. CGAL5/include/CGAL/Circular_arc_3.h 5.74KB
  667. CGAL5/include/CGAL/Circular_arc_point_2.h 4.46KB
  668. CGAL5/include/CGAL/Circular_arc_point_3.h 8.08KB
  669. CGAL5/include/CGAL/Circular_kernel_2/
  670. CGAL5/include/CGAL/Circular_kernel_2/Circular_arc_2.h 25.63KB
  671. CGAL5/include/CGAL/Circular_kernel_2/Circular_arc_point_2.h 4.07KB
  672. CGAL5/include/CGAL/Circular_kernel_2/function_objects_on_circle_2.h 1.99KB
  673. CGAL5/include/CGAL/Circular_kernel_2/function_objects_on_line_2.h 1.85KB
  674. CGAL5/include/CGAL/Circular_kernel_2/function_objects_polynomial_circular.h 28.63KB
  675. CGAL5/include/CGAL/Circular_kernel_2/interface_macros.h 3.98KB
  676. CGAL5/include/CGAL/Circular_kernel_2/internal_functions_on_circle_2.h 6.45KB
  677. CGAL5/include/CGAL/Circular_kernel_2/internal_functions_on_circular_arc_2.h 62.43KB
  678. CGAL5/include/CGAL/Circular_kernel_2/internal_functions_on_line_2.h 2.31KB
  679. CGAL5/include/CGAL/Circular_kernel_2/internal_functions_on_line_arc_2.h 26.11KB
  680. CGAL5/include/CGAL/Circular_kernel_2/intersection_line_2_circle_2_map.h 2.21KB
  681. CGAL5/include/CGAL/Circular_kernel_2/Intersection_traits.h 6.71KB
  682. CGAL5/include/CGAL/Circular_kernel_2/Line_arc_2.h 11.14KB
  683. CGAL5/include/CGAL/Circular_kernel_2.h 3.98KB
  684. CGAL5/include/CGAL/Circular_kernel_3/
  685. CGAL5/include/CGAL/Circular_kernel_3/Circular_arc_3.h 11.92KB
  686. CGAL5/include/CGAL/Circular_kernel_3/Circular_arc_point_3.h 9.65KB
  687. CGAL5/include/CGAL/Circular_kernel_3/function_objects_polynomial_sphere.h 54.18KB
  688. CGAL5/include/CGAL/Circular_kernel_3/get_equation_object_on_curved_kernel_3.h 2.25KB
  689. CGAL5/include/CGAL/Circular_kernel_3/interface_macros.h 4.29KB
  690. CGAL5/include/CGAL/Circular_kernel_3/internal_functions_on_circle_3.h 7.71KB
  691. CGAL5/include/CGAL/Circular_kernel_3/internal_functions_on_circular_arc_3.h 29.19KB
  692. CGAL5/include/CGAL/Circular_kernel_3/internal_functions_on_circular_arc_point_3.h 6.58KB
  693. CGAL5/include/CGAL/Circular_kernel_3/internal_functions_on_line_3.h 1.28KB
  694. CGAL5/include/CGAL/Circular_kernel_3/internal_functions_on_line_arc_3.h 10.37KB
  695. CGAL5/include/CGAL/Circular_kernel_3/internal_functions_on_plane_3.h 1.18KB
  696. CGAL5/include/CGAL/Circular_kernel_3/internal_functions_on_sphere_3.h 24.04KB
  697. CGAL5/include/CGAL/Circular_kernel_3/internal_function_compare_spherical_kernel.h 2.69KB
  698. CGAL5/include/CGAL/Circular_kernel_3/internal_function_compare_to_right_spherical_kernel.h 10.55KB
  699. CGAL5/include/CGAL/Circular_kernel_3/internal_function_has_on_spherical_kernel.h 9.13KB
  700. CGAL5/include/CGAL/Circular_kernel_3/Intersection_traits.h 6.43KB
  701. CGAL5/include/CGAL/Circular_kernel_3/Line_arc_3.h 7.13KB
  702. CGAL5/include/CGAL/Circular_kernel_converter.h 7.03KB
  703. CGAL5/include/CGAL/Circular_kernel_intersections.h 3.85KB
  704. CGAL5/include/CGAL/Circular_kernel_type_equality_wrapper.h 2.05KB
  705. CGAL5/include/CGAL/Circulator/
  706. CGAL5/include/CGAL/Circulator/Circulator_adapters.h 21.51KB
  707. CGAL5/include/CGAL/Circulator/Circulator_concepts.h 3KB
  708. CGAL5/include/CGAL/Circulator/Safe_circulator_from_iterator.h 6.77KB
  709. CGAL5/include/CGAL/circulator.h 35.47KB
  710. CGAL5/include/CGAL/circulator_bases.h 4.57KB
  711. CGAL5/include/CGAL/Circulator_identity.h 3.72KB
  712. CGAL5/include/CGAL/Circulator_on_node.h 2.43KB
  713. CGAL5/include/CGAL/Circulator_project.h 3.36KB
  714. CGAL5/include/CGAL/Classification/
  715. CGAL5/include/CGAL/Classification/classify.h 14.23KB
  716. CGAL5/include/CGAL/Classification/Cluster.h 6.79KB
  717. CGAL5/include/CGAL/Classification/compressed_float.h 1.66KB
  718. CGAL5/include/CGAL/Classification/ETHZ/
  719. CGAL5/include/CGAL/Classification/ETHZ/internal/
  720. CGAL5/include/CGAL/Classification/ETHZ/internal/dataview.h 5.8KB
  721. CGAL5/include/CGAL/Classification/ETHZ/internal/random-forest/
  722. CGAL5/include/CGAL/Classification/ETHZ/internal/random-forest/common-libraries.hpp 13.08KB
  723. CGAL5/include/CGAL/Classification/ETHZ/internal/random-forest/forest.hpp 8.62KB
  724. CGAL5/include/CGAL/Classification/ETHZ/internal/random-forest/node-gini.hpp 4.21KB
  725. CGAL5/include/CGAL/Classification/ETHZ/internal/random-forest/node.hpp 10.29KB
  726. CGAL5/include/CGAL/Classification/ETHZ/internal/random-forest/tree.hpp 4.25KB
  727. CGAL5/include/CGAL/Classification/ETHZ/Random_forest_classifier.h 11.71KB
  728. CGAL5/include/CGAL/Classification/Evaluation.h 14.33KB
  729. CGAL5/include/CGAL/Classification/Feature/
  730. CGAL5/include/CGAL/Classification/Feature/Cluster_mean_of_feature.h 2.28KB
  731. CGAL5/include/CGAL/Classification/Feature/Cluster_size.h 1.69KB
  732. CGAL5/include/CGAL/Classification/Feature/Cluster_variance_of_feature.h 2.6KB
  733. CGAL5/include/CGAL/Classification/Feature/Cluster_vertical_extent.h 2.34KB
  734. CGAL5/include/CGAL/Classification/Feature/Color_channel.h 3.2KB
  735. CGAL5/include/CGAL/Classification/Feature/Distance_to_plane.h 3.15KB
  736. CGAL5/include/CGAL/Classification/Feature/Echo_scatter.h 5.08KB
  737. CGAL5/include/CGAL/Classification/Feature/Eigenvalue.h 2.02KB
  738. CGAL5/include/CGAL/Classification/Feature/Elevation.h 5.94KB
  739. CGAL5/include/CGAL/Classification/Feature/Gradient_of_feature.h 2.08KB
  740. CGAL5/include/CGAL/Classification/Feature/Height_above.h 3.61KB
  741. CGAL5/include/CGAL/Classification/Feature/Height_below.h 3.61KB
  742. CGAL5/include/CGAL/Classification/Feature/Simple_feature.h 1.93KB
  743. CGAL5/include/CGAL/Classification/Feature/Verticality.h 3.4KB
  744. CGAL5/include/CGAL/Classification/Feature/Vertical_dispersion.h 5.72KB
  745. CGAL5/include/CGAL/Classification/Feature/Vertical_range.h 3.63KB
  746. CGAL5/include/CGAL/Classification/Feature_base.h 2.87KB
  747. CGAL5/include/CGAL/Classification/Feature_set.h 8.58KB
  748. CGAL5/include/CGAL/Classification/Image.h 2.82KB
  749. CGAL5/include/CGAL/Classification/internal/
  750. CGAL5/include/CGAL/Classification/internal/verbosity.h 1.03KB
  751. CGAL5/include/CGAL/Classification/Label.h 2.85KB
  752. CGAL5/include/CGAL/Classification/Label_set.h 11.84KB
  753. CGAL5/include/CGAL/Classification/Local_eigen_analysis.h 23.88KB
  754. CGAL5/include/CGAL/Classification/Mesh_feature_generator.h 13.16KB
  755. CGAL5/include/CGAL/Classification/Mesh_neighborhood.h 5.74KB
  756. CGAL5/include/CGAL/Classification/OpenCV/
  757. CGAL5/include/CGAL/Classification/OpenCV/Random_forest_classifier.h 10.88KB
  758. CGAL5/include/CGAL/Classification/Planimetric_grid.h 9.38KB
  759. CGAL5/include/CGAL/Classification/Point_set_feature_generator.h 16.36KB
  760. CGAL5/include/CGAL/Classification/Point_set_neighborhood.h 11.33KB
  761. CGAL5/include/CGAL/Classification/property_maps.h 4.62KB
  762. CGAL5/include/CGAL/Classification/Sum_of_weighted_features_classifier.h 30.77KB
  763. CGAL5/include/CGAL/Classification.h 2.1KB
  764. CGAL5/include/CGAL/cluster_point_set.h 10.13KB
  765. CGAL5/include/CGAL/CMap_linear_cell_complex_storages.h 15.7KB
  766. CGAL5/include/CGAL/CMap_linear_cell_complex_storages_with_index.h 18.69KB
  767. CGAL5/include/CGAL/Coercion_traits.h 9.45KB
  768. CGAL5/include/CGAL/Combination_enumerator.h 3.17KB
  769. CGAL5/include/CGAL/Combinatorial_map/
  770. CGAL5/include/CGAL/Combinatorial_map/internal/
  771. CGAL5/include/CGAL/Combinatorial_map/internal/Combinatorial_map_copy_functors.h 20.54KB
  772. CGAL5/include/CGAL/Combinatorial_map/internal/Combinatorial_map_group_functors.h 39.02KB
  773. CGAL5/include/CGAL/Combinatorial_map/internal/Combinatorial_map_internal_functors.h 38.37KB
  774. CGAL5/include/CGAL/Combinatorial_map/internal/Combinatorial_map_sewable.h 9.59KB
  775. CGAL5/include/CGAL/Combinatorial_map/internal/Combinatorial_map_utility.h 21.08KB
  776. CGAL5/include/CGAL/Combinatorial_map.h 175.43KB
  777. CGAL5/include/CGAL/Combinatorial_map_basic_operations.h 18.32KB
  778. CGAL5/include/CGAL/Combinatorial_map_functors.h 5.54KB
  779. CGAL5/include/CGAL/Combinatorial_map_fwd.h 1.29KB
  780. CGAL5/include/CGAL/Combinatorial_map_iterators_base.h 20.11KB
  781. CGAL5/include/CGAL/Combinatorial_map_operations.h 26.7KB
  782. CGAL5/include/CGAL/Combinatorial_map_save_load.h 28.86KB
  783. CGAL5/include/CGAL/Combinatorial_map_storages.h 14.25KB
  784. CGAL5/include/CGAL/Combinatorial_map_storages_with_index.h 17.21KB
  785. CGAL5/include/CGAL/Compact_container.h 36.78KB
  786. CGAL5/include/CGAL/Compact_container_with_index.h 31.19KB
  787. CGAL5/include/CGAL/Compact_mesh_cell_base_3.h 20.11KB
  788. CGAL5/include/CGAL/Compact_simplicial_mesh_cell_base_3.h 10.79KB
  789. CGAL5/include/CGAL/Compare_handles_with_or_without_timestamps.h 1.43KB
  790. CGAL5/include/CGAL/compare_vertices.h 1.08KB
  791. CGAL5/include/CGAL/Complexity_tags.h 628B
  792. CGAL5/include/CGAL/Complex_2_in_triangulation_3.h 23.83KB
  793. CGAL5/include/CGAL/Complex_2_in_triangulation_cell_base_3.h 3.94KB
  794. CGAL5/include/CGAL/Complex_2_in_triangulation_vertex_base_3.h 2.5KB
  795. CGAL5/include/CGAL/Compute_anchor_3.h 17.77KB
  796. CGAL5/include/CGAL/compute_average_spacing.h 8.37KB
  797. CGAL5/include/CGAL/Compute_cone_boundaries_2.h 7.82KB
  798. CGAL5/include/CGAL/compute_outer_frame_margin.h 3.79KB
  799. CGAL5/include/CGAL/Concatenate_iterator.h 3.11KB
  800. CGAL5/include/CGAL/Concurrent_compact_container.h 28.1KB
  801. CGAL5/include/CGAL/Cone_spanners_2/
  802. CGAL5/include/CGAL/Cone_spanners_2/Less_by_direction_2.h 3.83KB
  803. CGAL5/include/CGAL/Cone_spanners_2/Plane_scan_tree.h 7.36KB
  804. CGAL5/include/CGAL/Cone_spanners_2/Plane_scan_tree_impl.h 21.11KB
  805. CGAL5/include/CGAL/Cone_spanners_enum_2.h 1018B
  806. CGAL5/include/CGAL/config.h 19.64KB
  807. CGAL5/include/CGAL/Conic_2.h 6.92KB
  808. CGAL5/include/CGAL/connect_holes.h 19.61KB
  809. CGAL5/include/CGAL/constant.h 790B
  810. CGAL5/include/CGAL/Constrained_Delaunay_triangulation_2.h 32.35KB
  811. CGAL5/include/CGAL/Constrained_Delaunay_triangulation_face_base_2.h 3.39KB
  812. CGAL5/include/CGAL/Constrained_triangulation_2.h 63.12KB
  813. CGAL5/include/CGAL/Constrained_triangulation_face_base_2.h 3.96KB
  814. CGAL5/include/CGAL/Constrained_triangulation_plus_2.h 45.28KB
  815. CGAL5/include/CGAL/Constrained_voronoi_diagram_2.h 14.93KB
  816. CGAL5/include/CGAL/constructions/
  817. CGAL5/include/CGAL/constructions/constructions_for_voronoi_intersection_cartesian_2_3.h 8.22KB
  818. CGAL5/include/CGAL/constructions/kernel_ftC2.h 13.42KB
  819. CGAL5/include/CGAL/constructions/kernel_ftC3.h 31.17KB
  820. CGAL5/include/CGAL/constructions/Polygon_offset_cons_ftC2.h 3.69KB
  821. CGAL5/include/CGAL/constructions/Straight_skeleton_cons_ftC2.h 25.39KB
  822. CGAL5/include/CGAL/constructions_d.h 2.5KB
  823. CGAL5/include/CGAL/Construct_theta_graph_2.h 8.44KB
  824. CGAL5/include/CGAL/Construct_yao_graph_2.h 8.66KB
  825. CGAL5/include/CGAL/Container_helper.h 2.36KB
  826. CGAL5/include/CGAL/Converting_construction.h 2KB
  827. CGAL5/include/CGAL/convert_to_bfi.h 1.02KB
  828. CGAL5/include/CGAL/convexity_check_2.h 4.51KB
  829. CGAL5/include/CGAL/convexity_check_3.h 7.14KB
  830. CGAL5/include/CGAL/Convex_decomposition_3/
  831. CGAL5/include/CGAL/Convex_decomposition_3/Edge_sorter.h 9.81KB
  832. CGAL5/include/CGAL/Convex_decomposition_3/External_structure_builder.h 4.8KB
  833. CGAL5/include/CGAL/Convex_decomposition_3/Insert_vertex_into_edge.h 1.88KB
  834. CGAL5/include/CGAL/Convex_decomposition_3/is_reflex_sedge.h 5.64KB
  835. CGAL5/include/CGAL/Convex_decomposition_3/Ray_hit_generator.h 5.61KB
  836. CGAL5/include/CGAL/Convex_decomposition_3/Ray_hit_generator2.h 3.8KB
  837. CGAL5/include/CGAL/Convex_decomposition_3/Reflex_edge_searcher.h 4.98KB
  838. CGAL5/include/CGAL/Convex_decomposition_3/Reflex_vertex_searcher.h 6.35KB
  839. CGAL5/include/CGAL/Convex_decomposition_3/SFace_separator.h 2.77KB
  840. CGAL5/include/CGAL/Convex_decomposition_3/Single_wall_creator.h 13.17KB
  841. CGAL5/include/CGAL/Convex_decomposition_3/Single_wall_creator2.h 7.75KB
  842. CGAL5/include/CGAL/Convex_decomposition_3/Single_wall_creator3.h 8.4KB
  843. CGAL5/include/CGAL/Convex_decomposition_3/SM_walls.h 18.18KB
  844. CGAL5/include/CGAL/Convex_decomposition_3/YVertical_wall_builder.h 4.05KB
  845. CGAL5/include/CGAL/convex_decomposition_3.h 6.66KB
  846. CGAL5/include/CGAL/Convex_hull_2/
  847. CGAL5/include/CGAL/Convex_hull_2/ch_akl_toussaint_impl.h 13.63KB
  848. CGAL5/include/CGAL/Convex_hull_2/ch_assertions.h 14.95KB
  849. CGAL5/include/CGAL/Convex_hull_2/ch_bykat_impl.h 8.72KB
  850. CGAL5/include/CGAL/Convex_hull_2/ch_eddy_impl.h 4.23KB
  851. CGAL5/include/CGAL/Convex_hull_2/ch_graham_andrew_impl.h 9.33KB
  852. CGAL5/include/CGAL/Convex_hull_2/ch_jarvis_impl.h 3.81KB
  853. CGAL5/include/CGAL/Convex_hull_2/ch_melkman_impl.h 3.51KB
  854. CGAL5/include/CGAL/Convex_hull_2/ch_selected_extreme_points_2_impl.h 4.22KB
  855. CGAL5/include/CGAL/Convex_hull_2/convexity_check_2_impl.h 5.53KB
  856. CGAL5/include/CGAL/convex_hull_2.h 6.94KB
  857. CGAL5/include/CGAL/Convex_hull_3/
  858. CGAL5/include/CGAL/Convex_hull_3/dual/
  859. CGAL5/include/CGAL/Convex_hull_3/dual/Convex_hull_traits_dual_2.h 18.8KB
  860. CGAL5/include/CGAL/Convex_hull_3/dual/Convex_hull_traits_dual_3.h 10.12KB
  861. CGAL5/include/CGAL/Convex_hull_3/dual/halfspace_intersection_3.h 12.13KB
  862. CGAL5/include/CGAL/Convex_hull_3/dual/halfspace_intersection_interior_point_3.h 6.89KB
  863. CGAL5/include/CGAL/Convex_hull_3/dual/halfspace_intersection_with_constructions_3.h 6.65KB
  864. CGAL5/include/CGAL/Convex_hull_3/dual/predicates.h 18.08KB
  865. CGAL5/include/CGAL/Convex_hull_3/internal/
  866. CGAL5/include/CGAL/Convex_hull_3/internal/Indexed_triangle_set.h 4.16KB
  867. CGAL5/include/CGAL/convex_hull_3.h 41.6KB
  868. CGAL5/include/CGAL/convex_hull_3_to_face_graph.h 871B
  869. CGAL5/include/CGAL/convex_hull_constructive_traits_2.h 2.15KB
  870. CGAL5/include/CGAL/Convex_hull_d.h 56.07KB
  871. CGAL5/include/CGAL/Convex_hull_d_to_polyhedron_3.h 4.06KB
  872. CGAL5/include/CGAL/Convex_hull_d_traits_3.h 6.73KB
  873. CGAL5/include/CGAL/Convex_hull_face_base_2.h 2.04KB
  874. CGAL5/include/CGAL/Convex_hull_projective_xy_traits_2.h 4.46KB
  875. CGAL5/include/CGAL/Convex_hull_projective_xz_traits_2.h 4.54KB
  876. CGAL5/include/CGAL/Convex_hull_projective_yz_traits_2.h 4.82KB
  877. CGAL5/include/CGAL/convex_hull_traits_2.h 1.21KB
  878. CGAL5/include/CGAL/Convex_hull_traits_3.h 8.05KB
  879. CGAL5/include/CGAL/Convex_hull_traits_adapter_2.h 5.35KB
  880. CGAL5/include/CGAL/Convex_hull_vertex_base_2.h 2.19KB
  881. CGAL5/include/CGAL/copy_n.h 878B
  882. CGAL5/include/CGAL/CORE/
  883. CGAL5/include/CGAL/CORE/BigFloat.h 17.16KB
  884. CGAL5/include/CGAL/CORE/BigFloatRep.h 12.7KB
  885. CGAL5/include/CGAL/CORE/BigFloat_impl.h 36.12KB
  886. CGAL5/include/CGAL/CORE/BigInt.h 13.25KB
  887. CGAL5/include/CGAL/CORE/BigRat.h 12.02KB
  888. CGAL5/include/CGAL/CORE/Config.h 886B
  889. CGAL5/include/CGAL/CORE/CORE.h 1.56KB
  890. CGAL5/include/CGAL/CORE/CoreAux.h 4.83KB
  891. CGAL5/include/CGAL/CORE/CoreAux_impl.h 5.37KB
  892. CGAL5/include/CGAL/CORE/CoreDefs.h 10.47KB
  893. CGAL5/include/CGAL/CORE/CoreDefs_impl.h 5.61KB
  894. CGAL5/include/CGAL/CORE/CoreIO_impl.h 11.45KB
  895. CGAL5/include/CGAL/CORE/Expr.h 15.06KB
  896. CGAL5/include/CGAL/CORE/ExprRep.h 38.51KB
  897. CGAL5/include/CGAL/CORE/Expr_impl.h 33.9KB
  898. CGAL5/include/CGAL/CORE/extLong.h 6.33KB
  899. CGAL5/include/CGAL/CORE/extLong_impl.h 5.53KB
  900. CGAL5/include/CGAL/CORE/Filter.h 5.58KB
  901. CGAL5/include/CGAL/CORE/Gmp.h 1.24KB
  902. CGAL5/include/CGAL/CORE/Gmp_impl.h 5.83KB
  903. CGAL5/include/CGAL/CORE/Impl.h 2.53KB
  904. CGAL5/include/CGAL/CORE/linearAlgebra.h 4.96KB
  905. CGAL5/include/CGAL/CORE/MemoryPool.h 3.53KB
  906. CGAL5/include/CGAL/CORE/poly/
  907. CGAL5/include/CGAL/CORE/poly/Curves.h 16.34KB
  908. CGAL5/include/CGAL/CORE/poly/Curves.tcc 38.81KB
  909. CGAL5/include/CGAL/CORE/poly/Poly.h 14.96KB
  910. CGAL5/include/CGAL/CORE/poly/Poly.tcc 44.98KB
  911. CGAL5/include/CGAL/CORE/poly/Sturm.h 39.48KB
  912. CGAL5/include/CGAL/CORE/Promote.h 4.08KB
  913. CGAL5/include/CGAL/CORE/Real.h 13.46KB
  914. CGAL5/include/CGAL/CORE/RealRep.h 12.66KB
  915. CGAL5/include/CGAL/CORE/Real_impl.h 7.13KB
  916. CGAL5/include/CGAL/CORE/RefCount.h 2.78KB
  917. CGAL5/include/CGAL/CORE/Timer.h 1.52KB
  918. CGAL5/include/CGAL/CORE_algebraic_number_traits.h 17.64KB
  919. CGAL5/include/CGAL/CORE_arithmetic_kernel.h 2.15KB
  920. CGAL5/include/CGAL/CORE_BigFloat.h 17.64KB
  921. CGAL5/include/CGAL/CORE_BigInt.h 5.92KB
  922. CGAL5/include/CGAL/CORE_BigRat.h 7.3KB
  923. CGAL5/include/CGAL/CORE_coercion_traits.h 5.78KB
  924. CGAL5/include/CGAL/CORE_Expr.h 6.54KB
  925. CGAL5/include/CGAL/Counted_number.h 25.35KB
  926. CGAL5/include/CGAL/Counting_iterator.h 773B
  927. CGAL5/include/CGAL/cpp_float.h 13.77KB
  928. CGAL5/include/CGAL/create_offset_polygons_2.h 17.77KB
  929. CGAL5/include/CGAL/create_offset_polygons_from_polygon_with_holes_2.h 9.31KB
  930. CGAL5/include/CGAL/create_straight_skeleton_2.h 9.41KB
  931. CGAL5/include/CGAL/create_straight_skeleton_from_polygon_with_holes_2.h 1.97KB
  932. CGAL5/include/CGAL/create_weighted_offset_polygons_2.h 18.14KB
  933. CGAL5/include/CGAL/create_weighted_offset_polygons_from_polygon_with_holes_2.h 10.42KB
  934. CGAL5/include/CGAL/create_weighted_straight_skeleton_2.h 14.77KB
  935. CGAL5/include/CGAL/create_weighted_straight_skeleton_from_polygon_with_holes_2.h 2.14KB
  936. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/
  937. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Arc_2.h 118.53KB
  938. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h 84.01KB
  939. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_impl.h 7.21KB
  940. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Curve_interval_arcno_cache.h 8.67KB
  941. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Curve_renderer_facade.h 11.22KB
  942. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Fig_stream_Curve_renderer_2.h 4.18KB
  943. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Filtered_curved_kernel_via_analysis_2_impl.h 22.97KB
  944. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Generic_arc_2.h 8.5KB
  945. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Generic_point_2.h 5.74KB
  946. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/gfx/
  947. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_2.h 96.27KB
  948. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_internals.h 33.9KB
  949. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_traits.h 17.09KB
  950. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_1.h 14.06KB
  951. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_2.h 21.63KB
  952. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Make_x_monotone_2.h 12KB
  953. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Non_x_monotone_arc_2.h 8.79KB
  954. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Point_2.h 22.73KB
  955. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/Sweep_curves_adapter_2.h 27.34KB
  956. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/test/
  957. CGAL5/include/CGAL/Curved_kernel_via_analysis_2/test/simple_models.h 36.83KB
  958. CGAL5/include/CGAL/Curves_on_surface_topology.h 7.65KB
  959. CGAL5/include/CGAL/Dart.h 7.51KB
  960. CGAL5/include/CGAL/Dart_const_iterators.h 10.61KB
  961. CGAL5/include/CGAL/Dart_iterators.h 79.94KB
  962. CGAL5/include/CGAL/Default.h 1.24KB
  963. CGAL5/include/CGAL/Default_diagonalize_traits.h 3.04KB
  964. CGAL5/include/CGAL/Deformation_Eigen_closest_rotation_traits_3.h 3.24KB
  965. CGAL5/include/CGAL/Deformation_Eigen_polar_closest_rotation_traits_3.h 2.77KB
  966. CGAL5/include/CGAL/Delaunay_d.h 36.96KB
  967. CGAL5/include/CGAL/Delaunay_mesher_2.h 8.99KB
  968. CGAL5/include/CGAL/Delaunay_mesher_no_edge_refinement_2.h 8.95KB
  969. CGAL5/include/CGAL/Delaunay_mesh_area_criteria_2.h 3.97KB
  970. CGAL5/include/CGAL/Delaunay_mesh_criteria_2.h 2.89KB
  971. CGAL5/include/CGAL/Delaunay_mesh_face_base_2.h 2.18KB
  972. CGAL5/include/CGAL/Delaunay_mesh_local_size_criteria_2.h 3.62KB
  973. CGAL5/include/CGAL/Delaunay_mesh_size_criteria_2.h 5.19KB
  974. CGAL5/include/CGAL/Delaunay_mesh_vertex_base_2.h 1.76KB
  975. CGAL5/include/CGAL/Delaunay_triangulation.h 34.84KB
  976. CGAL5/include/CGAL/Delaunay_triangulation_2.h 83.95KB
  977. CGAL5/include/CGAL/Delaunay_triangulation_3.h 64.47KB
  978. CGAL5/include/CGAL/Delaunay_triangulation_adaptation_policies_2.h 2.52KB
  979. CGAL5/include/CGAL/Delaunay_triangulation_adaptation_traits_2.h 1.62KB
  980. CGAL5/include/CGAL/Delaunay_triangulation_cell_base_3.h 2.72KB
  981. CGAL5/include/CGAL/Delaunay_triangulation_cell_base_with_circumcenter_3.h 4.62KB
  982. CGAL5/include/CGAL/Delaunay_triangulation_on_sphere_2.h 35.6KB
  983. CGAL5/include/CGAL/Delaunay_triangulation_on_sphere_adaptation_policies_2.h 2.58KB
  984. CGAL5/include/CGAL/Delaunay_triangulation_on_sphere_adaptation_traits_2.h 2.37KB
  985. CGAL5/include/CGAL/Delaunay_triangulation_on_sphere_traits_2.h 14.33KB
  986. CGAL5/include/CGAL/demangle.h 629B
  987. CGAL5/include/CGAL/determinant.h 15.66KB
  988. CGAL5/include/CGAL/determinant_of_vectors.h 3.63KB
  989. CGAL5/include/CGAL/Diagonalize_traits.h 7.62KB
  990. CGAL5/include/CGAL/Dimension.h 2.95KB
  991. CGAL5/include/CGAL/Direction_2.h 6.42KB
  992. CGAL5/include/CGAL/Direction_3.h 5.63KB
  993. CGAL5/include/CGAL/disable_warnings.h 1.74KB
  994. CGAL5/include/CGAL/Distance_2/
  995. CGAL5/include/CGAL/Distance_2/internal/
  996. CGAL5/include/CGAL/Distance_2/internal/squared_distance_utils_2.h 7.47KB
  997. CGAL5/include/CGAL/Distance_2/Line_2_Line_2.h 1.61KB
  998. CGAL5/include/CGAL/Distance_2/Line_2_Triangle_2.h 2.37KB
  999. CGAL5/include/CGAL/Distance_2/Point_2_Line_2.h 2.79KB
  1000. CGAL5/include/CGAL/Distance_2/Point_2_Point_2.h 1.4KB
  1001. CGAL5/include/CGAL/Distance_2/Point_2_Ray_2.h 2.89KB
  1002. CGAL5/include/CGAL/Distance_2/Point_2_Segment_2.h 3.35KB
  1003. CGAL5/include/CGAL/Distance_2/Point_2_Triangle_2.h 6.94KB
  1004. CGAL5/include/CGAL/Distance_2/Ray_2_Line_2.h 2.36KB
  1005. CGAL5/include/CGAL/Distance_2/Ray_2_Ray_2.h 3.17KB
  1006. CGAL5/include/CGAL/Distance_2/Ray_2_Triangle_2.h 3.31KB
  1007. CGAL5/include/CGAL/Distance_2/Segment_2_Line_2.h 3.46KB
  1008. CGAL5/include/CGAL/Distance_2/Segment_2_Ray_2.h 5.28KB
  1009. CGAL5/include/CGAL/Distance_2/Segment_2_Segment_2.h 9.41KB
  1010. CGAL5/include/CGAL/Distance_2/Segment_2_Triangle_2.h 3.74KB
  1011. CGAL5/include/CGAL/Distance_2/Triangle_2_Triangle_2.h 3.46KB
  1012. CGAL5/include/CGAL/Distance_3/
  1013. CGAL5/include/CGAL/Distance_3/internal/
  1014. CGAL5/include/CGAL/Distance_3/internal/squared_distance_utils_3.h 7.87KB
  1015. CGAL5/include/CGAL/Distance_3/Line_3_Line_3.h 1.68KB
  1016. CGAL5/include/CGAL/Distance_3/Line_3_Plane_3.h 2.11KB
  1017. CGAL5/include/CGAL/Distance_3/Plane_3_Plane_3.h 1.59KB
  1018. CGAL5/include/CGAL/Distance_3/Point_3_Line_3.h 2.35KB
  1019. CGAL5/include/CGAL/Distance_3/Point_3_Plane_3.h 1.89KB
  1020. CGAL5/include/CGAL/Distance_3/Point_3_Point_3.h 1.23KB
  1021. CGAL5/include/CGAL/Distance_3/Point_3_Ray_3.h 2.9KB
  1022. CGAL5/include/CGAL/Distance_3/Point_3_Segment_3.h 3.76KB
  1023. CGAL5/include/CGAL/Distance_3/Point_3_Tetrahedron_3.h 3.36KB
  1024. CGAL5/include/CGAL/Distance_3/Point_3_Triangle_3.h 9.8KB
  1025. CGAL5/include/CGAL/Distance_3/Point_3_Weighted_point_3.h 1.3KB
  1026. CGAL5/include/CGAL/Distance_3/Ray_3_Line_3.h 2.6KB
  1027. CGAL5/include/CGAL/Distance_3/Ray_3_Plane_3.h 2.58KB
  1028. CGAL5/include/CGAL/Distance_3/Ray_3_Ray_3.h 3.72KB
  1029. CGAL5/include/CGAL/Distance_3/Segment_3_Line_3.h 3.17KB
  1030. CGAL5/include/CGAL/Distance_3/Segment_3_Plane_3.h 2.97KB
  1031. CGAL5/include/CGAL/Distance_3/Segment_3_Ray_3.h 5.15KB
  1032. CGAL5/include/CGAL/Distance_3/Segment_3_Segment_3.h 5.71KB
  1033. CGAL5/include/CGAL/Distance_3/Triangle_3_Triangle_3.h 8.38KB
  1034. CGAL5/include/CGAL/Distance_3/Weighted_point_3_Weighted_point_3.h 1.1KB
  1035. CGAL5/include/CGAL/distance_predicates_2.h 737B
  1036. CGAL5/include/CGAL/distance_predicates_3.h 736B
  1037. CGAL5/include/CGAL/double.h 4.73KB
  1038. CGAL5/include/CGAL/Double_map.h 8.1KB
  1039. CGAL5/include/CGAL/draw_arrangement_2.h 25.2KB
  1040. CGAL5/include/CGAL/draw_constrained_triangulation_2.h 4.93KB
  1041. CGAL5/include/CGAL/draw_face_graph.h 5.95KB
  1042. CGAL5/include/CGAL/draw_face_graph_with_paths.h 15.93KB
  1043. CGAL5/include/CGAL/draw_linear_cell_complex.h 13.85KB
  1044. CGAL5/include/CGAL/draw_nef_3.h 9.4KB
  1045. CGAL5/include/CGAL/draw_periodic_2_triangulation_2.h 9.58KB
  1046. CGAL5/include/CGAL/draw_point_set_3.h 3.35KB
  1047. CGAL5/include/CGAL/draw_polygon_2.h 3.87KB
  1048. CGAL5/include/CGAL/draw_polygon_set_2.h 2.8KB
  1049. CGAL5/include/CGAL/draw_polygon_with_holes_2.h 5.01KB
  1050. CGAL5/include/CGAL/draw_polyhedron.h 1.72KB
  1051. CGAL5/include/CGAL/draw_straight_skeleton_2.h 5.25KB
  1052. CGAL5/include/CGAL/draw_surface_mesh.h 2.14KB
  1053. CGAL5/include/CGAL/draw_triangulation_2.h 4.81KB
  1054. CGAL5/include/CGAL/draw_triangulation_3.h 5.17KB
  1055. CGAL5/include/CGAL/draw_voronoi_diagram_2.h 11.27KB
  1056. CGAL5/include/CGAL/Dummy_tds_2.h 1.05KB
  1057. CGAL5/include/CGAL/Dynamic_matrix.h 3.08KB
  1058. CGAL5/include/CGAL/Dynamic_property_map.h 6.42KB
  1059. CGAL5/include/CGAL/edge_aware_upsample_point_set.h 21.21KB
  1060. CGAL5/include/CGAL/Eigen_diagonalize_traits.h 6.25KB
  1061. CGAL5/include/CGAL/Eigen_matrix.h 2.93KB
  1062. CGAL5/include/CGAL/Eigen_solver_traits.h 9.57KB
  1063. CGAL5/include/CGAL/Eigen_sparse_matrix.h 9.43KB
  1064. CGAL5/include/CGAL/Eigen_svd.h 1.96KB
  1065. CGAL5/include/CGAL/Eigen_vector.h 2.57KB
  1066. CGAL5/include/CGAL/enable_third_party_libraries.h 1.59KB
  1067. CGAL5/include/CGAL/enable_warnings.h 476B
  1068. CGAL5/include/CGAL/enum.h 2.2KB
  1069. CGAL5/include/CGAL/Enum_converter.h 1.01KB
  1070. CGAL5/include/CGAL/Envelope_2/
  1071. CGAL5/include/CGAL/Envelope_2/Env_divide_and_conquer_2.h 12.55KB
  1072. CGAL5/include/CGAL/Envelope_2/Env_divide_and_conquer_2_impl.h 40.79KB
  1073. CGAL5/include/CGAL/envelope_2.h 5.7KB
  1074. CGAL5/include/CGAL/Envelope_3/
  1075. CGAL5/include/CGAL/Envelope_3/Envelope_base.h 1.14KB
  1076. CGAL5/include/CGAL/Envelope_3/Envelope_diagram_on_surface_2.h 5.91KB
  1077. CGAL5/include/CGAL/Envelope_3/Envelope_divide_and_conquer_3.h 63.82KB
  1078. CGAL5/include/CGAL/Envelope_3/Envelope_element_visitor_3.h 123.23KB
  1079. CGAL5/include/CGAL/Envelope_3/Envelope_overlay_2.h 7.17KB
  1080. CGAL5/include/CGAL/Envelope_3/Envelope_overlay_functor.h 18.26KB
  1081. CGAL5/include/CGAL/Envelope_3/Envelope_pm_dcel.h 15.97KB
  1082. CGAL5/include/CGAL/Envelope_3/Env_plane_traits_3_functions.h 5.71KB
  1083. CGAL5/include/CGAL/Envelope_3/set_dividors.h 2.64KB
  1084. CGAL5/include/CGAL/envelope_3.h 5.04KB
  1085. CGAL5/include/CGAL/Envelope_diagram_1.h 9.17KB
  1086. CGAL5/include/CGAL/Env_default_diagram_1.h 1.25KB
  1087. CGAL5/include/CGAL/Env_plane_traits_3.h 13.52KB
  1088. CGAL5/include/CGAL/Env_sphere_traits_3.h 45.33KB
  1089. CGAL5/include/CGAL/Env_surface_data_traits_3.h 3.88KB
  1090. CGAL5/include/CGAL/Env_tracing_traits_3.h 7.49KB
  1091. CGAL5/include/CGAL/Env_triangle_traits_3.h 52.76KB
  1092. CGAL5/include/CGAL/Epeck_d.h 1.58KB
  1093. CGAL5/include/CGAL/Epick_d.h 2.13KB
  1094. CGAL5/include/CGAL/Epic_converter.h 12.41KB
  1095. CGAL5/include/CGAL/estimate_scale.h 26.83KB
  1096. CGAL5/include/CGAL/Euclidean_distance.h 9.72KB
  1097. CGAL5/include/CGAL/Euclidean_distance_sphere_point.h 7.14KB
  1098. CGAL5/include/CGAL/Euler_integrator_2.h 3.5KB
  1099. CGAL5/include/CGAL/Exact_algebraic.h 1.46KB
  1100. CGAL5/include/CGAL/Exact_circular_kernel_2.h 1.76KB
  1101. CGAL5/include/CGAL/Exact_integer.h 2.3KB
  1102. CGAL5/include/CGAL/Exact_kernel_selector.h 2.52KB
  1103. CGAL5/include/CGAL/Exact_predicates_exact_constructions_kernel.h 2.49KB
  1104. CGAL5/include/CGAL/Exact_predicates_exact_constructions_kernel_with_kth_root.h 1.35KB
  1105. CGAL5/include/CGAL/Exact_predicates_exact_constructions_kernel_with_root_of.h 1.34KB
  1106. CGAL5/include/CGAL/Exact_predicates_exact_constructions_kernel_with_sqrt.h 1.34KB
  1107. CGAL5/include/CGAL/Exact_predicates_inexact_constructions_kernel.h 1.55KB
  1108. CGAL5/include/CGAL/Exact_rational.h 1.24KB
  1109. CGAL5/include/CGAL/Exact_spherical_kernel_3.h 1.44KB
  1110. CGAL5/include/CGAL/exceptions.h 7.02KB
  1111. CGAL5/include/CGAL/Exponent_vector.h 5.1KB
  1112. CGAL5/include/CGAL/export/
  1113. CGAL5/include/CGAL/export/CGAL.h 1005B
  1114. CGAL5/include/CGAL/export/CORE.h 1.87KB
  1115. CGAL5/include/CGAL/export/helpers.h 1.19KB
  1116. CGAL5/include/CGAL/export/ImageIO.h 1.08KB
  1117. CGAL5/include/CGAL/export/Qt.h 1.1KB
  1118. CGAL5/include/CGAL/Extended_cartesian.h 14.47KB
  1119. CGAL5/include/CGAL/extended_euclidean_algorithm.h 2.04KB
  1120. CGAL5/include/CGAL/Extended_homogeneous.h 18.68KB
  1121. CGAL5/include/CGAL/extract_mean_curvature_flow_skeleton.h 2.51KB
  1122. CGAL5/include/CGAL/extremal_polygon_2.h 21.98KB
  1123. CGAL5/include/CGAL/Extremal_polygon_traits_2.h 11.62KB
  1124. CGAL5/include/CGAL/Extreme_points_traits_adapter_3.h 10.96KB
  1125. CGAL5/include/CGAL/extrude_skeleton.h 43.07KB
  1126. CGAL5/include/CGAL/exude_mesh_3.h 2.29KB
  1127. CGAL5/include/CGAL/facets_in_complex_3_to_triangle_mesh.h 6.32KB
  1128. CGAL5/include/CGAL/Face_graph_wrapper.h 29.73KB
  1129. CGAL5/include/CGAL/Filtered_bbox_circular_kernel_2/
  1130. CGAL5/include/CGAL/Filtered_bbox_circular_kernel_2/bbox_filtered_predicates.h 16.04KB
  1131. CGAL5/include/CGAL/Filtered_bbox_circular_kernel_2/interface_macros.h 1.91KB
  1132. CGAL5/include/CGAL/Filtered_bbox_circular_kernel_2.h 3.72KB
  1133. CGAL5/include/CGAL/Filtered_construction.h 3.1KB
  1134. CGAL5/include/CGAL/Filtered_extended_homogeneous.h 45.09KB
  1135. CGAL5/include/CGAL/Filtered_kernel/
  1136. CGAL5/include/CGAL/Filtered_kernel/Cartesian_coordinate_iterator_2.h 3.08KB
  1137. CGAL5/include/CGAL/Filtered_kernel/Cartesian_coordinate_iterator_3.h 3.08KB
  1138. CGAL5/include/CGAL/Filtered_kernel/internal/
  1139. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/
  1140. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Angle_3.h 4.43KB
  1141. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Collinear_3.h 4.16KB
  1142. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Compare_distance_3.h 3.94KB
  1143. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Compare_squared_radius_3.h 13.08KB
  1144. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Compare_weighted_squared_radius_3.h 14.61KB
  1145. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Compare_x_2.h 1.81KB
  1146. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Compare_y_2.h 1.81KB
  1147. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Compare_y_at_x_2.h 2.12KB
  1148. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Coplanar_3.h 1.25KB
  1149. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Coplanar_orientation_3.h 5.04KB
  1150. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Coplanar_side_of_bounded_circle_3.h 4.86KB
  1151. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Do_intersect_2.h 1.9KB
  1152. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Do_intersect_3.h 25.91KB
  1153. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Equal_2.h 2.61KB
  1154. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Equal_3.h 3.39KB
  1155. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Is_degenerate_3.h 2.3KB
  1156. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Orientation_2.h 3.35KB
  1157. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Orientation_3.h 5KB
  1158. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Power_side_of_oriented_power_sphere_3.h 29.29KB
  1159. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Side_of_oriented_circle_2.h 4.05KB
  1160. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Side_of_oriented_sphere_3.h 5.94KB
  1161. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Static_filters.h 11.67KB
  1162. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/Static_filter_error.h 4.85KB
  1163. CGAL5/include/CGAL/Filtered_kernel/internal/Static_filters/tools.h 10.95KB
  1164. CGAL5/include/CGAL/Filtered_kernel.h 4.63KB
  1165. CGAL5/include/CGAL/Filtered_kernel_d.h 2.29KB
  1166. CGAL5/include/CGAL/Filtered_kernel_fwd.h 855B
  1167. CGAL5/include/CGAL/Filtered_predicate.h 3.76KB
  1168. CGAL5/include/CGAL/Filtered_predicate_with_state.h 2.58KB
  1169. CGAL5/include/CGAL/Filter_circulator.h 2.2KB
  1170. CGAL5/include/CGAL/Fixed_alpha_shape_3.h 38.06KB
  1171. CGAL5/include/CGAL/Fixed_alpha_shape_cell_base_3.h 2.21KB
  1172. CGAL5/include/CGAL/Fixed_alpha_shape_vertex_base_3.h 1.81KB
  1173. CGAL5/include/CGAL/Flattening_iterator.h 8.89KB
  1174. CGAL5/include/CGAL/float.h 3.15KB
  1175. CGAL5/include/CGAL/for_each.h 4.5KB
  1176. CGAL5/include/CGAL/Fourtuple.h 1.17KB
  1177. CGAL5/include/CGAL/FPU.h 19.67KB
  1178. CGAL5/include/CGAL/FPU_extension.h 1.45KB
  1179. CGAL5/include/CGAL/FPU_gcc_i386.h 812B
  1180. CGAL5/include/CGAL/FPU_gcc_i386_sse2.h 838B
  1181. CGAL5/include/CGAL/FPU_msvc.h 1.26KB
  1182. CGAL5/include/CGAL/Fraction_traits.h 1.75KB
  1183. CGAL5/include/CGAL/functional.h 1.27KB
  1184. CGAL5/include/CGAL/functions_on_enums.h 778B
  1185. CGAL5/include/CGAL/functions_on_signs.h 3.91KB
  1186. CGAL5/include/CGAL/function_objects.h 14.28KB
  1187. CGAL5/include/CGAL/Fuzzy_iso_box.h 5.66KB
  1188. CGAL5/include/CGAL/Fuzzy_sphere.h 6.37KB
  1189. CGAL5/include/CGAL/Generalized_map/
  1190. CGAL5/include/CGAL/Generalized_map/internal/
  1191. CGAL5/include/CGAL/Generalized_map/internal/Generalized_map_group_functors.h 20.22KB
  1192. CGAL5/include/CGAL/Generalized_map/internal/Generalized_map_internal_functors.h 3.29KB
  1193. CGAL5/include/CGAL/Generalized_map/internal/Generalized_map_sewable.h 3.66KB
  1194. CGAL5/include/CGAL/Generalized_map.h 140.68KB
  1195. CGAL5/include/CGAL/Generalized_map_fwd.h 1.26KB
  1196. CGAL5/include/CGAL/Generalized_map_iterators_base.h 7.2KB
  1197. CGAL5/include/CGAL/Generalized_map_operations.h 13.36KB
  1198. CGAL5/include/CGAL/Generalized_map_save_load.h 5.92KB
  1199. CGAL5/include/CGAL/Generalized_map_storages.h 13.84KB
  1200. CGAL5/include/CGAL/Generalized_map_storages_with_index.h 15.21KB
  1201. CGAL5/include/CGAL/General_polygon_2.h 5.06KB
  1202. CGAL5/include/CGAL/General_polygon_set_2.h 3.95KB
  1203. CGAL5/include/CGAL/General_polygon_set_on_surface_2.h 4.76KB
  1204. CGAL5/include/CGAL/General_polygon_with_holes_2.h 5.99KB
  1205. CGAL5/include/CGAL/Generator/
  1206. CGAL5/include/CGAL/Generator/internal/
  1207. CGAL5/include/CGAL/Generator/internal/Generic_random_point_generator.h 3.46KB
  1208. CGAL5/include/CGAL/generators.h 3.31KB
  1209. CGAL5/include/CGAL/Generic_map_min_items.h 1.09KB
  1210. CGAL5/include/CGAL/generic_sweep.h 5.81KB
  1211. CGAL5/include/CGAL/Geographical_coordinates_traits_2.h 11.8KB
  1212. CGAL5/include/CGAL/Get_arithmetic_kernel.h 821B
  1213. CGAL5/include/CGAL/gl.h 700B
  1214. CGAL5/include/CGAL/global_functions_circular_kernel_2.h 4.74KB
  1215. CGAL5/include/CGAL/global_functions_on_roots_and_polynomials_1_3.h 2.05KB
  1216. CGAL5/include/CGAL/global_functions_on_roots_and_polynomials_2_3.h 1.61KB
  1217. CGAL5/include/CGAL/global_functions_on_root_for_sphere_2_3.h 2.24KB
  1218. CGAL5/include/CGAL/global_functions_spherical_kernel_3.h 6.11KB
  1219. CGAL5/include/CGAL/GLPK_mixed_integer_program_traits.h 9.61KB
  1220. CGAL5/include/CGAL/glu.h 569B
  1221. CGAL5/include/CGAL/GMap_cell_const_iterators.h 3.95KB
  1222. CGAL5/include/CGAL/GMap_cell_iterators.h 10.48KB
  1223. CGAL5/include/CGAL/GMap_dart_const_iterators.h 8.52KB
  1224. CGAL5/include/CGAL/GMap_dart_iterators.h 44.31KB
  1225. CGAL5/include/CGAL/GMap_linear_cell_complex_storages.h 15.27KB
  1226. CGAL5/include/CGAL/GMap_linear_cell_complex_storages_with_index.h 16.54KB
  1227. CGAL5/include/CGAL/GMP/
  1228. CGAL5/include/CGAL/GMP/Gmpfi_type.h 37.82KB
  1229. CGAL5/include/CGAL/GMP/Gmpfi_type_static.h 5.88KB
  1230. CGAL5/include/CGAL/GMP/Gmpfr_type.h 45.44KB
  1231. CGAL5/include/CGAL/GMP/Gmpfr_type_static.h 4.44KB
  1232. CGAL5/include/CGAL/GMP/Gmpq_type.h 12.58KB
  1233. CGAL5/include/CGAL/GMP/Gmpzf_type.h 13.08KB
  1234. CGAL5/include/CGAL/GMP/Gmpz_type.h 11.43KB
  1235. CGAL5/include/CGAL/gmp.h 811B
  1236. CGAL5/include/CGAL/Gmpfi.h 10.66KB
  1237. CGAL5/include/CGAL/Gmpfr.h 5.24KB
  1238. CGAL5/include/CGAL/Gmpq.h 5.86KB
  1239. CGAL5/include/CGAL/gmpxx.h 1.81KB
  1240. CGAL5/include/CGAL/GMPXX_arithmetic_kernel.h 1.07KB
  1241. CGAL5/include/CGAL/gmpxx_coercion_traits.h 3.68KB
  1242. CGAL5/include/CGAL/Gmpz.h 6.76KB
  1243. CGAL5/include/CGAL/Gmpzf.h 5.12KB
  1244. CGAL5/include/CGAL/GMP_arithmetic_kernel.h 1.93KB
  1245. CGAL5/include/CGAL/Gmp_coercion_traits.h 2.18KB
  1246. CGAL5/include/CGAL/gnuplot_output_2.h 7.62KB
  1247. CGAL5/include/CGAL/Gps_circle_segment_traits_2.h 1.11KB
  1248. CGAL5/include/CGAL/Gps_segment_traits_2.h 6.31KB
  1249. CGAL5/include/CGAL/Gps_traits_2.h 8.01KB
  1250. CGAL5/include/CGAL/grabbers.h 3.19KB
  1251. CGAL5/include/CGAL/graph_traits_Arrangement_2.h 21.44KB
  1252. CGAL5/include/CGAL/graph_traits_dual_arrangement_2.h 2.91KB
  1253. CGAL5/include/CGAL/graph_traits_dual_arrangement_on_surface_2.h 3.26KB
  1254. CGAL5/include/CGAL/graph_traits_dual_arrangement_on_surface_with_history_2.h 3.65KB
  1255. CGAL5/include/CGAL/graph_traits_dual_arrangement_with_history_2.h 3.27KB
  1256. CGAL5/include/CGAL/Gray_image_mesh_domain_3.h 3.16KB
  1257. CGAL5/include/CGAL/Gray_level_image_3.h 2.7KB
  1258. CGAL5/include/CGAL/grid_simplify_point_set.h 9.11KB
  1259. CGAL5/include/CGAL/halfedgeds_connected_components.h 2.77KB
  1260. CGAL5/include/CGAL/HalfedgeDS_const_decorator.h 14.63KB
  1261. CGAL5/include/CGAL/halfedgeDS_cut_component.h 5.78KB
  1262. CGAL5/include/CGAL/HalfedgeDS_decorator.h 45.76KB
  1263. CGAL5/include/CGAL/HalfedgeDS_default.h 1.52KB
  1264. CGAL5/include/CGAL/HalfedgeDS_face_base.h 6.86KB
  1265. CGAL5/include/CGAL/HalfedgeDS_face_max_base_with_id.h 1.29KB
  1266. CGAL5/include/CGAL/HalfedgeDS_face_min_base.h 1.75KB
  1267. CGAL5/include/CGAL/HalfedgeDS_halfedge_base.h 13.43KB
  1268. CGAL5/include/CGAL/HalfedgeDS_halfedge_max_base_with_id.h 1.23KB
  1269. CGAL5/include/CGAL/HalfedgeDS_halfedge_min_base.h 2.95KB
  1270. CGAL5/include/CGAL/HalfedgeDS_items_2.h 1.89KB
  1271. CGAL5/include/CGAL/HalfedgeDS_items_decorator.h 18.2KB
  1272. CGAL5/include/CGAL/HalfedgeDS_iterator.h 12.15KB
  1273. CGAL5/include/CGAL/HalfedgeDS_iterator_adaptor.h 6.1KB
  1274. CGAL5/include/CGAL/HalfedgeDS_list.h 29.91KB
  1275. CGAL5/include/CGAL/HalfedgeDS_min_items.h 1.32KB
  1276. CGAL5/include/CGAL/HalfedgeDS_vector.h 29.12KB
  1277. CGAL5/include/CGAL/HalfedgeDS_vertex_base.h 5.55KB
  1278. CGAL5/include/CGAL/HalfedgeDS_vertex_max_base_with_id.h 1.33KB
  1279. CGAL5/include/CGAL/HalfedgeDS_vertex_min_base.h 1.63KB
  1280. CGAL5/include/CGAL/Handle.h 3.38KB
  1281. CGAL5/include/CGAL/Handle_for.h 6.99KB
  1282. CGAL5/include/CGAL/Handle_for_virtual.h 3.49KB
  1283. CGAL5/include/CGAL/Handle_hash_function.h 1.58KB
  1284. CGAL5/include/CGAL/Handle_with_policy.h 55.37KB
  1285. CGAL5/include/CGAL/Hash_map/
  1286. CGAL5/include/CGAL/Hash_map/internal/
  1287. CGAL5/include/CGAL/Hash_map/internal/chained_map.h 7.4KB
  1288. CGAL5/include/CGAL/hash_openmesh.h 3.64KB
  1289. CGAL5/include/CGAL/Has_conversion.h 2.39KB
  1290. CGAL5/include/CGAL/Has_member.h 1.91KB
  1291. CGAL5/include/CGAL/Has_timestamp.h 1.28KB
  1292. CGAL5/include/CGAL/Heat_method_3/
  1293. CGAL5/include/CGAL/Heat_method_3/internal/
  1294. CGAL5/include/CGAL/Heat_method_3/internal/Intrinsic_Delaunay_triangulation_3.h 31.19KB
  1295. CGAL5/include/CGAL/Heat_method_3/internal/V2V.h 929B
  1296. CGAL5/include/CGAL/Heat_method_3/Surface_mesh_geodesic_distances_3.h 32.7KB
  1297. CGAL5/include/CGAL/Hidden_point_memory_policy.h 988B
  1298. CGAL5/include/CGAL/hierarchy_simplify_point_set.h 15.82KB
  1299. CGAL5/include/CGAL/Hilbert_policy_tags.h 825B
  1300. CGAL5/include/CGAL/hilbert_sort.h 5.5KB
  1301. CGAL5/include/CGAL/Hilbert_sort_2.h 1.3KB
  1302. CGAL5/include/CGAL/Hilbert_sort_3.h 1.3KB
  1303. CGAL5/include/CGAL/Hilbert_sort_base.h 1.23KB
  1304. CGAL5/include/CGAL/Hilbert_sort_d.h 1.16KB
  1305. CGAL5/include/CGAL/Hilbert_sort_median_2.h 5.76KB
  1306. CGAL5/include/CGAL/Hilbert_sort_median_3.h 7.65KB
  1307. CGAL5/include/CGAL/Hilbert_sort_median_d.h 4.46KB
  1308. CGAL5/include/CGAL/Hilbert_sort_middle_2.h 4.33KB
  1309. CGAL5/include/CGAL/Hilbert_sort_middle_3.h 6.53KB
  1310. CGAL5/include/CGAL/Hilbert_sort_middle_base.h 964B
  1311. CGAL5/include/CGAL/Hilbert_sort_middle_d.h 5.75KB
  1312. CGAL5/include/CGAL/hilbert_sort_on_sphere.h 4.78KB
  1313. CGAL5/include/CGAL/Hilbert_sort_on_sphere_3.h 5.18KB
  1314. CGAL5/include/CGAL/Homogeneous/
  1315. CGAL5/include/CGAL/Homogeneous/Aff_transformationH2.h 33.75KB
  1316. CGAL5/include/CGAL/Homogeneous/Aff_transformationH3.h 31.21KB
  1317. CGAL5/include/CGAL/Homogeneous/basic_constructionsH2.h 3.84KB
  1318. CGAL5/include/CGAL/Homogeneous/basic_constructionsH3.h 2.48KB
  1319. CGAL5/include/CGAL/Homogeneous/CircleH2.h 6.3KB
  1320. CGAL5/include/CGAL/Homogeneous/ConicHPA2.h 20.71KB
  1321. CGAL5/include/CGAL/Homogeneous/Data_accessorH2.h 1.33KB
  1322. CGAL5/include/CGAL/Homogeneous/DirectionH2.h 3.08KB
  1323. CGAL5/include/CGAL/Homogeneous/DirectionH3.h 3.86KB
  1324. CGAL5/include/CGAL/Homogeneous/distance_predicatesH2.h 6.75KB
  1325. CGAL5/include/CGAL/Homogeneous/distance_predicatesH3.h 8.97KB
  1326. CGAL5/include/CGAL/Homogeneous/function_objects.h 145.53KB
  1327. CGAL5/include/CGAL/Homogeneous/Homogeneous_base.h 6.61KB
  1328. CGAL5/include/CGAL/Homogeneous/Iso_cuboidH3.h 11.38KB
  1329. CGAL5/include/CGAL/Homogeneous/Iso_rectangleH2.h 2.67KB
  1330. CGAL5/include/CGAL/Homogeneous/LineH2.h 2.5KB
  1331. CGAL5/include/CGAL/Homogeneous/PlaneH3.h 15.1KB
  1332. CGAL5/include/CGAL/Homogeneous/PointH2.h 3.54KB
  1333. CGAL5/include/CGAL/Homogeneous/PointH3.h 4.41KB
  1334. CGAL5/include/CGAL/Homogeneous/predicates_on_directionsH2.h 938B
  1335. CGAL5/include/CGAL/Homogeneous/predicates_on_pointsH2.h 5.95KB
  1336. CGAL5/include/CGAL/Homogeneous/predicates_on_pointsH3.h 5.14KB
  1337. CGAL5/include/CGAL/Homogeneous/RayH3.h 4.04KB
  1338. CGAL5/include/CGAL/Homogeneous/SphereH3.h 6.1KB
  1339. CGAL5/include/CGAL/Homogeneous/VectorH2.h 6.61KB
  1340. CGAL5/include/CGAL/Homogeneous/VectorH3.h 8.02KB
  1341. CGAL5/include/CGAL/Homogeneous/Weighted_point_2.h 2.76KB
  1342. CGAL5/include/CGAL/Homogeneous/Weighted_point_3.h 2.78KB
  1343. CGAL5/include/CGAL/Homogeneous.h 1.58KB
  1344. CGAL5/include/CGAL/Homogeneous_converter.h 7.98KB
  1345. CGAL5/include/CGAL/Homogeneous_d.h 13.93KB
  1346. CGAL5/include/CGAL/Hyperbola_2.h 7.2KB
  1347. CGAL5/include/CGAL/Hyperbola_ray_2.h 3.03KB
  1348. CGAL5/include/CGAL/Hyperbola_segment_2.h 3.98KB
  1349. CGAL5/include/CGAL/Hyperbolic_Delaunay_triangulation_2.h 31.37KB
  1350. CGAL5/include/CGAL/Hyperbolic_Delaunay_triangulation_CK_traits_2.h 16.76KB
  1351. CGAL5/include/CGAL/Hyperbolic_Delaunay_triangulation_traits_2.h 20.24KB
  1352. CGAL5/include/CGAL/Hyperbolic_octagon_translation.h 6.38KB
  1353. CGAL5/include/CGAL/Hyperbolic_triangulation_2/
  1354. CGAL5/include/CGAL/Hyperbolic_triangulation_2/internal/
  1355. CGAL5/include/CGAL/Hyperbolic_triangulation_2/internal/Exact_complex.h 3.25KB
  1356. CGAL5/include/CGAL/Hyperbolic_triangulation_2/internal/Hyperbolic_Delaunay_triangulation_traits_2_functions.h 10.15KB
  1357. CGAL5/include/CGAL/Hyperbolic_triangulation_face_base_2.h 2.34KB
  1358. CGAL5/include/CGAL/Identity_policy_2.h 1.26KB
  1359. CGAL5/include/CGAL/IEEE_754_unions.h 1.74KB
  1360. CGAL5/include/CGAL/ImageIO/
  1361. CGAL5/include/CGAL/ImageIO/analyze.h 1.29KB
  1362. CGAL5/include/CGAL/ImageIO/analyze_impl.h 27.6KB
  1363. CGAL5/include/CGAL/ImageIO/bmp.h 1.53KB
  1364. CGAL5/include/CGAL/ImageIO/bmpendian.h 2.02KB
  1365. CGAL5/include/CGAL/ImageIO/bmpendian_impl.h 5.47KB
  1366. CGAL5/include/CGAL/ImageIO/bmpread.h 2.42KB
  1367. CGAL5/include/CGAL/ImageIO/bmpread_impl.h 34.84KB
  1368. CGAL5/include/CGAL/ImageIO/bmptypes.h 6.04KB
  1369. CGAL5/include/CGAL/ImageIO/bmp_impl.h 12.65KB
  1370. CGAL5/include/CGAL/ImageIO/convert.h 2.51KB
  1371. CGAL5/include/CGAL/ImageIO/convert_impl.h 11.7KB
  1372. CGAL5/include/CGAL/ImageIO/fgetns.h 794B
  1373. CGAL5/include/CGAL/ImageIO/fgetns_impl.h 969B
  1374. CGAL5/include/CGAL/ImageIO/gif.h 877B
  1375. CGAL5/include/CGAL/ImageIO/gif_impl.h 21.21KB
  1376. CGAL5/include/CGAL/ImageIO/gis.h 3.74KB
  1377. CGAL5/include/CGAL/ImageIO/gis_impl.h 20.46KB
  1378. CGAL5/include/CGAL/ImageIO/inr.h 1.88KB
  1379. CGAL5/include/CGAL/ImageIO/inr_impl.h 14.06KB
  1380. CGAL5/include/CGAL/ImageIO/iris.h 783B
  1381. CGAL5/include/CGAL/ImageIO/iris_impl.h 11.77KB
  1382. CGAL5/include/CGAL/ImageIO/mincio.h 2.7KB
  1383. CGAL5/include/CGAL/ImageIO/mincio_impl.h 14.47KB
  1384. CGAL5/include/CGAL/ImageIO/pnm.h 1.13KB
  1385. CGAL5/include/CGAL/ImageIO/pnm_impl.h 17.1KB
  1386. CGAL5/include/CGAL/ImageIO/recbuffer.h 5.93KB
  1387. CGAL5/include/CGAL/ImageIO/recbuffer_impl.h 46.62KB
  1388. CGAL5/include/CGAL/ImageIO/recline.h 6.46KB
  1389. CGAL5/include/CGAL/ImageIO/recline_impl.h 22.04KB
  1390. CGAL5/include/CGAL/ImageIO/reech4x4.h 13.24KB
  1391. CGAL5/include/CGAL/ImageIO/reech4x4_impl.h 111.37KB
  1392. CGAL5/include/CGAL/ImageIO/typedefs.h 1.64KB
  1393. CGAL5/include/CGAL/ImageIO.h 24.5KB
  1394. CGAL5/include/CGAL/ImageIO_impl.h 40.33KB
  1395. CGAL5/include/CGAL/Image_3.h 14.3KB
  1396. CGAL5/include/CGAL/Image_3_impl.h 3.39KB
  1397. CGAL5/include/CGAL/Image_3_vtk_interface.h 3.22KB
  1398. CGAL5/include/CGAL/Implicit_mesh_domain_3.h 2.58KB
  1399. CGAL5/include/CGAL/Implicit_surface_3.h 4.01KB
  1400. CGAL5/include/CGAL/Implicit_to_labeled_subdomains_function_wrapper.h 1.88KB
  1401. CGAL5/include/CGAL/Implicit_to_labeling_function_wrapper.h 8.45KB
  1402. CGAL5/include/CGAL/Incremental_neighbor_search.h 18.73KB
  1403. CGAL5/include/CGAL/Index_property_map.h 4.66KB
  1404. CGAL5/include/CGAL/Info_for_cell_attribute.h 1.11KB
  1405. CGAL5/include/CGAL/Installation/
  1406. CGAL5/include/CGAL/Installation/internal/
  1407. CGAL5/include/CGAL/Installation/internal/deprecation_warning.h 3.94KB
  1408. CGAL5/include/CGAL/Installation/internal/disable_deprecation_warnings_and_errors.h 856B
  1409. CGAL5/include/CGAL/Installation/internal/enable_third_party_libraries.h 1.59KB
  1410. CGAL5/include/CGAL/int.h 8.27KB
  1411. CGAL5/include/CGAL/Interpolation/
  1412. CGAL5/include/CGAL/Interpolation/internal/
  1413. CGAL5/include/CGAL/Interpolation/internal/helpers.h 4.36KB
  1414. CGAL5/include/CGAL/interpolation_functions.h 14.24KB
  1415. CGAL5/include/CGAL/Interpolation_gradient_fitting_traits_2.h 4.65KB
  1416. CGAL5/include/CGAL/Interpolation_traits_2.h 1.96KB
  1417. CGAL5/include/CGAL/intersections.h 1.43KB
  1418. CGAL5/include/CGAL/Intersections_2/
  1419. CGAL5/include/CGAL/Intersections_2/Bbox_2_Bbox_2.h 1.3KB
  1420. CGAL5/include/CGAL/Intersections_2/Bbox_2_Circle_2.h 1.52KB
  1421. CGAL5/include/CGAL/Intersections_2/Bbox_2_Iso_rectangle_2.h 1.59KB
  1422. CGAL5/include/CGAL/Intersections_2/Bbox_2_Line_2.h 1.75KB
  1423. CGAL5/include/CGAL/Intersections_2/Bbox_2_Point_2.h 2.96KB
  1424. CGAL5/include/CGAL/Intersections_2/Bbox_2_Ray_2.h 1.73KB
  1425. CGAL5/include/CGAL/Intersections_2/Bbox_2_Segment_2.h 1.52KB
  1426. CGAL5/include/CGAL/Intersections_2/Bbox_2_Triangle_2.h 1.52KB
  1427. CGAL5/include/CGAL/Intersections_2/Circle_2_Circle_2.h 1.38KB
  1428. CGAL5/include/CGAL/Intersections_2/Circle_2_Iso_rectangle_2.h 3.2KB
  1429. CGAL5/include/CGAL/Intersections_2/Circle_2_Line_2.h 1.4KB
  1430. CGAL5/include/CGAL/Intersections_2/Circle_2_Point_2.h 2.01KB
  1431. CGAL5/include/CGAL/Intersections_2/Circle_2_Ray_2.h 1.25KB
  1432. CGAL5/include/CGAL/Intersections_2/Circle_2_Segment_2.h 1.29KB
  1433. CGAL5/include/CGAL/Intersections_2/Circle_2_Triangle_2.h 1.71KB
  1434. CGAL5/include/CGAL/Intersections_2/internal/
  1435. CGAL5/include/CGAL/Intersections_2/internal/Straight_2.h 10.65KB
  1436. CGAL5/include/CGAL/Intersections_2/internal/Triangle_2_Triangle_2_do_intersect_impl.h 5.21KB
  1437. CGAL5/include/CGAL/Intersections_2/internal/Triangle_2_Triangle_2_intersection_impl.h 11.09KB
  1438. CGAL5/include/CGAL/Intersections_2/Iso_rectangle_2_Iso_rectangle_2.h 3.55KB
  1439. CGAL5/include/CGAL/Intersections_2/Iso_rectangle_2_Line_2.h 6.98KB
  1440. CGAL5/include/CGAL/Intersections_2/Iso_rectangle_2_Point_2.h 2.23KB
  1441. CGAL5/include/CGAL/Intersections_2/Iso_rectangle_2_Ray_2.h 6.91KB
  1442. CGAL5/include/CGAL/Intersections_2/Iso_rectangle_2_Segment_2.h 7.44KB
  1443. CGAL5/include/CGAL/Intersections_2/Iso_rectangle_2_Triangle_2.h 12.57KB
  1444. CGAL5/include/CGAL/Intersections_2/Line_2_Line_2.h 5.65KB
  1445. CGAL5/include/CGAL/Intersections_2/Line_2_Point_2.h 2.08KB
  1446. CGAL5/include/CGAL/Intersections_2/Line_2_Ray_2.h 4.61KB
  1447. CGAL5/include/CGAL/Intersections_2/Line_2_Segment_2.h 4.55KB
  1448. CGAL5/include/CGAL/Intersections_2/Line_2_Triangle_2.h 5.66KB
  1449. CGAL5/include/CGAL/Intersections_2/Point_2_Point_2.h 1.59KB
  1450. CGAL5/include/CGAL/Intersections_2/Point_2_Ray_2.h 2.05KB
  1451. CGAL5/include/CGAL/Intersections_2/Point_2_Segment_2.h 2.12KB
  1452. CGAL5/include/CGAL/Intersections_2/Point_2_Triangle_2.h 3.75KB
  1453. CGAL5/include/CGAL/Intersections_2/Ray_2_Ray_2.h 8.57KB
  1454. CGAL5/include/CGAL/Intersections_2/Ray_2_Segment_2.h 8.77KB
  1455. CGAL5/include/CGAL/Intersections_2/Ray_2_Triangle_2.h 5.64KB
  1456. CGAL5/include/CGAL/Intersections_2/Segment_2_Segment_2.h 15.61KB
  1457. CGAL5/include/CGAL/Intersections_2/Segment_2_Triangle_2.h 5.71KB
  1458. CGAL5/include/CGAL/Intersections_2/Triangle_2_Triangle_2.h 1020B
  1459. CGAL5/include/CGAL/Intersections_3/
  1460. CGAL5/include/CGAL/Intersections_3/Bbox_3_Bbox_3.h 2.2KB
  1461. CGAL5/include/CGAL/Intersections_3/Bbox_3_Iso_cuboid_3.h 1.82KB
  1462. CGAL5/include/CGAL/Intersections_3/Bbox_3_Line_3.h 1.53KB
  1463. CGAL5/include/CGAL/Intersections_3/Bbox_3_Plane_3.h 1.92KB
  1464. CGAL5/include/CGAL/Intersections_3/Bbox_3_Point_3.h 2.24KB
  1465. CGAL5/include/CGAL/Intersections_3/Bbox_3_Ray_3.h 1.71KB
  1466. CGAL5/include/CGAL/Intersections_3/Bbox_3_Segment_3.h 1.77KB
  1467. CGAL5/include/CGAL/Intersections_3/Bbox_3_Sphere_3.h 1.22KB
  1468. CGAL5/include/CGAL/Intersections_3/Bbox_3_Tetrahedron_3.h 1.26KB
  1469. CGAL5/include/CGAL/Intersections_3/Bbox_3_Triangle_3.h 1.92KB
  1470. CGAL5/include/CGAL/Intersections_3/internal/
  1471. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Iso_cuboid_3_do_intersect.h 1.75KB
  1472. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Iso_cuboid_3_intersection.h 1.77KB
  1473. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Line_3_do_intersect.h 4.59KB
  1474. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Line_3_intersection.h 2.23KB
  1475. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Plane_3_do_intersect.h 1.33KB
  1476. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Ray_3_do_intersect.h 1.84KB
  1477. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Ray_3_intersection.h 2.22KB
  1478. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Segment_3_do_intersect.h 13.58KB
  1479. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Segment_3_intersection.h 5.49KB
  1480. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Sphere_3_do_intersect.h 1.52KB
  1481. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Tetrahedron_3_do_intersect.h 2.33KB
  1482. CGAL5/include/CGAL/Intersections_3/internal/Bbox_3_Triangle_3_do_intersect.h 13.91KB
  1483. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Iso_cuboid_3_do_intersect.h 1.69KB
  1484. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Iso_cuboid_3_intersection.h 3.58KB
  1485. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Line_3_do_intersect.h 1.76KB
  1486. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Line_3_intersection.h 3.72KB
  1487. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Plane_3_do_intersect.h 4.92KB
  1488. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Plane_3_intersection.h 6KB
  1489. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Point_3_do_intersect.h 1.26KB
  1490. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Point_3_intersection.h 1.74KB
  1491. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Ray_3_do_intersect.h 2.03KB
  1492. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Ray_3_intersection.h 3.36KB
  1493. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Segment_3_do_intersect.h 1.96KB
  1494. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Segment_3_intersection.h 3.62KB
  1495. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Sphere_3_do_intersect.h 3.17KB
  1496. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Tetrahedron_3_do_intersect.h 1.38KB
  1497. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Triangle_3_do_intersect.h 1.48KB
  1498. CGAL5/include/CGAL/Intersections_3/internal/Iso_cuboid_3_Triangle_3_intersection.h 5.5KB
  1499. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Line_3_do_intersect.h 1.42KB
  1500. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Line_3_intersection.h 2.66KB
  1501. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Plane_3_do_intersect.h 1.75KB
  1502. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Plane_3_intersection.h 3.47KB
  1503. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Point_3_do_intersect.h 1.16KB
  1504. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Point_3_intersection.h 1.61KB
  1505. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Ray_3_do_intersect.h 1.68KB
  1506. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Ray_3_intersection.h 2.13KB
  1507. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Segment_3_do_intersect.h 1.81KB
  1508. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Segment_3_intersection.h 2.16KB
  1509. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Sphere_3_do_intersect.h 1.59KB
  1510. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Tetrahedron_3_do_intersect.h 1.37KB
  1511. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Tetrahedron_3_intersection.h 2.11KB
  1512. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Triangle_3_do_intersect.h 2.82KB
  1513. CGAL5/include/CGAL/Intersections_3/internal/Line_3_Triangle_3_intersection.h 15.89KB
  1514. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Plane_3_do_intersect.h 1.54KB
  1515. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Plane_3_intersection.h 3.18KB
  1516. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Plane_3_Plane_3_do_intersect.h 2.2KB
  1517. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Plane_3_Plane_3_intersection.h 4.41KB
  1518. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Point_3_do_intersect.h 1.17KB
  1519. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Point_3_intersection.h 1.63KB
  1520. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Ray_3_do_intersect.h 1.6KB
  1521. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Ray_3_intersection.h 2.29KB
  1522. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Segment_3_do_intersect.h 1.51KB
  1523. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Segment_3_intersection.h 4.74KB
  1524. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Sphere_3_do_intersect.h 1.44KB
  1525. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Sphere_3_intersection.h 2.3KB
  1526. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Tetrahedron_3_do_intersect.h 1.34KB
  1527. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Tetrahedron_3_intersection.h 5.57KB
  1528. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Triangle_3_do_intersect.h 1.96KB
  1529. CGAL5/include/CGAL/Intersections_3/internal/Plane_3_Triangle_3_intersection.h 5.82KB
  1530. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Point_3_do_intersect.h 1007B
  1531. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Point_3_intersection.h 1.37KB
  1532. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Ray_3_do_intersect.h 1.54KB
  1533. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Ray_3_intersection.h 1.54KB
  1534. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Segment_3_do_intersect.h 1.18KB
  1535. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Segment_3_intersection.h 1.66KB
  1536. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Sphere_3_do_intersect.h 1.21KB
  1537. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Sphere_3_intersection.h 1.58KB
  1538. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Tetrahedron_3_do_intersect.h 1.27KB
  1539. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Tetrahedron_3_intersection.h 1.72KB
  1540. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Triangle_3_do_intersect.h 2.42KB
  1541. CGAL5/include/CGAL/Intersections_3/internal/Point_3_Triangle_3_intersection.h 1.61KB
  1542. CGAL5/include/CGAL/Intersections_3/internal/Ray_3_Ray_3_do_intersect.h 1.77KB
  1543. CGAL5/include/CGAL/Intersections_3/internal/Ray_3_Ray_3_intersection.h 2.57KB
  1544. CGAL5/include/CGAL/Intersections_3/internal/Ray_3_Segment_3_do_intersect.h 2.04KB
  1545. CGAL5/include/CGAL/Intersections_3/internal/Ray_3_Segment_3_intersection.h 3.28KB
  1546. CGAL5/include/CGAL/Intersections_3/internal/Ray_3_Sphere_3_do_intersect.h 1.58KB
  1547. CGAL5/include/CGAL/Intersections_3/internal/Ray_3_Tetrahedron_3_do_intersect.h 1.33KB
  1548. CGAL5/include/CGAL/Intersections_3/internal/Ray_3_Tetrahedron_3_intersection.h 2.4KB
  1549. CGAL5/include/CGAL/Intersections_3/internal/Ray_3_Triangle_3_do_intersect.h 11.17KB
  1550. CGAL5/include/CGAL/Intersections_3/internal/Ray_3_Triangle_3_intersection.h 22.32KB
  1551. CGAL5/include/CGAL/Intersections_3/internal/Segment_3_Segment_3_do_intersect.h 1.98KB
  1552. CGAL5/include/CGAL/Intersections_3/internal/Segment_3_Segment_3_intersection.h 4.93KB
  1553. CGAL5/include/CGAL/Intersections_3/internal/Segment_3_Sphere_3_do_intersect.h 2.54KB
  1554. CGAL5/include/CGAL/Intersections_3/internal/Segment_3_Tetrahedron_3_do_intersect.h 1.39KB
  1555. CGAL5/include/CGAL/Intersections_3/internal/Segment_3_Tetrahedron_3_intersection.h 3.1KB
  1556. CGAL5/include/CGAL/Intersections_3/internal/Segment_3_Triangle_3_do_intersect.h 9.67KB
  1557. CGAL5/include/CGAL/Intersections_3/internal/Segment_3_Triangle_3_intersection.h 22.75KB
  1558. CGAL5/include/CGAL/Intersections_3/internal/Sphere_3_Sphere_3_do_intersect.h 1.46KB
  1559. CGAL5/include/CGAL/Intersections_3/internal/Sphere_3_Sphere_3_intersection.h 2.53KB
  1560. CGAL5/include/CGAL/Intersections_3/internal/Sphere_3_Tetrahedron_3_do_intersect.h 1.37KB
  1561. CGAL5/include/CGAL/Intersections_3/internal/Sphere_3_Triangle_3_do_intersect.h 2.45KB
  1562. CGAL5/include/CGAL/Intersections_3/internal/Tetrahedron_3_Bounded_3_do_intersect.h 2.76KB
  1563. CGAL5/include/CGAL/Intersections_3/internal/Tetrahedron_3_Tetrahedron_3_do_intersect.h 1.33KB
  1564. CGAL5/include/CGAL/Intersections_3/internal/Tetrahedron_3_Triangle_3_do_intersect.h 1.66KB
  1565. CGAL5/include/CGAL/Intersections_3/internal/Tetrahedron_3_Triangle_3_intersection.h 5.9KB
  1566. CGAL5/include/CGAL/Intersections_3/internal/Tetrahedron_3_Unbounded_3_do_intersect.h 1.85KB
  1567. CGAL5/include/CGAL/Intersections_3/internal/tetrahedron_lines_intersections_3.h 4.13KB
  1568. CGAL5/include/CGAL/Intersections_3/internal/Triangle_3_Triangle_3_do_intersect.h 13.58KB
  1569. CGAL5/include/CGAL/Intersections_3/internal/Triangle_3_Triangle_3_intersection.h 8.08KB
  1570. CGAL5/include/CGAL/Intersections_3/Iso_cuboid_3_Iso_cuboid_3.h 1.17KB
  1571. CGAL5/include/CGAL/Intersections_3/Iso_cuboid_3_Line_3.h 1.16KB
  1572. CGAL5/include/CGAL/Intersections_3/Iso_cuboid_3_Plane_3.h 1.17KB
  1573. CGAL5/include/CGAL/Intersections_3/Iso_cuboid_3_Point_3.h 1.17KB
  1574. CGAL5/include/CGAL/Intersections_3/Iso_cuboid_3_Ray_3.h 1.15KB
  1575. CGAL5/include/CGAL/Intersections_3/Iso_cuboid_3_Segment_3.h 1.19KB
  1576. CGAL5/include/CGAL/Intersections_3/Iso_cuboid_3_Sphere_3.h 1.05KB
  1577. CGAL5/include/CGAL/Intersections_3/Iso_cuboid_3_Tetrahedron_3.h 1.09KB
  1578. CGAL5/include/CGAL/Intersections_3/Iso_cuboid_3_Triangle_3.h 1.19KB
  1579. CGAL5/include/CGAL/Intersections_3/Line_3_Line_3.h 1.09KB
  1580. CGAL5/include/CGAL/Intersections_3/Line_3_Plane_3.h 1.68KB
  1581. CGAL5/include/CGAL/Intersections_3/Line_3_Point_3.h 1.11KB
  1582. CGAL5/include/CGAL/Intersections_3/Line_3_Ray_3.h 1.09KB
  1583. CGAL5/include/CGAL/Intersections_3/Line_3_Segment_3.h 1.13KB
  1584. CGAL5/include/CGAL/Intersections_3/Line_3_Sphere_3.h 1011B
  1585. CGAL5/include/CGAL/Intersections_3/Line_3_Tetrahedron_3.h 1.17KB
  1586. CGAL5/include/CGAL/Intersections_3/Line_3_Triangle_3.h 1.14KB
  1587. CGAL5/include/CGAL/Intersections_3/Plane_3_Plane_3.h 1.09KB
  1588. CGAL5/include/CGAL/Intersections_3/Plane_3_Plane_3_Plane_3.h 1.88KB
  1589. CGAL5/include/CGAL/Intersections_3/Plane_3_Point_3.h 1.12KB
  1590. CGAL5/include/CGAL/Intersections_3/Plane_3_Ray_3.h 1.1KB
  1591. CGAL5/include/CGAL/Intersections_3/Plane_3_Segment_3.h 1.14KB
  1592. CGAL5/include/CGAL/Intersections_3/Plane_3_Sphere_3.h 1.13KB
  1593. CGAL5/include/CGAL/Intersections_3/Plane_3_Tetrahedron_3.h 1.18KB
  1594. CGAL5/include/CGAL/Intersections_3/Plane_3_Triangle_3.h 1.15KB
  1595. CGAL5/include/CGAL/Intersections_3/Point_3_Point_3.h 1.08KB
  1596. CGAL5/include/CGAL/Intersections_3/Point_3_Ray_3.h 1.1KB
  1597. CGAL5/include/CGAL/Intersections_3/Point_3_Segment_3.h 1.14KB
  1598. CGAL5/include/CGAL/Intersections_3/Point_3_Sphere_3.h 1.13KB
  1599. CGAL5/include/CGAL/Intersections_3/Point_3_Tetrahedron_3.h 1.17KB
  1600. CGAL5/include/CGAL/Intersections_3/Point_3_Triangle_3.h 1.15KB
  1601. CGAL5/include/CGAL/Intersections_3/Ray_3_Ray_3.h 1.06KB
  1602. CGAL5/include/CGAL/Intersections_3/Ray_3_Segment_3.h 1.12KB
  1603. CGAL5/include/CGAL/Intersections_3/Ray_3_Sphere_3.h 1021B
  1604. CGAL5/include/CGAL/Intersections_3/Ray_3_Tetrahedron_3.h 1.16KB
  1605. CGAL5/include/CGAL/Intersections_3/Ray_3_Triangle_3.h 1.13KB
  1606. CGAL5/include/CGAL/Intersections_3/Segment_3_Segment_3.h 1.12KB
  1607. CGAL5/include/CGAL/Intersections_3/Segment_3_Sphere_3.h 1.03KB
  1608. CGAL5/include/CGAL/Intersections_3/Segment_3_Tetrahedron_3.h 1.2KB
  1609. CGAL5/include/CGAL/Intersections_3/Segment_3_Triangle_3.h 1.17KB
  1610. CGAL5/include/CGAL/Intersections_3/Sphere_3_Sphere_3.h 1.11KB
  1611. CGAL5/include/CGAL/Intersections_3/Sphere_3_Tetrahedron_3.h 1.06KB
  1612. CGAL5/include/CGAL/Intersections_3/Sphere_3_Triangle_3.h 1.04KB
  1613. CGAL5/include/CGAL/Intersections_3/Tetrahedron_3_Tetrahedron_3.h 1.06KB
  1614. CGAL5/include/CGAL/Intersections_3/Tetrahedron_3_Triangle_3.h 1.21KB
  1615. CGAL5/include/CGAL/Intersections_3/Triangle_3_Triangle_3.h 1.1KB
  1616. CGAL5/include/CGAL/intersections_d.h 13.74KB
  1617. CGAL5/include/CGAL/intersection_2.h 2.31KB
  1618. CGAL5/include/CGAL/intersection_3.h 3.59KB
  1619. CGAL5/include/CGAL/Intersection_traits.h 7.8KB
  1620. CGAL5/include/CGAL/Intersection_traits_2.h 4.79KB
  1621. CGAL5/include/CGAL/Intersection_traits_3.h 15.15KB
  1622. CGAL5/include/CGAL/Interval_arithmetic.h 766B
  1623. CGAL5/include/CGAL/Interval_arithmetic_impl.h 1.48KB
  1624. CGAL5/include/CGAL/Interval_nt.h 52.3KB
  1625. CGAL5/include/CGAL/Interval_skip_list.h 39.53KB
  1626. CGAL5/include/CGAL/Interval_skip_list_interval.h 3.03KB
  1627. CGAL5/include/CGAL/Interval_traits.h 7.14KB
  1628. CGAL5/include/CGAL/Inverse_index.h 765B
  1629. CGAL5/include/CGAL/in_place_edge_list.h 4.24KB
  1630. CGAL5/include/CGAL/In_place_list.h 24.48KB
  1631. CGAL5/include/CGAL/IO/
  1632. CGAL5/include/CGAL/IO/3MF/
  1633. CGAL5/include/CGAL/IO/3MF/read_3mf.h 4.1KB
  1634. CGAL5/include/CGAL/IO/3MF/write_3mf.h 13.23KB
  1635. CGAL5/include/CGAL/IO/3MF.h 18.33KB
  1636. CGAL5/include/CGAL/IO/Arrangement_2_reader.h 12.11KB
  1637. CGAL5/include/CGAL/IO/Arrangement_2_writer.h 10.29KB
  1638. CGAL5/include/CGAL/IO/Arr_iostream.h 3.49KB
  1639. CGAL5/include/CGAL/IO/Arr_text_formatter.h 12.7KB
  1640. CGAL5/include/CGAL/IO/Arr_with_history_2_reader.h 3.48KB
  1641. CGAL5/include/CGAL/IO/Arr_with_history_2_writer.h 3.28KB
  1642. CGAL5/include/CGAL/IO/Arr_with_history_iostream.h 4.04KB
  1643. CGAL5/include/CGAL/IO/Arr_with_history_text_formatter.h 4.2KB
  1644. CGAL5/include/CGAL/IO/binary_file_io.h 3.84KB
  1645. CGAL5/include/CGAL/IO/Color.h 7.48KB
  1646. CGAL5/include/CGAL/IO/Complex_2_in_triangulation_3_file_writer.h 17.27KB
  1647. CGAL5/include/CGAL/IO/Complex_2_in_triangulation_3_polyhedron_builder.h 7.43KB
  1648. CGAL5/include/CGAL/IO/Complex_2_in_triangulation_3_to_medit.h 2.67KB
  1649. CGAL5/include/CGAL/IO/Complex_2_in_triangulation_3_to_vtk.h 2.83KB
  1650. CGAL5/include/CGAL/IO/Complex_3_in_triangulation_3_to_vtk.h 3.79KB
  1651. CGAL5/include/CGAL/IO/Dxf_bsop_reader.h 8.12KB
  1652. CGAL5/include/CGAL/IO/Dxf_reader.h 6.03KB
  1653. CGAL5/include/CGAL/IO/Dxf_reader_doubles.h 4.59KB
  1654. CGAL5/include/CGAL/IO/Dxf_stream.h 7.22KB
  1655. CGAL5/include/CGAL/IO/Dxf_variant_reader.h 4.81KB
  1656. CGAL5/include/CGAL/IO/Dxf_writer.h 7.04KB
  1657. CGAL5/include/CGAL/IO/facets_in_complex_2_to_triangle_mesh.h 6.98KB
  1658. CGAL5/include/CGAL/IO/facets_in_complex_3_to_triangle_mesh.h 1019B
  1659. CGAL5/include/CGAL/IO/Fig_stream.h 41.44KB
  1660. CGAL5/include/CGAL/IO/Fig_stream_Conic_arc_2.h 2.82KB
  1661. CGAL5/include/CGAL/IO/File_avizo.h 3.96KB
  1662. CGAL5/include/CGAL/IO/File_binary_mesh_3.h 2.2KB
  1663. CGAL5/include/CGAL/IO/File_maya.h 10.92KB
  1664. CGAL5/include/CGAL/IO/File_medit.h 24.36KB
  1665. CGAL5/include/CGAL/IO/File_poly.h 4.36KB
  1666. CGAL5/include/CGAL/IO/File_tetgen.h 6.32KB
  1667. CGAL5/include/CGAL/IO/Generic_writer.h 2.49KB
  1668. CGAL5/include/CGAL/IO/GOCAD.h 13.38KB
  1669. CGAL5/include/CGAL/IO/Gps_iostream.h 1.41KB
  1670. CGAL5/include/CGAL/IO/helpers.h 2.93KB
  1671. CGAL5/include/CGAL/IO/io.h 22.41KB
  1672. CGAL5/include/CGAL/IO/io_tags.h 1.79KB
  1673. CGAL5/include/CGAL/IO/Istream_iterator.h 2.64KB
  1674. CGAL5/include/CGAL/IO/Nef_polyhedron_2_PS_stream.h 3.62KB
  1675. CGAL5/include/CGAL/IO/Nef_polyhedron_iostream_3.h 1.5KB
  1676. CGAL5/include/CGAL/IO/OBJ/
  1677. CGAL5/include/CGAL/IO/OBJ/File_writer_wavefront.h 2.62KB
  1678. CGAL5/include/CGAL/IO/OBJ.h 12.98KB
  1679. CGAL5/include/CGAL/IO/OFF/
  1680. CGAL5/include/CGAL/IO/OFF/File_header_extended_OFF.h 4.82KB
  1681. CGAL5/include/CGAL/IO/OFF/File_header_extended_OFF_impl.h 3.9KB
  1682. CGAL5/include/CGAL/IO/OFF/File_header_OFF.h 4.85KB
  1683. CGAL5/include/CGAL/IO/OFF/File_header_OFF_impl.h 11.9KB
  1684. CGAL5/include/CGAL/IO/OFF/File_scanner_OFF.h 22.63KB
  1685. CGAL5/include/CGAL/IO/OFF/File_writer_OFF.h 4.06KB
  1686. CGAL5/include/CGAL/IO/OFF/generic_copy_OFF.h 2.77KB
  1687. CGAL5/include/CGAL/IO/OFF/Scanner_OFF.h 10.39KB
  1688. CGAL5/include/CGAL/IO/OFF.h 12.55KB
  1689. CGAL5/include/CGAL/IO/OI/
  1690. CGAL5/include/CGAL/IO/OI/File_writer_inventor.h 2.63KB
  1691. CGAL5/include/CGAL/IO/OI/Inventor_ostream.h 4.08KB
  1692. CGAL5/include/CGAL/IO/OI.h 694B
  1693. CGAL5/include/CGAL/IO/Ostream_iterator.h 2.4KB
  1694. CGAL5/include/CGAL/IO/output_surface_facets_to_polyhedron.h 2.01KB
  1695. CGAL5/include/CGAL/IO/output_surface_facets_to_triangle_soup.h 2.98KB
  1696. CGAL5/include/CGAL/IO/output_to_vtu.h 11.58KB
  1697. CGAL5/include/CGAL/IO/PLY/
  1698. CGAL5/include/CGAL/IO/PLY/PLY_reader.h 25.37KB
  1699. CGAL5/include/CGAL/IO/PLY/PLY_writer.h 9.9KB
  1700. CGAL5/include/CGAL/IO/PLY.h 21.11KB
  1701. CGAL5/include/CGAL/IO/polygon_soup_io.h 7.09KB
  1702. CGAL5/include/CGAL/IO/Polyhedron_inventor_ostream.h 1.29KB
  1703. CGAL5/include/CGAL/IO/Polyhedron_iostream.h 782B
  1704. CGAL5/include/CGAL/IO/Polyhedron_OFF_iostream.h 6.03KB
  1705. CGAL5/include/CGAL/IO/Polyhedron_scan_OFF.h 4.01KB
  1706. CGAL5/include/CGAL/IO/Polyhedron_VRML_1_ostream.h 739B
  1707. CGAL5/include/CGAL/IO/Polyhedron_VRML_2_ostream.h 1.25KB
  1708. CGAL5/include/CGAL/IO/print_OFF.h 2.04KB
  1709. CGAL5/include/CGAL/IO/read_las_points.h 23.26KB
  1710. CGAL5/include/CGAL/IO/read_off_points.h 18.61KB
  1711. CGAL5/include/CGAL/IO/read_ply_points.h 18.93KB
  1712. CGAL5/include/CGAL/IO/read_points.h 4.42KB
  1713. CGAL5/include/CGAL/IO/read_vtk_image_data.h 3.54KB
  1714. CGAL5/include/CGAL/IO/read_xyz_points.h 17.71KB
  1715. CGAL5/include/CGAL/IO/scan_OFF.h 1.86KB
  1716. CGAL5/include/CGAL/IO/STL/
  1717. CGAL5/include/CGAL/IO/STL/STL_reader.h 6.68KB
  1718. CGAL5/include/CGAL/IO/STL.h 15.69KB
  1719. CGAL5/include/CGAL/IO/Tee_for_output_iterator.h 2.38KB
  1720. CGAL5/include/CGAL/IO/trace.h 797B
  1721. CGAL5/include/CGAL/IO/Triangulation_off_ostream.h 6.8KB
  1722. CGAL5/include/CGAL/IO/Triangulation_off_ostream_2.h 2.07KB
  1723. CGAL5/include/CGAL/IO/Triangulation_off_ostream_3.h 3.24KB
  1724. CGAL5/include/CGAL/IO/Triangulation_ps_stream.h 1.75KB
  1725. CGAL5/include/CGAL/IO/Verbose_ostream.h 2.65KB
  1726. CGAL5/include/CGAL/IO/VRML/
  1727. CGAL5/include/CGAL/IO/VRML/File_writer_VRML_2.h 3.25KB
  1728. CGAL5/include/CGAL/IO/VRML/VRML_1_ostream.h 3KB
  1729. CGAL5/include/CGAL/IO/VRML/VRML_2_ostream.h 9.63KB
  1730. CGAL5/include/CGAL/IO/VRML.h 746B
  1731. CGAL5/include/CGAL/IO/VTK/
  1732. CGAL5/include/CGAL/IO/VTK/VTK_reader.h 2.27KB
  1733. CGAL5/include/CGAL/IO/VTK/VTK_writer.h 1.03KB
  1734. CGAL5/include/CGAL/IO/VTK.h 15.59KB
  1735. CGAL5/include/CGAL/IO/WKT/
  1736. CGAL5/include/CGAL/IO/WKT/traits_linestring.h 1.07KB
  1737. CGAL5/include/CGAL/IO/WKT/traits_multilinestring.h 1.14KB
  1738. CGAL5/include/CGAL/IO/WKT/traits_multipoint.h 1.1KB
  1739. CGAL5/include/CGAL/IO/WKT/traits_multipolygon.h 1.12KB
  1740. CGAL5/include/CGAL/IO/WKT/traits_point.h 1.77KB
  1741. CGAL5/include/CGAL/IO/WKT/traits_point_3.h 2.04KB
  1742. CGAL5/include/CGAL/IO/WKT/traits_polygon.h 2.53KB
  1743. CGAL5/include/CGAL/IO/WKT.h 15.75KB
  1744. CGAL5/include/CGAL/IO/write_las_points.h 15.17KB
  1745. CGAL5/include/CGAL/IO/write_off_points.h 12.26KB
  1746. CGAL5/include/CGAL/IO/write_ply_points.h 15.09KB
  1747. CGAL5/include/CGAL/IO/write_points.h 4.17KB
  1748. CGAL5/include/CGAL/IO/write_VTU.h 12.24KB
  1749. CGAL5/include/CGAL/IO/write_xyz_points.h 11.89KB
  1750. CGAL5/include/CGAL/ipower.h 1.99KB
  1751. CGAL5/include/CGAL/Iso_cuboid_3.h 5.86KB
  1752. CGAL5/include/CGAL/Iso_rectangle_2.h 5.58KB
  1753. CGAL5/include/CGAL/Iso_rectangle_d.h 1.98KB
  1754. CGAL5/include/CGAL/Is_a_predicate.h 1.56KB
  1755. CGAL5/include/CGAL/is_convertible.h 1.15KB
  1756. CGAL5/include/CGAL/Is_extended_kernel.h 731B
  1757. CGAL5/include/CGAL/is_iterator.h 2.61KB
  1758. CGAL5/include/CGAL/is_streamable.h 2.43KB
  1759. CGAL5/include/CGAL/is_y_monotone_2.h 2.17KB
  1760. CGAL5/include/CGAL/iterator.h 42.49KB
  1761. CGAL5/include/CGAL/iterator_from_indices.h 2.38KB
  1762. CGAL5/include/CGAL/Iterator_project.h 5.07KB
  1763. CGAL5/include/CGAL/Iterator_range.h 2.21KB
  1764. CGAL5/include/CGAL/Iterator_transform.h 4.3KB
  1765. CGAL5/include/CGAL/jet_estimate_normals.h 10.59KB
  1766. CGAL5/include/CGAL/jet_smooth_point_set.h 10.81KB
  1767. CGAL5/include/CGAL/Join_input_iterator.h 777B
  1768. CGAL5/include/CGAL/Kd_tree.h 20.2KB
  1769. CGAL5/include/CGAL/Kd_tree_node.h 19.73KB
  1770. CGAL5/include/CGAL/Kd_tree_rectangle.h 10.73KB
  1771. CGAL5/include/CGAL/Kernel/
  1772. CGAL5/include/CGAL/Kernel/Conic_misc.h 4.08KB
  1773. CGAL5/include/CGAL/Kernel/Dimension_utils.h 5.93KB
  1774. CGAL5/include/CGAL/Kernel/function_objects.h 112.01KB
  1775. CGAL5/include/CGAL/Kernel/global_functions.h 1.64KB
  1776. CGAL5/include/CGAL/Kernel/global_functions_2.h 27.8KB
  1777. CGAL5/include/CGAL/Kernel/global_functions_3.h 34.64KB
  1778. CGAL5/include/CGAL/Kernel/global_functions_internal_2.h 28.41KB
  1779. CGAL5/include/CGAL/Kernel/global_functions_internal_3.h 36.25KB
  1780. CGAL5/include/CGAL/Kernel/hash_functions.h 8.71KB
  1781. CGAL5/include/CGAL/Kernel/interface_macros.h 24.93KB
  1782. CGAL5/include/CGAL/Kernel/mpl.h 1.03KB
  1783. CGAL5/include/CGAL/Kernel/Return_base_tag.h 1.16KB
  1784. CGAL5/include/CGAL/Kernel/Same_uncertainty.h 1.19KB
  1785. CGAL5/include/CGAL/Kernel/solve.h 2.78KB
  1786. CGAL5/include/CGAL/Kernel/Type_equality_wrapper.h 1.45KB
  1787. CGAL5/include/CGAL/Kernel/Type_mapper.h 4.04KB
  1788. CGAL5/include/CGAL/Kernel/Wutils.h 8.31KB
  1789. CGAL5/include/CGAL/Kernel_23/
  1790. CGAL5/include/CGAL/Kernel_23/internal/
  1791. CGAL5/include/CGAL/Kernel_23/internal/Filtered_projection_traits_3.h 2.83KB
  1792. CGAL5/include/CGAL/Kernel_23/internal/Has_boolean_tags.h 1.99KB
  1793. CGAL5/include/CGAL/Kernel_23/internal/Projection_traits_3.h 38.69KB
  1794. CGAL5/include/CGAL/Kernel_23/internal/Projection_traits_base_3.h 18.26KB
  1795. CGAL5/include/CGAL/kernel_assertions.h 15.85KB
  1796. CGAL5/include/CGAL/kernel_basic.h 846B
  1797. CGAL5/include/CGAL/Kernel_checker.h 4.82KB
  1798. CGAL5/include/CGAL/kernel_config.h 884B
  1799. CGAL5/include/CGAL/Kernel_d/
  1800. CGAL5/include/CGAL/Kernel_d/Aff_transformationCd.h 6.11KB
  1801. CGAL5/include/CGAL/Kernel_d/Aff_transformationHd.h 8.37KB
  1802. CGAL5/include/CGAL/Kernel_d/Aff_transformation_d.h 2.54KB
  1803. CGAL5/include/CGAL/Kernel_d/Cartesian_const_iterator_d.h 3.01KB
  1804. CGAL5/include/CGAL/Kernel_d/Cartesian_converter_d.h 8.06KB
  1805. CGAL5/include/CGAL/Kernel_d/debug.h 2.34KB
  1806. CGAL5/include/CGAL/Kernel_d/DirectionCd.h 3.75KB
  1807. CGAL5/include/CGAL/Kernel_d/DirectionCd_impl.h 2.17KB
  1808. CGAL5/include/CGAL/Kernel_d/DirectionHd.h 6.95KB
  1809. CGAL5/include/CGAL/Kernel_d/DirectionHd_impl.h 2.25KB
  1810. CGAL5/include/CGAL/Kernel_d/Direction_d.h 2.12KB
  1811. CGAL5/include/CGAL/Kernel_d/function_objects.h 4.16KB
  1812. CGAL5/include/CGAL/Kernel_d/function_objectsCd.h 26.19KB
  1813. CGAL5/include/CGAL/Kernel_d/function_objectsHd.h 14.36KB
  1814. CGAL5/include/CGAL/Kernel_d/HyperplaneCd.h 7.15KB
  1815. CGAL5/include/CGAL/Kernel_d/HyperplaneCd_impl.h 3.09KB
  1816. CGAL5/include/CGAL/Kernel_d/HyperplaneHd.h 12.53KB
  1817. CGAL5/include/CGAL/Kernel_d/HyperplaneHd_impl.h 3.04KB
  1818. CGAL5/include/CGAL/Kernel_d/Hyperplane_d.h 2.56KB
  1819. CGAL5/include/CGAL/Kernel_d/Interface_classes.h 1.08KB
  1820. CGAL5/include/CGAL/Kernel_d/interface_macros_d.h 3.59KB
  1821. CGAL5/include/CGAL/Kernel_d/intersection_objectsCd.h 4.04KB
  1822. CGAL5/include/CGAL/Kernel_d/intersection_objectsHd.h 4.26KB
  1823. CGAL5/include/CGAL/Kernel_d/intersection_objects_d.h 18.23KB
  1824. CGAL5/include/CGAL/Kernel_d/Interval_linear_algebra.h 3.46KB
  1825. CGAL5/include/CGAL/Kernel_d/Iso_box_d.h 12.27KB
  1826. CGAL5/include/CGAL/Kernel_d/Kernel_classesCd.h 1018B
  1827. CGAL5/include/CGAL/Kernel_d/Kernel_classesHd.h 1018B
  1828. CGAL5/include/CGAL/Kernel_d/Linear_algebraCd_impl.h 12.73KB
  1829. CGAL5/include/CGAL/Kernel_d/Linear_algebraHd_impl.h 28.5KB
  1830. CGAL5/include/CGAL/Kernel_d/Line_d.h 6.91KB
  1831. CGAL5/include/CGAL/Kernel_d/Line_d_impl.h 994B
  1832. CGAL5/include/CGAL/Kernel_d/Matrix__.h 22.87KB
  1833. CGAL5/include/CGAL/Kernel_d/Pair_d.h 2.28KB
  1834. CGAL5/include/CGAL/Kernel_d/PointCd.h 5.45KB
  1835. CGAL5/include/CGAL/Kernel_d/PointCd_impl.h 2.22KB
  1836. CGAL5/include/CGAL/Kernel_d/PointHd.h 9.53KB
  1837. CGAL5/include/CGAL/Kernel_d/PointHd_impl.h 2.34KB
  1838. CGAL5/include/CGAL/Kernel_d/Point_d.h 2.89KB
  1839. CGAL5/include/CGAL/Kernel_d/Ray_d.h 6.21KB
  1840. CGAL5/include/CGAL/Kernel_d/Segment_d.h 7.88KB
  1841. CGAL5/include/CGAL/Kernel_d/simple_objects.h 1.33KB
  1842. CGAL5/include/CGAL/Kernel_d/Sphere_d.h 11.15KB
  1843. CGAL5/include/CGAL/Kernel_d/Tuple_d.h 8.48KB
  1844. CGAL5/include/CGAL/Kernel_d/VectorCd.h 6.86KB
  1845. CGAL5/include/CGAL/Kernel_d/VectorCd_impl.h 1.93KB
  1846. CGAL5/include/CGAL/Kernel_d/VectorHd.h 13.44KB
  1847. CGAL5/include/CGAL/Kernel_d/VectorHd_impl.h 1.91KB
  1848. CGAL5/include/CGAL/Kernel_d/Vector_d.h 3.33KB
  1849. CGAL5/include/CGAL/Kernel_d/Vector__.h 11.96KB
  1850. CGAL5/include/CGAL/Kernel_profiler.h 1.63KB
  1851. CGAL5/include/CGAL/kernel_to_kernel.h 2.99KB
  1852. CGAL5/include/CGAL/Kernel_traits.h 1.75KB
  1853. CGAL5/include/CGAL/Kernel_traits_fwd.h 637B
  1854. CGAL5/include/CGAL/known_bit_size_integers.h 1.76KB
  1855. CGAL5/include/CGAL/K_neighbor_search.h 9.19KB
  1856. CGAL5/include/CGAL/Labeled_image_mesh_domain_3.h 3.56KB
  1857. CGAL5/include/CGAL/Labeled_mesh_domain_3.h 37.42KB
  1858. CGAL5/include/CGAL/Largest_empty_iso_rectangle_2.h 37.53KB
  1859. CGAL5/include/CGAL/Lazy.h 70.41KB
  1860. CGAL5/include/CGAL/Lazy_exact_nt.h 45.38KB
  1861. CGAL5/include/CGAL/Lazy_kernel.h 23.08KB
  1862. CGAL5/include/CGAL/LEDA_arithmetic_kernel.h 2.23KB
  1863. CGAL5/include/CGAL/LEDA_basic.h 900B
  1864. CGAL5/include/CGAL/leda_bigfloat.h 4.41KB
  1865. CGAL5/include/CGAL/leda_bigfloat_interval.h 14.9KB
  1866. CGAL5/include/CGAL/leda_coercion_traits.h 3.92KB
  1867. CGAL5/include/CGAL/leda_integer.h 7.02KB
  1868. CGAL5/include/CGAL/leda_rational.h 8.08KB
  1869. CGAL5/include/CGAL/leda_real.h 6.88KB
  1870. CGAL5/include/CGAL/Level_interval.h 2.83KB
  1871. CGAL5/include/CGAL/license/
  1872. CGAL5/include/CGAL/license/AABB_tree.h 2.01KB
  1873. CGAL5/include/CGAL/license/Advancing_front_surface_reconstruction.h 2.32KB
  1874. CGAL5/include/CGAL/license/Alpha_shapes_2.h 1.95KB
  1875. CGAL5/include/CGAL/license/Alpha_shapes_3.h 1.95KB
  1876. CGAL5/include/CGAL/license/Alpha_wrap_3.h 1.93KB
  1877. CGAL5/include/CGAL/license/Apollonius_graph_2.h 2.12KB
  1878. CGAL5/include/CGAL/license/Arrangement_on_surface_2.h 2.07KB
  1879. CGAL5/include/CGAL/license/Barycentric_coordinates_2.h 2.17KB
  1880. CGAL5/include/CGAL/license/Boolean_set_operations_2.h 2.15KB
  1881. CGAL5/include/CGAL/license/Bounding_volumes.h 1.98KB
  1882. CGAL5/include/CGAL/license/Box_intersection_d.h 2.12KB
  1883. CGAL5/include/CGAL/license/Circular_kernel_2.h 2.03KB
  1884. CGAL5/include/CGAL/license/Circular_kernel_3.h 2.04KB
  1885. CGAL5/include/CGAL/license/Classification.h 1.94KB
  1886. CGAL5/include/CGAL/license/Cone_spanners_2.h 1.98KB
  1887. CGAL5/include/CGAL/license/Convex_decomposition_3.h 2.11KB
  1888. CGAL5/include/CGAL/license/Convex_hull_2.h 2.01KB
  1889. CGAL5/include/CGAL/license/Convex_hull_3.h 1.94KB
  1890. CGAL5/include/CGAL/license/Convex_hull_d.h 2.05KB
  1891. CGAL5/include/CGAL/license/Envelope_2.h 1.89KB
  1892. CGAL5/include/CGAL/license/Envelope_3.h 1.89KB
  1893. CGAL5/include/CGAL/license/generate_files.cmake 577B
  1894. CGAL5/include/CGAL/license/gpl.h.in 1.86KB
  1895. CGAL5/include/CGAL/license/gpl_package_list.txt 5.08KB
  1896. CGAL5/include/CGAL/license/GraphicsView.h 2.02KB
  1897. CGAL5/include/CGAL/license/Heat_method_3.h 1.89KB
  1898. CGAL5/include/CGAL/license/Hyperbolic_triangulation_2.h 2.18KB
  1899. CGAL5/include/CGAL/license/Inscribed_areas.h 1.96KB
  1900. CGAL5/include/CGAL/license/Interpolation.h 2.02KB
  1901. CGAL5/include/CGAL/license/Interval_skip_list.h 2.01KB
  1902. CGAL5/include/CGAL/license/Jet_fitting_3.h 2.15KB
  1903. CGAL5/include/CGAL/license/lgpl.h 1.59KB
  1904. CGAL5/include/CGAL/license/Matrix_search.h 2.01KB
  1905. CGAL5/include/CGAL/license/Mesh_2.h 1.95KB
  1906. CGAL5/include/CGAL/license/Mesh_3.h 1.87KB
  1907. CGAL5/include/CGAL/license/Minkowski_sum_2.h 1.97KB
  1908. CGAL5/include/CGAL/license/Minkowski_sum_3.h 2.02KB
  1909. CGAL5/include/CGAL/license/Nef_2.h 1.93KB
  1910. CGAL5/include/CGAL/license/Nef_3.h 1.93KB
  1911. CGAL5/include/CGAL/license/Nef_S2.h 2.03KB
  1912. CGAL5/include/CGAL/license/Optimal_bounding_box.h 2.04KB
  1913. CGAL5/include/CGAL/license/Optimal_transportation_reconstruction_2.h 2.35KB
  1914. CGAL5/include/CGAL/license/Orthtree.h 1.95KB
  1915. CGAL5/include/CGAL/license/Partition_2.h 1.95KB
  1916. CGAL5/include/CGAL/license/Periodic_2_triangulation_2.h 2.13KB
  1917. CGAL5/include/CGAL/license/Periodic_3_mesh_3.h 2.03KB
  1918. CGAL5/include/CGAL/license/Periodic_3_triangulation_3.h 2.13KB
  1919. CGAL5/include/CGAL/license/Periodic_4_hyperbolic_triangulation_2.h 2.3KB
  1920. CGAL5/include/CGAL/license/Point_set_2.h 1.96KB
  1921. CGAL5/include/CGAL/license/Point_set_3.h 1.9KB
  1922. CGAL5/include/CGAL/license/Point_set_processing_3.h 2.06KB
  1923. CGAL5/include/CGAL/license/Poisson_surface_reconstruction_3.h 2.22KB
  1924. CGAL5/include/CGAL/license/Polygonal_surface_reconstruction.h 2.19KB
  1925. CGAL5/include/CGAL/license/Polygon_mesh_processing/
  1926. CGAL5/include/CGAL/license/Polygon_mesh_processing/collision_detection.h 2.38KB
  1927. CGAL5/include/CGAL/license/Polygon_mesh_processing/combinatorial_repair.h 2.5KB
  1928. CGAL5/include/CGAL/license/Polygon_mesh_processing/Compute_normal.h 2.32KB
  1929. CGAL5/include/CGAL/license/Polygon_mesh_processing/connected_components.h 2.4KB
  1930. CGAL5/include/CGAL/license/Polygon_mesh_processing/core.h 2.15KB
  1931. CGAL5/include/CGAL/license/Polygon_mesh_processing/corefinement.h 2.27KB
  1932. CGAL5/include/CGAL/license/Polygon_mesh_processing/detect_features.h 2.33KB
  1933. CGAL5/include/CGAL/license/Polygon_mesh_processing/distance.h 2.21KB
  1934. CGAL5/include/CGAL/license/Polygon_mesh_processing/geometric_repair.h 2.15KB
  1935. CGAL5/include/CGAL/license/Polygon_mesh_processing/locate.h 2.19KB
  1936. CGAL5/include/CGAL/license/Polygon_mesh_processing/measure.h 2.23KB
  1937. CGAL5/include/CGAL/license/Polygon_mesh_processing/meshing_hole_filling.h 2.41KB
  1938. CGAL5/include/CGAL/license/Polygon_mesh_processing/miscellaneous.h 2.29KB
  1939. CGAL5/include/CGAL/license/Polygon_mesh_processing/orientation.h 2.26KB
  1940. CGAL5/include/CGAL/license/Polygon_mesh_processing/Polyhedral_envelope.h 2.37KB
  1941. CGAL5/include/CGAL/license/Polygon_mesh_processing/predicate.h 2.23KB
  1942. CGAL5/include/CGAL/license/Polygon_mesh_processing/repair.h 2.18KB
  1943. CGAL5/include/CGAL/license/Polygon_mesh_processing.h 2.09KB
  1944. CGAL5/include/CGAL/license/Polyhedron.h 1.93KB
  1945. CGAL5/include/CGAL/license/Polyline_simplification_2.h 2.12KB
  1946. CGAL5/include/CGAL/license/Polytope_distance_d.h 2.02KB
  1947. CGAL5/include/CGAL/license/Principal_component_analysis.h 2.16KB
  1948. CGAL5/include/CGAL/license/QP_solver.h 1.98KB
  1949. CGAL5/include/CGAL/license/README.md 108B
  1950. CGAL5/include/CGAL/license/Ridges_3.h 2.08KB
  1951. CGAL5/include/CGAL/license/Scale_space_reconstruction_3.h 2.19KB
  1952. CGAL5/include/CGAL/license/SearchStructures.h 2.02KB
  1953. CGAL5/include/CGAL/license/Segment_Delaunay_graph_2.h 2.11KB
  1954. CGAL5/include/CGAL/license/Segment_Delaunay_graph_Linf_2.h 2.2KB
  1955. CGAL5/include/CGAL/license/Set_movable_separability_2.h 2.15KB
  1956. CGAL5/include/CGAL/license/Shape_detection.h 1.96KB
  1957. CGAL5/include/CGAL/license/Shape_regularization.h 2.04KB
  1958. CGAL5/include/CGAL/license/Skin_surface_3.h 1.98KB
  1959. CGAL5/include/CGAL/license/SMDS_3.h 1.76KB
  1960. CGAL5/include/CGAL/license/Snap_rounding_2.h 1.96KB
  1961. CGAL5/include/CGAL/license/Spatial_searching.h 2KB
  1962. CGAL5/include/CGAL/license/Straight_skeleton_2.h 2.12KB
  1963. CGAL5/include/CGAL/license/Straight_skeleton_extrusion_2.h 2KB
  1964. CGAL5/include/CGAL/license/Stream_lines_2.h 2KB
  1965. CGAL5/include/CGAL/license/Surface_mesh.h 1.91KB
  1966. CGAL5/include/CGAL/license/Surface_mesher.h 1.99KB
  1967. CGAL5/include/CGAL/license/Surface_mesh_approximation.h 2.18KB
  1968. CGAL5/include/CGAL/license/Surface_mesh_deformation.h 2.15KB
  1969. CGAL5/include/CGAL/license/Surface_mesh_parameterization.h 2.23KB
  1970. CGAL5/include/CGAL/license/Surface_mesh_segmentation.h 2.17KB
  1971. CGAL5/include/CGAL/license/Surface_mesh_shortest_path.h 2.19KB
  1972. CGAL5/include/CGAL/license/Surface_mesh_simplification.h 2.2KB
  1973. CGAL5/include/CGAL/license/Surface_mesh_skeletonization.h 2.21KB
  1974. CGAL5/include/CGAL/license/Surface_mesh_topology.h 2.05KB
  1975. CGAL5/include/CGAL/license/Surface_sweep_2.h 2KB
  1976. CGAL5/include/CGAL/license/TDS_2.h 1.91KB
  1977. CGAL5/include/CGAL/license/TDS_3.h 1.91KB
  1978. CGAL5/include/CGAL/license/Tetrahedral_remeshing.h 2.05KB
  1979. CGAL5/include/CGAL/license/Three.h 1.8KB
  1980. CGAL5/include/CGAL/license/Triangulation.h 1.94KB
  1981. CGAL5/include/CGAL/license/Triangulation_2.h 1.96KB
  1982. CGAL5/include/CGAL/license/Triangulation_3.h 1.97KB
  1983. CGAL5/include/CGAL/license/Triangulation_on_sphere_2.h 2.12KB
  1984. CGAL5/include/CGAL/license/Visibility_2.h 1.96KB
  1985. CGAL5/include/CGAL/license/Voronoi_diagram_2.h 2.03KB
  1986. CGAL5/include/CGAL/license.h 845B
  1987. CGAL5/include/CGAL/Lightweight_vector_3.h 5.12KB
  1988. CGAL5/include/CGAL/Linear_algebraCd.h 3.27KB
  1989. CGAL5/include/CGAL/Linear_algebraHd.h 8.17KB
  1990. CGAL5/include/CGAL/Linear_cell_complex_base.h 29.76KB
  1991. CGAL5/include/CGAL/Linear_cell_complex_bgl_min_items.h 1.22KB
  1992. CGAL5/include/CGAL/Linear_cell_complex_constructors.h 11.47KB
  1993. CGAL5/include/CGAL/Linear_cell_complex_for_bgl_combinatorial_map_helper.h 2.07KB
  1994. CGAL5/include/CGAL/Linear_cell_complex_for_combinatorial_map.h 9.81KB
  1995. CGAL5/include/CGAL/Linear_cell_complex_for_generalized_map.h 6.66KB
  1996. CGAL5/include/CGAL/Linear_cell_complex_fwd.h 2.81KB
  1997. CGAL5/include/CGAL/Linear_cell_complex_incremental_builder.h 13.81KB
  1998. CGAL5/include/CGAL/Linear_cell_complex_incremental_builder_3.h 13.93KB
  1999. CGAL5/include/CGAL/Linear_cell_complex_min_items.h 1.43KB
  2000. CGAL5/include/CGAL/Linear_cell_complex_operations.h 7.33KB
  2001. CGAL5/include/CGAL/Linear_cell_complex_traits.h 4.12KB
  2002. CGAL5/include/CGAL/linear_least_squares_fitting_2.h 3.5KB
  2003. CGAL5/include/CGAL/linear_least_squares_fitting_3.h 3.86KB
  2004. CGAL5/include/CGAL/linear_least_squares_fitting_circles_2.h 8.95KB
  2005. CGAL5/include/CGAL/linear_least_squares_fitting_cuboids_3.h 11.33KB
  2006. CGAL5/include/CGAL/linear_least_squares_fitting_points_2.h 3.46KB
  2007. CGAL5/include/CGAL/linear_least_squares_fitting_points_3.h 3.68KB
  2008. CGAL5/include/CGAL/linear_least_squares_fitting_rectangles_2.h 7.66KB
  2009. CGAL5/include/CGAL/linear_least_squares_fitting_segments_2.h 6.03KB
  2010. CGAL5/include/CGAL/linear_least_squares_fitting_segments_3.h 5.85KB
  2011. CGAL5/include/CGAL/linear_least_squares_fitting_spheres_3.h 5.87KB
  2012. CGAL5/include/CGAL/linear_least_squares_fitting_tetrahedra_3.h 11.21KB
  2013. CGAL5/include/CGAL/linear_least_squares_fitting_triangles_2.h 7.8KB
  2014. CGAL5/include/CGAL/linear_least_squares_fitting_triangles_3.h 8.26KB
  2015. CGAL5/include/CGAL/Line_2.h 6.47KB
  2016. CGAL5/include/CGAL/Line_3.h 4.04KB
  2017. CGAL5/include/CGAL/Line_arc_2.h 4.44KB
  2018. CGAL5/include/CGAL/Line_arc_3.h 5.05KB
  2019. CGAL5/include/CGAL/link_to_face_graph.h 2.44KB
  2020. CGAL5/include/CGAL/lloyd_optimize_mesh_2.h 4.52KB
  2021. CGAL5/include/CGAL/lloyd_optimize_mesh_3.h 3.46KB
  2022. CGAL5/include/CGAL/Location_policy.h 815B
  2023. CGAL5/include/CGAL/long_double.h 4.58KB
  2024. CGAL5/include/CGAL/long_long.h 4.02KB
  2025. CGAL5/include/CGAL/make_mesh_3.h 15.44KB
  2026. CGAL5/include/CGAL/make_periodic_3_mesh_3.h 10.06KB
  2027. CGAL5/include/CGAL/make_piecewise_smooth_surface_mesh.h 494B
  2028. CGAL5/include/CGAL/make_skin_surface_mesh_3.h 1.71KB
  2029. CGAL5/include/CGAL/make_surface_mesh.h 6.96KB
  2030. CGAL5/include/CGAL/make_union_of_balls_3.h 1.47KB
  2031. CGAL5/include/CGAL/Manhattan_distance_iso_box_point.h 7.49KB
  2032. CGAL5/include/CGAL/marching_tetrahedra_3.h 9.03KB
  2033. CGAL5/include/CGAL/Marching_tetrahedra_observer_default_3.h 1.43KB
  2034. CGAL5/include/CGAL/Marching_tetrahedra_traits_skin_surface_3.h 1.94KB
  2035. CGAL5/include/CGAL/mark_domain_in_triangulation.h 3.05KB
  2036. CGAL5/include/CGAL/Mean_curvature_flow_skeletonization.h 45.85KB
  2037. CGAL5/include/CGAL/memory.h 1.18KB
  2038. CGAL5/include/CGAL/Memory_sizer.h 5.44KB
  2039. CGAL5/include/CGAL/Mesher_level.h 10.71KB
  2040. CGAL5/include/CGAL/Mesher_level_default_implementations.h 3.42KB
  2041. CGAL5/include/CGAL/Mesher_level_visitors.h 2.87KB
  2042. CGAL5/include/CGAL/Meshes/
  2043. CGAL5/include/CGAL/Meshes/Double_map_container.h 2.55KB
  2044. CGAL5/include/CGAL/Meshes/Filtered_deque_container.h 8.62KB
  2045. CGAL5/include/CGAL/Meshes/Filtered_multimap_container.h 8.31KB
  2046. CGAL5/include/CGAL/Meshes/Filtered_queue_container.h 2.33KB
  2047. CGAL5/include/CGAL/Meshes/Simple_map_container.h 1.66KB
  2048. CGAL5/include/CGAL/Meshes/Simple_queue_container.h 1.37KB
  2049. CGAL5/include/CGAL/Meshes/Simple_set_container.h 1.45KB
  2050. CGAL5/include/CGAL/Meshes/Triangulation_mesher_level_traits_2.h 2.21KB
  2051. CGAL5/include/CGAL/Meshes/Triangulation_mesher_level_traits_3.h 4.07KB
  2052. CGAL5/include/CGAL/Mesh_2/
  2053. CGAL5/include/CGAL/Mesh_2/Clusters.h 16.26KB
  2054. CGAL5/include/CGAL/Mesh_2/Do_not_refine_edges.h 2.61KB
  2055. CGAL5/include/CGAL/Mesh_2/Face_badness.h 658B
  2056. CGAL5/include/CGAL/Mesh_2/Lipschitz_sizing_field_2.h 7.36KB
  2057. CGAL5/include/CGAL/Mesh_2/Lloyd_move_2.h 3.03KB
  2058. CGAL5/include/CGAL/Mesh_2/Mesh_global_optimizer_2.h 13.37KB
  2059. CGAL5/include/CGAL/Mesh_2/Mesh_sizing_field.h 5.5KB
  2060. CGAL5/include/CGAL/Mesh_2/Output_stream.h 760B
  2061. CGAL5/include/CGAL/Mesh_2/Refine_edges.h 21.58KB
  2062. CGAL5/include/CGAL/Mesh_2/Refine_edges_visitor.h 4.71KB
  2063. CGAL5/include/CGAL/Mesh_2/Refine_edges_with_clusters.h 12.06KB
  2064. CGAL5/include/CGAL/Mesh_2/Refine_faces.h 13.69KB
  2065. CGAL5/include/CGAL/Mesh_2/Sizing_field_2.h 1001B
  2066. CGAL5/include/CGAL/Mesh_2/Uniform_sizing_field_2.h 1.2KB
  2067. CGAL5/include/CGAL/Mesh_3/
  2068. CGAL5/include/CGAL/Mesh_3/C3T3_helpers.h 125.48KB
  2069. CGAL5/include/CGAL/Mesh_3/Cell_criteria_visitor_with_balls.h 4.43KB
  2070. CGAL5/include/CGAL/Mesh_3/Concurrent_mesher_config.h 5.42KB
  2071. CGAL5/include/CGAL/Mesh_3/config.h 1.9KB
  2072. CGAL5/include/CGAL/Mesh_3/Detect_features_in_image.h 11.69KB
  2073. CGAL5/include/CGAL/Mesh_3/Detect_features_on_image_bbox.h 3.52KB
  2074. CGAL5/include/CGAL/Mesh_3/dihedral_angle_3.h 1.51KB
  2075. CGAL5/include/CGAL/Mesh_3/Dump_c3t3.h 4.82KB
  2076. CGAL5/include/CGAL/Mesh_3/experimental/
  2077. CGAL5/include/CGAL/Mesh_3/experimental/AABB_filtered_projection_traits.h 5.3KB
  2078. CGAL5/include/CGAL/Mesh_3/experimental/Facet_patch_id_map.h 2.5KB
  2079. CGAL5/include/CGAL/Mesh_3/experimental/Facet_topological_criterion_with_adjacency.h 4.82KB
  2080. CGAL5/include/CGAL/Mesh_3/experimental/Get_curve_index.h 2.42KB
  2081. CGAL5/include/CGAL/Mesh_3/experimental/Get_facet_patch_id.h 934B
  2082. CGAL5/include/CGAL/Mesh_3/experimental/Lipschitz_sizing_experimental.h 13.31KB
  2083. CGAL5/include/CGAL/Mesh_3/experimental/Lipschitz_sizing_parameters.h 4.35KB
  2084. CGAL5/include/CGAL/Mesh_3/experimental/Lipschitz_sizing_polyhedron.h 4.33KB
  2085. CGAL5/include/CGAL/Mesh_3/experimental/Sizing_field_minimum.h 2.39KB
  2086. CGAL5/include/CGAL/Mesh_3/experimental/Sizing_field_with_aabb_tree.h 20.78KB
  2087. CGAL5/include/CGAL/Mesh_3/Facet_criteria_visitor_with_balls.h 6.21KB
  2088. CGAL5/include/CGAL/Mesh_3/Facet_on_same_surface_criterion.h 2.92KB
  2089. CGAL5/include/CGAL/Mesh_3/features_detection/
  2090. CGAL5/include/CGAL/Mesh_3/features_detection/cases_table.h 123.44KB
  2091. CGAL5/include/CGAL/Mesh_3/features_detection/combinations.h 10.55KB
  2092. CGAL5/include/CGAL/Mesh_3/features_detection/coordinates.h 1.72KB
  2093. CGAL5/include/CGAL/Mesh_3/features_detection/cube_isometries.h 2.07KB
  2094. CGAL5/include/CGAL/Mesh_3/features_detection/features_detection.h 191.74KB
  2095. CGAL5/include/CGAL/Mesh_3/features_detection/features_detection_helpers.h 1.69KB
  2096. CGAL5/include/CGAL/Mesh_3/features_detection/postprocess_weights.h 5.84KB
  2097. CGAL5/include/CGAL/Mesh_3/generate_label_weights.h 8.57KB
  2098. CGAL5/include/CGAL/Mesh_3/Has_features.h 1.36KB
  2099. CGAL5/include/CGAL/Mesh_3/Image_plus_weights_to_labeled_function_wrapper.h 4.02KB
  2100. CGAL5/include/CGAL/Mesh_3/Image_to_labeled_function_wrapper.h 4.86KB
  2101. CGAL5/include/CGAL/Mesh_3/Implicit_surface_mesher_visitor.h 1.79KB
  2102. CGAL5/include/CGAL/Mesh_3/initialize_triangulation_from_gray_image.h 2.05KB
  2103. CGAL5/include/CGAL/Mesh_3/initialize_triangulation_from_labeled_image.h 9.26KB
  2104. CGAL5/include/CGAL/Mesh_3/internal/
  2105. CGAL5/include/CGAL/Mesh_3/internal/Boundary_of_subdomain_of_complex_3_in_triangulation_3_to_off.h 2.84KB
  2106. CGAL5/include/CGAL/Mesh_3/internal/check_weights.h 1.9KB
  2107. CGAL5/include/CGAL/Mesh_3/internal/Graph_manipulations.h 4.48KB
  2108. CGAL5/include/CGAL/Mesh_3/internal/Handle_IO_for_pair_of_int.h 2.53KB
  2109. CGAL5/include/CGAL/Mesh_3/internal/helpers.h 5.63KB
  2110. CGAL5/include/CGAL/Mesh_3/internal/indices_management.h 9.63KB
  2111. CGAL5/include/CGAL/Mesh_3/io_signature.h 8.11KB
  2112. CGAL5/include/CGAL/Mesh_3/Is_mesh_domain_field_3.h 1.31KB
  2113. CGAL5/include/CGAL/Mesh_3/Lloyd_move.h 20.27KB
  2114. CGAL5/include/CGAL/Mesh_3/Mesher_3.h 28.08KB
  2115. CGAL5/include/CGAL/Mesh_3/Mesher_level.h 34.64KB
  2116. CGAL5/include/CGAL/Mesh_3/Mesher_level_default_implementations.h 3.75KB
  2117. CGAL5/include/CGAL/Mesh_3/Mesh_complex_3_in_triangulation_3_base.h 36.75KB
  2118. CGAL5/include/CGAL/Mesh_3/Mesh_complex_3_in_triangulation_3_fwd.h 1.25KB
  2119. CGAL5/include/CGAL/Mesh_3/Mesh_global_optimizer.h 35.45KB
  2120. CGAL5/include/CGAL/Mesh_3/Mesh_sizing_field.h 8.77KB
  2121. CGAL5/include/CGAL/Mesh_3/mesh_standard_cell_criteria.h 14.83KB
  2122. CGAL5/include/CGAL/Mesh_3/mesh_standard_criteria.h 4.18KB
  2123. CGAL5/include/CGAL/Mesh_3/mesh_standard_facet_criteria.h 21.2KB
  2124. CGAL5/include/CGAL/Mesh_3/Mesh_surface_cell_base_3.h 8.32KB
  2125. CGAL5/include/CGAL/Mesh_3/min_dihedral_angle.h 5KB
  2126. CGAL5/include/CGAL/Mesh_3/Null_exuder_visitor.h 1.06KB
  2127. CGAL5/include/CGAL/Mesh_3/Null_global_optimizer_visitor.h 1.19KB
  2128. CGAL5/include/CGAL/Mesh_3/Null_perturber_visitor.h 1.12KB
  2129. CGAL5/include/CGAL/Mesh_3/Null_subdomain_index.h 573B
  2130. CGAL5/include/CGAL/Mesh_3/Odt_move.h 9.12KB
  2131. CGAL5/include/CGAL/Mesh_3/parameters.h 803B
  2132. CGAL5/include/CGAL/Mesh_3/parameters_defaults.h 1.7KB
  2133. CGAL5/include/CGAL/Mesh_3/Poisson_refine_cells_3.h 9.15KB
  2134. CGAL5/include/CGAL/Mesh_3/polyhedral_to_labeled_function_wrapper.h 9.12KB
  2135. CGAL5/include/CGAL/Mesh_3/polylines_to_protect.h 42.58KB
  2136. CGAL5/include/CGAL/Mesh_3/Polyline_with_context.h 1.82KB
  2137. CGAL5/include/CGAL/Mesh_3/Profile_counter.h 1.75KB
  2138. CGAL5/include/CGAL/Mesh_3/Profiling_tools.h 1.33KB
  2139. CGAL5/include/CGAL/Mesh_3/Protect_edges_sizing_field.h 71.36KB
  2140. CGAL5/include/CGAL/Mesh_3/radius_ratio.h 2.39KB
  2141. CGAL5/include/CGAL/Mesh_3/Refine_cells_3.h 28.7KB
  2142. CGAL5/include/CGAL/Mesh_3/Refine_facets_3.h 61.19KB
  2143. CGAL5/include/CGAL/Mesh_3/Refine_facets_manifold_base.h 23.35KB
  2144. CGAL5/include/CGAL/Mesh_3/Refine_tets_visitor.h 2.3KB
  2145. CGAL5/include/CGAL/Mesh_3/Robust_intersection_kernel.h 3.22KB
  2146. CGAL5/include/CGAL/Mesh_3/Robust_intersection_traits_3.h 18.92KB
  2147. CGAL5/include/CGAL/Mesh_3/search_for_connected_components_in_labeled_image.h 9.7KB
  2148. CGAL5/include/CGAL/Mesh_3/Sizing_grid.h 14.35KB
  2149. CGAL5/include/CGAL/Mesh_3/Slivers_exuder.h 58.54KB
  2150. CGAL5/include/CGAL/Mesh_3/Slivers_exuder_cell_attributes_traits.h 2.01KB
  2151. CGAL5/include/CGAL/Mesh_3/sliver_criteria.h 6.8KB
  2152. CGAL5/include/CGAL/Mesh_3/Sliver_perturber.h 43.97KB
  2153. CGAL5/include/CGAL/Mesh_3/squared_distance_Point_3_Triangle_3.h 702B
  2154. CGAL5/include/CGAL/Mesh_3/tet_soup_to_c3t3.h 16.9KB
  2155. CGAL5/include/CGAL/Mesh_3/Triangle_accessor_primitive.h 2.47KB
  2156. CGAL5/include/CGAL/Mesh_3/Triangulation_helpers.h 18.98KB
  2157. CGAL5/include/CGAL/Mesh_3/Triangulation_sizing_field.h 7.99KB
  2158. CGAL5/include/CGAL/Mesh_3/Uniform_sizing_field.h 1.42KB
  2159. CGAL5/include/CGAL/Mesh_3/utilities.h 3.13KB
  2160. CGAL5/include/CGAL/Mesh_3/vertex_perturbation.h 43.22KB
  2161. CGAL5/include/CGAL/Mesh_3/Worksharing_data_structures.h 20.13KB
  2162. CGAL5/include/CGAL/Mesh_cell_base_3.h 7.22KB
  2163. CGAL5/include/CGAL/Mesh_cell_criteria_3.h 3.36KB
  2164. CGAL5/include/CGAL/Mesh_complex_3_in_triangulation_3.h 25.4KB
  2165. CGAL5/include/CGAL/Mesh_constant_domain_field_3.h 2.09KB
  2166. CGAL5/include/CGAL/Mesh_criteria_3.h 7.65KB
  2167. CGAL5/include/CGAL/Mesh_domain_with_polyline_features_3.h 47.45KB
  2168. CGAL5/include/CGAL/Mesh_edge_criteria_3.h 4.06KB
  2169. CGAL5/include/CGAL/Mesh_error_code.h 1.19KB
  2170. CGAL5/include/CGAL/Mesh_facet_criteria_3.h 4.68KB
  2171. CGAL5/include/CGAL/Mesh_facet_topology.h 1KB
  2172. CGAL5/include/CGAL/Mesh_optimization_return_code.h 1KB
  2173. CGAL5/include/CGAL/Mesh_polyhedron_3.h 4.69KB
  2174. CGAL5/include/CGAL/mesh_segmentation.h 25.21KB
  2175. CGAL5/include/CGAL/mesh_skin_surface_3.h 1.36KB
  2176. CGAL5/include/CGAL/Mesh_triangulation_3.h 5.4KB
  2177. CGAL5/include/CGAL/mesh_union_of_balls_3.h 858B
  2178. CGAL5/include/CGAL/Mesh_vertex_base_3.h 8.65KB
  2179. CGAL5/include/CGAL/minimum_enclosing_quadrilateral_2.h 1.11KB
  2180. CGAL5/include/CGAL/Minimum_enclosing_quadrilateral_traits_2.h 1.17KB
  2181. CGAL5/include/CGAL/Minkowski_sum_2/
  2182. CGAL5/include/CGAL/Minkowski_sum_2/AABB_collision_detector_2.h 4.97KB
  2183. CGAL5/include/CGAL/Minkowski_sum_2/AABB_node_with_join.h 9.35KB
  2184. CGAL5/include/CGAL/Minkowski_sum_2/AABB_segment_2_primitive.h 1.35KB
  2185. CGAL5/include/CGAL/Minkowski_sum_2/AABB_traits_2.h 6.38KB
  2186. CGAL5/include/CGAL/Minkowski_sum_2/AABB_traversal_traits_with_join.h 11.35KB
  2187. CGAL5/include/CGAL/Minkowski_sum_2/AABB_tree_with_join.h 30.39KB
  2188. CGAL5/include/CGAL/Minkowski_sum_2/Approx_offset_base_2.h 21.65KB
  2189. CGAL5/include/CGAL/Minkowski_sum_2/Arr_labeled_traits_2.h 10.47KB
  2190. CGAL5/include/CGAL/Minkowski_sum_2/Decomposition_strategy_adapter.h 5.98KB
  2191. CGAL5/include/CGAL/Minkowski_sum_2/Exact_offset_base_2.h 9.88KB
  2192. CGAL5/include/CGAL/Minkowski_sum_2/Hole_filter_2.h 2.72KB
  2193. CGAL5/include/CGAL/Minkowski_sum_2/Labels.h 6.49KB
  2194. CGAL5/include/CGAL/Minkowski_sum_2/Minkowski_sum_by_reduced_convolution_2.h 16.79KB
  2195. CGAL5/include/CGAL/Minkowski_sum_2/Minkowski_sum_conv_2.h 21.91KB
  2196. CGAL5/include/CGAL/Minkowski_sum_2/Minkowski_sum_decomp_2.h 16.21KB
  2197. CGAL5/include/CGAL/Minkowski_sum_2/Offset_conv_2.h 6.69KB
  2198. CGAL5/include/CGAL/Minkowski_sum_2/Offset_decomp_2.h 3.93KB
  2199. CGAL5/include/CGAL/Minkowski_sum_2/Polygon_convex_decomposition.h 3.64KB
  2200. CGAL5/include/CGAL/Minkowski_sum_2/Union_of_curve_cycles_2.h 7.52KB
  2201. CGAL5/include/CGAL/Minkowski_sum_2/Union_of_cycles_2.h 6.68KB
  2202. CGAL5/include/CGAL/Minkowski_sum_2/Union_of_segment_cycles_2.h 4.24KB
  2203. CGAL5/include/CGAL/minkowski_sum_2.h 49.91KB
  2204. CGAL5/include/CGAL/Minkowski_sum_3/
  2205. CGAL5/include/CGAL/Minkowski_sum_3/bipartite_nary_union_sorted_combined.h 8KB
  2206. CGAL5/include/CGAL/Minkowski_sum_3/Gaussian_map.h 45.77KB
  2207. CGAL5/include/CGAL/Minkowski_sum_3/Gaussian_map_to_nef_3.h 9.38KB
  2208. CGAL5/include/CGAL/Minkowski_sum_3/PointMark.h 1.81KB
  2209. CGAL5/include/CGAL/minkowski_sum_3.h 3.11KB
  2210. CGAL5/include/CGAL/Min_annulus_d.h 27.63KB
  2211. CGAL5/include/CGAL/Min_circle_2/
  2212. CGAL5/include/CGAL/Min_circle_2/Min_circle_2_adapterC2.h 8.02KB
  2213. CGAL5/include/CGAL/Min_circle_2/Min_circle_2_adapterH2.h 9.72KB
  2214. CGAL5/include/CGAL/Min_circle_2/Min_circle_2_impl.h 2.82KB
  2215. CGAL5/include/CGAL/Min_circle_2/Optimisation_circle_2.h 5.35KB
  2216. CGAL5/include/CGAL/Min_circle_2/Optimisation_circle_2_impl.h 2.43KB
  2217. CGAL5/include/CGAL/Min_circle_2.h 16.77KB
  2218. CGAL5/include/CGAL/Min_circle_2_traits_2.h 1.87KB
  2219. CGAL5/include/CGAL/Min_ellipse_2/
  2220. CGAL5/include/CGAL/Min_ellipse_2/Min_ellipse_2_adapterC2.h 11.08KB
  2221. CGAL5/include/CGAL/Min_ellipse_2/Min_ellipse_2_adapterH2.h 11.47KB
  2222. CGAL5/include/CGAL/Min_ellipse_2/Min_ellipse_2_impl.h 2.83KB
  2223. CGAL5/include/CGAL/Min_ellipse_2/Optimisation_ellipse_2.h 13.77KB
  2224. CGAL5/include/CGAL/Min_ellipse_2/Optimisation_ellipse_2_impl.h 3.03KB
  2225. CGAL5/include/CGAL/Min_ellipse_2.h 16.11KB
  2226. CGAL5/include/CGAL/Min_ellipse_2_traits_2.h 1.58KB
  2227. CGAL5/include/CGAL/min_max_n.h 3.14KB
  2228. CGAL5/include/CGAL/min_quadrilateral_2.h 23.61KB
  2229. CGAL5/include/CGAL/Min_quadrilateral_traits_2.h 13.07KB
  2230. CGAL5/include/CGAL/Min_sphere_annulus_d_traits_2.h 2.46KB
  2231. CGAL5/include/CGAL/Min_sphere_annulus_d_traits_3.h 2.46KB
  2232. CGAL5/include/CGAL/Min_sphere_annulus_d_traits_d.h 2.36KB
  2233. CGAL5/include/CGAL/Min_sphere_d/
  2234. CGAL5/include/CGAL/Min_sphere_d/Min_sphere_d_impl.h 3.01KB
  2235. CGAL5/include/CGAL/Min_sphere_d/Optimisation_sphere_d.h 16.86KB
  2236. CGAL5/include/CGAL/Min_sphere_d.h 12.14KB
  2237. CGAL5/include/CGAL/Min_sphere_of_points_d_traits_2.h 1.61KB
  2238. CGAL5/include/CGAL/Min_sphere_of_points_d_traits_3.h 1.62KB
  2239. CGAL5/include/CGAL/Min_sphere_of_points_d_traits_d.h 1.67KB
  2240. CGAL5/include/CGAL/Min_sphere_of_spheres_d/
  2241. CGAL5/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_configure.h 2.32KB
  2242. CGAL5/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_impl.h 12.56KB
  2243. CGAL5/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_pair.h 7.12KB
  2244. CGAL5/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_pivot_impl.h 3.03KB
  2245. CGAL5/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set.h 10.07KB
  2246. CGAL5/include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set_impl.h 5.44KB
  2247. CGAL5/include/CGAL/Min_sphere_of_spheres_d.h 8.77KB
  2248. CGAL5/include/CGAL/Min_sphere_of_spheres_d_traits_2.h 1.64KB
  2249. CGAL5/include/CGAL/Min_sphere_of_spheres_d_traits_3.h 1.64KB
  2250. CGAL5/include/CGAL/Min_sphere_of_spheres_d_traits_d.h 1.69KB
  2251. CGAL5/include/CGAL/Mixed_integer_program_traits.h 28.66KB
  2252. CGAL5/include/CGAL/Modifiable_priority_queue.h 7.54KB
  2253. CGAL5/include/CGAL/Modifier_base.h 1.03KB
  2254. CGAL5/include/CGAL/Modular_arithmetic/
  2255. CGAL5/include/CGAL/Modular_arithmetic/Residue_type.h 7.52KB
  2256. CGAL5/include/CGAL/Modular_traits.h 1.31KB
  2257. CGAL5/include/CGAL/Monge_via_jet_fitting.h 28.7KB
  2258. CGAL5/include/CGAL/monotone_matrix_search.h 5.76KB
  2259. CGAL5/include/CGAL/more_functions_on_signs.h 1.4KB
  2260. CGAL5/include/CGAL/mpfi_coercion_traits.h 1.5KB
  2261. CGAL5/include/CGAL/mpfr_coercion_traits.h 1.34KB
  2262. CGAL5/include/CGAL/mpq_class.h 10.19KB
  2263. CGAL5/include/CGAL/Mpzf.h 34.96KB
  2264. CGAL5/include/CGAL/mpz_class.h 11.35KB
  2265. CGAL5/include/CGAL/MP_Float.h 23.64KB
  2266. CGAL5/include/CGAL/MP_Float_arithmetic_kernel.h 1.6KB
  2267. CGAL5/include/CGAL/MP_Float_impl.h 12.93KB
  2268. CGAL5/include/CGAL/mst_orient_normals.h 30.46KB
  2269. CGAL5/include/CGAL/Multiscale_sort.h 1.4KB
  2270. CGAL5/include/CGAL/Multiset.h 116.5KB
  2271. CGAL5/include/CGAL/multiset_assertions.h 16.11KB
  2272. CGAL5/include/CGAL/Multi_surface_3.h 1.71KB
  2273. CGAL5/include/CGAL/mutex.h 590B
  2274. CGAL5/include/CGAL/Named_function_parameters.h 12.64KB
  2275. CGAL5/include/CGAL/natural_neighbor_coordinates_2.h 13.25KB
  2276. CGAL5/include/CGAL/natural_neighbor_coordinates_3.h 14KB
  2277. CGAL5/include/CGAL/nearest_neighbor_delaunay_2.h 6.69KB
  2278. CGAL5/include/CGAL/Needs_parens_as_product.h 2.7KB
  2279. CGAL5/include/CGAL/Nef_2/
  2280. CGAL5/include/CGAL/Nef_2/Bounding_box_2.h 3.23KB
  2281. CGAL5/include/CGAL/Nef_2/Constrained_triang_traits.h 13.43KB
  2282. CGAL5/include/CGAL/Nef_2/debug.h 1.81KB
  2283. CGAL5/include/CGAL/Nef_2/geninfo.h 3.7KB
  2284. CGAL5/include/CGAL/Nef_2/gen_point_location.h 20.19KB
  2285. CGAL5/include/CGAL/Nef_2/HDS_items.h 15.19KB
  2286. CGAL5/include/CGAL/Nef_2/iterator_tools.h 2.85KB
  2287. CGAL5/include/CGAL/Nef_2/Line_to_epoint.h 2.35KB
  2288. CGAL5/include/CGAL/Nef_2/Object_handle.h 851B
  2289. CGAL5/include/CGAL/Nef_2/Object_index.h 1.48KB
  2290. CGAL5/include/CGAL/Nef_2/PM_checker.h 9.93KB
  2291. CGAL5/include/CGAL/Nef_2/PM_const_decorator.h 20.28KB
  2292. CGAL5/include/CGAL/Nef_2/PM_decorator.h 31.71KB
  2293. CGAL5/include/CGAL/Nef_2/PM_explorer.h 5.12KB
  2294. CGAL5/include/CGAL/Nef_2/PM_io_parser.h 13.07KB
  2295. CGAL5/include/CGAL/Nef_2/PM_overlayer.h 32.14KB
  2296. CGAL5/include/CGAL/Nef_2/PM_persistent_PL.h 6.31KB
  2297. CGAL5/include/CGAL/Nef_2/PM_point_locator.h 38.32KB
  2298. CGAL5/include/CGAL/Nef_2/Polynomial.h 68.13KB
  2299. CGAL5/include/CGAL/Nef_2/Polynomial_impl.h 5.63KB
  2300. CGAL5/include/CGAL/Nef_2/Segment_overlay_traits.h 31.71KB
  2301. CGAL5/include/CGAL/Nef_3/
  2302. CGAL5/include/CGAL/Nef_3/Binary_operation.h 21.43KB
  2303. CGAL5/include/CGAL/Nef_3/binop_intersection_tests.h 5.79KB
  2304. CGAL5/include/CGAL/Nef_3/bounded_side_3.h 1.76KB
  2305. CGAL5/include/CGAL/Nef_3/Bounding_box_3.h 2.14KB
  2306. CGAL5/include/CGAL/Nef_3/Combine_with_halfspace.h 6.1KB
  2307. CGAL5/include/CGAL/Nef_3/Default_items.h 1.05KB
  2308. CGAL5/include/CGAL/Nef_3/Edge_edge_overlay.h 42.24KB
  2309. CGAL5/include/CGAL/Nef_3/Exact_triangulation_euclidean_traits_xy_3.h 5.17KB
  2310. CGAL5/include/CGAL/Nef_3/Exact_triangulation_euclidean_traits_xz_3.h 5.18KB
  2311. CGAL5/include/CGAL/Nef_3/Exact_triangulation_euclidean_traits_yz_3.h 5.19KB
  2312. CGAL5/include/CGAL/Nef_3/Halfedge.h 6.13KB
  2313. CGAL5/include/CGAL/Nef_3/Halffacet.h 4.65KB
  2314. CGAL5/include/CGAL/Nef_3/ID_support_handler.h 12.5KB
  2315. CGAL5/include/CGAL/Nef_3/Infimaximal_box.h 36.66KB
  2316. CGAL5/include/CGAL/Nef_3/K3_tree.h 21.66KB
  2317. CGAL5/include/CGAL/Nef_3/Mark_bounded_volumes.h 2.91KB
  2318. CGAL5/include/CGAL/Nef_3/Nef_box.h 4.92KB
  2319. CGAL5/include/CGAL/Nef_3/OGL_helper.h 22.14KB
  2320. CGAL5/include/CGAL/Nef_3/Pluecker_line_3.h 9.82KB
  2321. CGAL5/include/CGAL/Nef_3/polygon_mesh_to_nef_3.h 11.81KB
  2322. CGAL5/include/CGAL/Nef_3/quotient_coordinates_to_homogeneous_point.h 1.63KB
  2323. CGAL5/include/CGAL/Nef_3/SFace.h 4.42KB
  2324. CGAL5/include/CGAL/Nef_3/SHalfedge.h 8.46KB
  2325. CGAL5/include/CGAL/Nef_3/SHalfloop.h 4.23KB
  2326. CGAL5/include/CGAL/Nef_3/shell_to_nef_3.h 4.89KB
  2327. CGAL5/include/CGAL/Nef_3/SM_visualizor.h 8.23KB
  2328. CGAL5/include/CGAL/Nef_3/SNC_constructor.h 73.14KB
  2329. CGAL5/include/CGAL/Nef_3/SNC_const_decorator.h 23.39KB
  2330. CGAL5/include/CGAL/Nef_3/SNC_decorator.h 22.33KB
  2331. CGAL5/include/CGAL/Nef_3/SNC_decorator_traits.h 4.13KB
  2332. CGAL5/include/CGAL/Nef_3/SNC_external_structure.h 48.36KB
  2333. CGAL5/include/CGAL/Nef_3/SNC_FM_decorator.h 24.95KB
  2334. CGAL5/include/CGAL/Nef_3/SNC_halfedge_key.h 2.83KB
  2335. CGAL5/include/CGAL/Nef_3/SNC_indexed_items.h 6.13KB
  2336. CGAL5/include/CGAL/Nef_3/SNC_intersection.h 8.93KB
  2337. CGAL5/include/CGAL/Nef_3/SNC_io_parser.h 70.71KB
  2338. CGAL5/include/CGAL/Nef_3/SNC_items.h 1.8KB
  2339. CGAL5/include/CGAL/Nef_3/SNC_iteration.h 2.05KB
  2340. CGAL5/include/CGAL/Nef_3/SNC_k3_tree_traits.h 8.56KB
  2341. CGAL5/include/CGAL/Nef_3/SNC_list.h 3.16KB
  2342. CGAL5/include/CGAL/Nef_3/SNC_point_locator.h 23.34KB
  2343. CGAL5/include/CGAL/Nef_3/SNC_simplify.h 28.13KB
  2344. CGAL5/include/CGAL/Nef_3/SNC_SM_explorer.h 1.08KB
  2345. CGAL5/include/CGAL/Nef_3/SNC_SM_overlayer.h 18.11KB
  2346. CGAL5/include/CGAL/Nef_3/SNC_SM_visualizor.h 7.63KB
  2347. CGAL5/include/CGAL/Nef_3/SNC_sphere_map.h 16.14KB
  2348. CGAL5/include/CGAL/Nef_3/SNC_structure.h 46.92KB
  2349. CGAL5/include/CGAL/Nef_3/Vertex.h 13.32KB
  2350. CGAL5/include/CGAL/Nef_3/vertex_cycle_to_nef_3.h 13.61KB
  2351. CGAL5/include/CGAL/Nef_3/Volume.h 3.03KB
  2352. CGAL5/include/CGAL/Nef_nary_intersection_3.h 1.44KB
  2353. CGAL5/include/CGAL/Nef_nary_union_3.h 1.4KB
  2354. CGAL5/include/CGAL/Nef_polyhedron_2.h 38.86KB
  2355. CGAL5/include/CGAL/Nef_polyhedron_3.h 73.35KB
  2356. CGAL5/include/CGAL/Nef_polyhedron_S2.h 25.55KB
  2357. CGAL5/include/CGAL/Nef_polynomial.h 8.25KB
  2358. CGAL5/include/CGAL/Nef_polynomial_fwd.h 1.18KB
  2359. CGAL5/include/CGAL/Nef_S2/
  2360. CGAL5/include/CGAL/Nef_S2/Generic_handle_map.h 1.21KB
  2361. CGAL5/include/CGAL/Nef_S2/ID_support_handler.h 3.36KB
  2362. CGAL5/include/CGAL/Nef_S2/leda_sphere_map.h 7.68KB
  2363. CGAL5/include/CGAL/Nef_S2/Normalizing.h 9.99KB
  2364. CGAL5/include/CGAL/Nef_S2/OGL_base_object.h 1.16KB
  2365. CGAL5/include/CGAL/Nef_S2/SM_checker.h 8.53KB
  2366. CGAL5/include/CGAL/Nef_S2/SM_constrained_triang_traits.h 13.73KB
  2367. CGAL5/include/CGAL/Nef_S2/SM_const_decorator.h 14.64KB
  2368. CGAL5/include/CGAL/Nef_S2/SM_decorator.h 33.35KB
  2369. CGAL5/include/CGAL/Nef_S2/SM_decorator_traits.h 3.75KB
  2370. CGAL5/include/CGAL/Nef_S2/SM_io_parser.h 16.78KB
  2371. CGAL5/include/CGAL/Nef_S2/SM_items.h 10.57KB
  2372. CGAL5/include/CGAL/Nef_S2/SM_iteration.h 1.51KB
  2373. CGAL5/include/CGAL/Nef_S2/SM_list.h 3.57KB
  2374. CGAL5/include/CGAL/Nef_S2/SM_overlayer.h 82.35KB
  2375. CGAL5/include/CGAL/Nef_S2/SM_point_locator.h 23.3KB
  2376. CGAL5/include/CGAL/Nef_S2/SM_triangulator.h 24.87KB
  2377. CGAL5/include/CGAL/Nef_S2/SM_visualizor.h 6.97KB
  2378. CGAL5/include/CGAL/Nef_S2/Sphere_circle.h 6.31KB
  2379. CGAL5/include/CGAL/Nef_S2/Sphere_direction.h 3.6KB
  2380. CGAL5/include/CGAL/Nef_S2/Sphere_geometry.h 7.89KB
  2381. CGAL5/include/CGAL/Nef_S2/Sphere_geometry_OGL.h 24.98KB
  2382. CGAL5/include/CGAL/Nef_S2/Sphere_map.h 20.97KB
  2383. CGAL5/include/CGAL/Nef_S2/Sphere_point.h 4.44KB
  2384. CGAL5/include/CGAL/Nef_S2/sphere_predicates.h 10.89KB
  2385. CGAL5/include/CGAL/Nef_S2/Sphere_segment.h 12.56KB
  2386. CGAL5/include/CGAL/Nef_S2/Sphere_triangle.h 3.41KB
  2387. CGAL5/include/CGAL/Nested_iterator.h 5.65KB
  2388. CGAL5/include/CGAL/NewKernel_d/
  2389. CGAL5/include/CGAL/NewKernel_d/Cartesian_base.h 955B
  2390. CGAL5/include/CGAL/NewKernel_d/Cartesian_change_FT.h 4.82KB
  2391. CGAL5/include/CGAL/NewKernel_d/Cartesian_complete.h 966B
  2392. CGAL5/include/CGAL/NewKernel_d/Cartesian_filter_K.h 4.46KB
  2393. CGAL5/include/CGAL/NewKernel_d/Cartesian_filter_NT.h 2.68KB
  2394. CGAL5/include/CGAL/NewKernel_d/Cartesian_LA_base.h 7.63KB
  2395. CGAL5/include/CGAL/NewKernel_d/Cartesian_LA_functors.h 12.1KB
  2396. CGAL5/include/CGAL/NewKernel_d/Cartesian_per_dimension.h 764B
  2397. CGAL5/include/CGAL/NewKernel_d/Cartesian_static_filters.h 5.8KB
  2398. CGAL5/include/CGAL/NewKernel_d/Coaffine.h 15.43KB
  2399. CGAL5/include/CGAL/NewKernel_d/Define_kernel_types.h 1.42KB
  2400. CGAL5/include/CGAL/NewKernel_d/Dimension_base.h 1.38KB
  2401. CGAL5/include/CGAL/NewKernel_d/Filtered_predicate2.h 3.65KB
  2402. CGAL5/include/CGAL/NewKernel_d/function_objects_cartesian.h 57.65KB
  2403. CGAL5/include/CGAL/NewKernel_d/functor_properties.h 958B
  2404. CGAL5/include/CGAL/NewKernel_d/functor_tags.h 16.21KB
  2405. CGAL5/include/CGAL/NewKernel_d/KernelD_converter.h 8.07KB
  2406. CGAL5/include/CGAL/NewKernel_d/Kernel_2_interface.h 4.97KB
  2407. CGAL5/include/CGAL/NewKernel_d/Kernel_3_interface.h 4.69KB
  2408. CGAL5/include/CGAL/NewKernel_d/Kernel_d_interface.h 20.46KB
  2409. CGAL5/include/CGAL/NewKernel_d/Kernel_object_converter.h 6.61KB
  2410. CGAL5/include/CGAL/NewKernel_d/Lazy_cartesian.h 16.98KB
  2411. CGAL5/include/CGAL/NewKernel_d/LA_eigen/
  2412. CGAL5/include/CGAL/NewKernel_d/LA_eigen/constructors.h 3.57KB
  2413. CGAL5/include/CGAL/NewKernel_d/LA_eigen/LA.h 8.58KB
  2414. CGAL5/include/CGAL/NewKernel_d/static_int.h 2.9KB
  2415. CGAL5/include/CGAL/NewKernel_d/store_kernel.h 2.93KB
  2416. CGAL5/include/CGAL/NewKernel_d/Types/
  2417. CGAL5/include/CGAL/NewKernel_d/Types/Aff_transformation.h 1.32KB
  2418. CGAL5/include/CGAL/NewKernel_d/Types/Hyperplane.h 6.51KB
  2419. CGAL5/include/CGAL/NewKernel_d/Types/Iso_box.h 3.59KB
  2420. CGAL5/include/CGAL/NewKernel_d/Types/Line.h 2.2KB
  2421. CGAL5/include/CGAL/NewKernel_d/Types/Ray.h 2.21KB
  2422. CGAL5/include/CGAL/NewKernel_d/Types/Segment.h 4.54KB
  2423. CGAL5/include/CGAL/NewKernel_d/Types/Sphere.h 5.44KB
  2424. CGAL5/include/CGAL/NewKernel_d/Types/Weighted_point.h 13.25KB
  2425. CGAL5/include/CGAL/NewKernel_d/utils.h 6.88KB
  2426. CGAL5/include/CGAL/NewKernel_d/Vector/
  2427. CGAL5/include/CGAL/NewKernel_d/Vector/array.h 5.6KB
  2428. CGAL5/include/CGAL/NewKernel_d/Vector/avx4.h 5.82KB
  2429. CGAL5/include/CGAL/NewKernel_d/Vector/determinant_of_iterator_to_points_from_iterator_to_vectors.h 2.72KB
  2430. CGAL5/include/CGAL/NewKernel_d/Vector/determinant_of_iterator_to_points_from_points.h 8.05KB
  2431. CGAL5/include/CGAL/NewKernel_d/Vector/determinant_of_iterator_to_vectors_from_vectors.h 7.74KB
  2432. CGAL5/include/CGAL/NewKernel_d/Vector/determinant_of_points_from_vectors.h 6.08KB
  2433. CGAL5/include/CGAL/NewKernel_d/Vector/determinant_of_vectors_small_dim.h 1.49KB
  2434. CGAL5/include/CGAL/NewKernel_d/Vector/determinant_of_vectors_small_dim_internal.h 5.15KB
  2435. CGAL5/include/CGAL/NewKernel_d/Vector/mix.h 1.19KB
  2436. CGAL5/include/CGAL/NewKernel_d/Vector/sse2.h 3.7KB
  2437. CGAL5/include/CGAL/NewKernel_d/Vector/v2int.h 5.39KB
  2438. CGAL5/include/CGAL/NewKernel_d/Vector/vector.h 5.21KB
  2439. CGAL5/include/CGAL/NewKernel_d/Wrapper/
  2440. CGAL5/include/CGAL/NewKernel_d/Wrapper/Cartesian_wrap.h 9.94KB
  2441. CGAL5/include/CGAL/NewKernel_d/Wrapper/Hyperplane_d.h 2.99KB
  2442. CGAL5/include/CGAL/NewKernel_d/Wrapper/Point_d.h 5.78KB
  2443. CGAL5/include/CGAL/NewKernel_d/Wrapper/Ref_count_obj.h 2.41KB
  2444. CGAL5/include/CGAL/NewKernel_d/Wrapper/Segment_d.h 3.07KB
  2445. CGAL5/include/CGAL/NewKernel_d/Wrapper/Sphere_d.h 2.91KB
  2446. CGAL5/include/CGAL/NewKernel_d/Wrapper/Vector_d.h 5.21KB
  2447. CGAL5/include/CGAL/NewKernel_d/Wrapper/Weighted_point_d.h 3.69KB
  2448. CGAL5/include/CGAL/normal_vector_newell_3.h 5.2KB
  2449. CGAL5/include/CGAL/No_intersection_surface_sweep_2.h 27.8KB
  2450. CGAL5/include/CGAL/NT_converter.h 3.21KB
  2451. CGAL5/include/CGAL/Null_matrix.h 712B
  2452. CGAL5/include/CGAL/Number_types/
  2453. CGAL5/include/CGAL/Number_types/internal/
  2454. CGAL5/include/CGAL/Number_types/internal/Exact_type_selector.h 5.43KB
  2455. CGAL5/include/CGAL/Number_types/internal_functions_comparison_root_of_2.h 5.83KB
  2456. CGAL5/include/CGAL/number_type_basic.h 1.9KB
  2457. CGAL5/include/CGAL/Number_type_checker.h 28.13KB
  2458. CGAL5/include/CGAL/number_type_config.h 1KB
  2459. CGAL5/include/CGAL/number_utils.h 10.32KB
  2460. CGAL5/include/CGAL/number_utils_classes.h 3.36KB
  2461. CGAL5/include/CGAL/N_step_adaptor.h 767B
  2462. CGAL5/include/CGAL/N_step_adaptor_derived.h 783B
  2463. CGAL5/include/CGAL/Object.h 4.04KB
  2464. CGAL5/include/CGAL/Octree.h 1.49KB
  2465. CGAL5/include/CGAL/odt_optimize_mesh_3.h 3.4KB
  2466. CGAL5/include/CGAL/offset_polygon_2.h 6.3KB
  2467. CGAL5/include/CGAL/OFF_to_nef_3.h 6.62KB
  2468. CGAL5/include/CGAL/OpenGR/
  2469. CGAL5/include/CGAL/OpenGR/compute_registration_transformation.h 16.67KB
  2470. CGAL5/include/CGAL/OpenGR/register_point_sets.h 13.22KB
  2471. CGAL5/include/CGAL/OpenNL/
  2472. CGAL5/include/CGAL/OpenNL/bicgstab.h 11KB
  2473. CGAL5/include/CGAL/OpenNL/blas.h 1.75KB
  2474. CGAL5/include/CGAL/OpenNL/conjugate_gradient.h 7.65KB
  2475. CGAL5/include/CGAL/OpenNL/full_vector.h 3.96KB
  2476. CGAL5/include/CGAL/OpenNL/linear_solver.h 13.61KB
  2477. CGAL5/include/CGAL/OpenNL/preconditioner.h 5.47KB
  2478. CGAL5/include/CGAL/OpenNL/sparse_matrix.h 7.75KB
  2479. CGAL5/include/CGAL/Optimal_bounding_box/
  2480. CGAL5/include/CGAL/Optimal_bounding_box/internal/
  2481. CGAL5/include/CGAL/Optimal_bounding_box/internal/evolution.h 7.41KB
  2482. CGAL5/include/CGAL/Optimal_bounding_box/internal/fitness_function.h 4.01KB
  2483. CGAL5/include/CGAL/Optimal_bounding_box/internal/helper.h 1.12KB
  2484. CGAL5/include/CGAL/Optimal_bounding_box/internal/nelder_mead_functions.h 4.91KB
  2485. CGAL5/include/CGAL/Optimal_bounding_box/internal/optimize_2.h 7.65KB
  2486. CGAL5/include/CGAL/Optimal_bounding_box/internal/population.h 4.64KB
  2487. CGAL5/include/CGAL/Optimal_bounding_box/oriented_bounding_box.h 19.36KB
  2488. CGAL5/include/CGAL/Optimal_bounding_box/Oriented_bounding_box_traits_3.h 2.18KB
  2489. CGAL5/include/CGAL/optimal_bounding_box.h 994B
  2490. CGAL5/include/CGAL/Optimal_transportation_reconstruction_2.h 53.42KB
  2491. CGAL5/include/CGAL/Optimisation/
  2492. CGAL5/include/CGAL/Optimisation/Access_coordinates_begin_2.h 4.03KB
  2493. CGAL5/include/CGAL/Optimisation/Access_coordinates_begin_3.h 4.03KB
  2494. CGAL5/include/CGAL/Optimisation/Access_coordinates_begin_d.h 1.99KB
  2495. CGAL5/include/CGAL/Optimisation/Access_dimension_2.h 1.48KB
  2496. CGAL5/include/CGAL/Optimisation/Access_dimension_3.h 1.48KB
  2497. CGAL5/include/CGAL/Optimisation/Access_dimension_d.h 1.48KB
  2498. CGAL5/include/CGAL/Optimisation/assertions.h 16.72KB
  2499. CGAL5/include/CGAL/Optimisation/basic.h 1.26KB
  2500. CGAL5/include/CGAL/Optimisation/Construct_point_2.h 1.89KB
  2501. CGAL5/include/CGAL/Optimisation/Construct_point_3.h 1.93KB
  2502. CGAL5/include/CGAL/Optimisation/Construct_point_d.h 1.62KB
  2503. CGAL5/include/CGAL/Optimisation/debug.h 1.04KB
  2504. CGAL5/include/CGAL/Optimisation_d_traits_2.h 2.54KB
  2505. CGAL5/include/CGAL/Optimisation_d_traits_3.h 2.54KB
  2506. CGAL5/include/CGAL/Optimisation_d_traits_d.h 2.44KB
  2507. CGAL5/include/CGAL/optimize_mesh_3.h 903B
  2508. CGAL5/include/CGAL/optimize_periodic_3_mesh_3.h 3.91KB
  2509. CGAL5/include/CGAL/Orientation_Linf_2.h 4.94KB
  2510. CGAL5/include/CGAL/Origin.h 964B
  2511. CGAL5/include/CGAL/Origin_impl.h 697B
  2512. CGAL5/include/CGAL/Orthogonal_incremental_neighbor_search.h 21.57KB
  2513. CGAL5/include/CGAL/Orthogonal_k_neighbor_search.h 10.8KB
  2514. CGAL5/include/CGAL/Orthtree/
  2515. CGAL5/include/CGAL/Orthtree/Cartesian_ranges.h 1.57KB
  2516. CGAL5/include/CGAL/Orthtree/IO.h 1.63KB
  2517. CGAL5/include/CGAL/Orthtree/Node.h 16.42KB
  2518. CGAL5/include/CGAL/Orthtree/Split_predicates.h 3.17KB
  2519. CGAL5/include/CGAL/Orthtree/Traversals.h 4.95KB
  2520. CGAL5/include/CGAL/Orthtree/Traversal_iterator.h 1.76KB
  2521. CGAL5/include/CGAL/Orthtree.h 30.24KB
  2522. CGAL5/include/CGAL/Orthtree_traits_2.h 3.63KB
  2523. CGAL5/include/CGAL/Orthtree_traits_3.h 4.11KB
  2524. CGAL5/include/CGAL/Orthtree_traits_d.h 3.55KB
  2525. CGAL5/include/CGAL/OSQP_quadratic_program_traits.h 9.66KB
  2526. CGAL5/include/CGAL/OTR_2/
  2527. CGAL5/include/CGAL/OTR_2/Cost.h 2.24KB
  2528. CGAL5/include/CGAL/OTR_2/Reconstruction_edge_2.h 3.34KB
  2529. CGAL5/include/CGAL/OTR_2/Reconstruction_face_base_2.h 5.85KB
  2530. CGAL5/include/CGAL/OTR_2/Reconstruction_triangulation_2.h 33.2KB
  2531. CGAL5/include/CGAL/OTR_2/Reconstruction_vertex_base_2.h 3.19KB
  2532. CGAL5/include/CGAL/OTR_2/Sample.h 2.79KB
  2533. CGAL5/include/CGAL/Parabola_2.h 7.26KB
  2534. CGAL5/include/CGAL/Parabola_segment_2.h 4.43KB
  2535. CGAL5/include/CGAL/Partition_2/
  2536. CGAL5/include/CGAL/Partition_2/Circulator_pair.h 3.06KB
  2537. CGAL5/include/CGAL/Partition_2/Indirect_edge_compare.h 5.02KB
  2538. CGAL5/include/CGAL/Partition_2/Indirect_less_xy_2.h 1022B
  2539. CGAL5/include/CGAL/Partition_2/Indirect_not_less_yx_2.h 1.09KB
  2540. CGAL5/include/CGAL/Partition_2/is_degenerate_polygon_2.h 1.91KB
  2541. CGAL5/include/CGAL/Partition_2/Iterator_list.h 943B
  2542. CGAL5/include/CGAL/Partition_2/Matrix.h 1.36KB
  2543. CGAL5/include/CGAL/Partition_2/Partitioned_polygon_2.h 12.1KB
  2544. CGAL5/include/CGAL/Partition_2/partition_approx_convex_2.h 10.27KB
  2545. CGAL5/include/CGAL/Partition_2/partition_assertions.h 16.38KB
  2546. CGAL5/include/CGAL/Partition_2/partition_greene_approx_convex_2.h 31.56KB
  2547. CGAL5/include/CGAL/Partition_2/partition_optimal_convex_2.h 22.79KB
  2548. CGAL5/include/CGAL/Partition_2/Partition_opt_cvx_diagonal_list.h 1.17KB
  2549. CGAL5/include/CGAL/Partition_2/Partition_opt_cvx_edge.h 3.35KB
  2550. CGAL5/include/CGAL/Partition_2/Partition_opt_cvx_vertex.h 2.52KB
  2551. CGAL5/include/CGAL/Partition_2/Partition_traits_2_base.h 1.96KB
  2552. CGAL5/include/CGAL/Partition_2/Partition_vertex_map.h 15.37KB
  2553. CGAL5/include/CGAL/Partition_2/partition_y_monotone_2.h 18.23KB
  2554. CGAL5/include/CGAL/Partition_2/Point_pair_less_xy_2.h 1.52KB
  2555. CGAL5/include/CGAL/Partition_2/Rotation_tree_2.h 5.52KB
  2556. CGAL5/include/CGAL/Partition_2/Rotation_tree_2_impl.h 3.46KB
  2557. CGAL5/include/CGAL/Partition_2/Rotation_tree_node_2.h 4.03KB
  2558. CGAL5/include/CGAL/Partition_2/Segment_less_yx_2.h 5.49KB
  2559. CGAL5/include/CGAL/Partition_2/Triangulation_indirect_traits_2.h 4.37KB
  2560. CGAL5/include/CGAL/Partition_2/Turn_reverser.h 956B
  2561. CGAL5/include/CGAL/Partition_2/Vertex_visibility_graph_2.h 14.05KB
  2562. CGAL5/include/CGAL/Partition_2/Vertex_visibility_graph_2_impl.h 25.29KB
  2563. CGAL5/include/CGAL/partition_2.h 3.62KB
  2564. CGAL5/include/CGAL/partition_is_valid_2.h 10.48KB
  2565. CGAL5/include/CGAL/Partition_is_valid_traits_2.h 1.29KB
  2566. CGAL5/include/CGAL/Partition_traits_2.h 5.24KB
  2567. CGAL5/include/CGAL/Partition_traits_adapter_2.h 592B
  2568. CGAL5/include/CGAL/Path_on_surface.h 40.3KB
  2569. CGAL5/include/CGAL/pca_estimate_normals.h 9.07KB
  2570. CGAL5/include/CGAL/PCA_util.h 29.16KB
  2571. CGAL5/include/CGAL/PCA_util_Eigen.h 29.1KB
  2572. CGAL5/include/CGAL/Periodic_2_Delaunay_triangulation_2.h 202.56KB
  2573. CGAL5/include/CGAL/Periodic_2_Delaunay_triangulation_traits_2.h 4.78KB
  2574. CGAL5/include/CGAL/Periodic_2_offset_2.h 4.19KB
  2575. CGAL5/include/CGAL/Periodic_2_triangulation_2/
  2576. CGAL5/include/CGAL/Periodic_2_triangulation_2/internal/
  2577. CGAL5/include/CGAL/Periodic_2_triangulation_2/internal/Functor_with_offset_points_adaptor_2.h 2.54KB
  2578. CGAL5/include/CGAL/Periodic_2_triangulation_2/internal/Periodic_2_construct_point_2.h 1.57KB
  2579. CGAL5/include/CGAL/Periodic_2_triangulation_2/internal/Periodic_2_Delaunay_triangulation_filtered_traits_2.h 6.15KB
  2580. CGAL5/include/CGAL/Periodic_2_triangulation_2/internal/Periodic_2_Delaunay_triangulation_statically_filtered_traits_2.h 2.25KB
  2581. CGAL5/include/CGAL/Periodic_2_triangulation_2/internal/Periodic_2_triangulation_filtered_traits_2.h 7.64KB
  2582. CGAL5/include/CGAL/Periodic_2_triangulation_2/internal/Periodic_2_triangulation_statically_filtered_traits_2.h 2.46KB
  2583. CGAL5/include/CGAL/Periodic_2_triangulation_2/internal/Static_filters/
  2584. CGAL5/include/CGAL/Periodic_2_triangulation_2/internal/Static_filters/Periodic_2_orientation_2.h 7.87KB
  2585. CGAL5/include/CGAL/Periodic_2_triangulation_2/internal/Static_filters/Periodic_2_side_of_oriented_circle_2.h 8.41KB
  2586. CGAL5/include/CGAL/Periodic_2_triangulation_2.h 150.06KB
  2587. CGAL5/include/CGAL/Periodic_2_triangulation_dummy_12.h 6.1KB
  2588. CGAL5/include/CGAL/Periodic_2_triangulation_face_base_2.h 4.22KB
  2589. CGAL5/include/CGAL/Periodic_2_triangulation_hierarchy_2.h 18.55KB
  2590. CGAL5/include/CGAL/Periodic_2_triangulation_iterators_2.h 25.71KB
  2591. CGAL5/include/CGAL/Periodic_2_triangulation_traits_2.h 6KB
  2592. CGAL5/include/CGAL/Periodic_2_triangulation_vertex_base_2.h 3.25KB
  2593. CGAL5/include/CGAL/Periodic_3_Delaunay_triangulation_3.h 50.08KB
  2594. CGAL5/include/CGAL/Periodic_3_Delaunay_triangulation_traits_3.h 6.48KB
  2595. CGAL5/include/CGAL/Periodic_3_function_wrapper.h 1.98KB
  2596. CGAL5/include/CGAL/Periodic_3_mesh_3/
  2597. CGAL5/include/CGAL/Periodic_3_mesh_3/config.h 2.11KB
  2598. CGAL5/include/CGAL/Periodic_3_mesh_3/IO/
  2599. CGAL5/include/CGAL/Periodic_3_mesh_3/IO/File_medit.h 13.79KB
  2600. CGAL5/include/CGAL/Periodic_3_mesh_3/Protect_edges_sizing_field.h 112.4KB
  2601. CGAL5/include/CGAL/Periodic_3_mesh_triangulation_3.h 36.57KB
  2602. CGAL5/include/CGAL/Periodic_3_offset_3.h 3.69KB
  2603. CGAL5/include/CGAL/Periodic_3_regular_triangulation_3.h 63.75KB
  2604. CGAL5/include/CGAL/Periodic_3_regular_triangulation_traits_3.h 7.94KB
  2605. CGAL5/include/CGAL/Periodic_3_triangulation_3/
  2606. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/
  2607. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/canonicalize_helper.h 12.81KB
  2608. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Functor_with_offset_points_adaptor_3.h 2.95KB
  2609. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Functor_with_offset_weighted_points_adaptor_3.h 5.87KB
  2610. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_construct_point_3.h 2.28KB
  2611. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_construct_weighted_point_3.h 1.84KB
  2612. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_Delaunay_triangulation_filtered_traits_3.h 8KB
  2613. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_Delaunay_triangulation_remove_traits_3.h 6.13KB
  2614. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_Delaunay_triangulation_statically_filtered_traits_3.h 2.36KB
  2615. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_regular_triangulation_dummy_288.h 118.18KB
  2616. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_regular_triangulation_filtered_traits_3.h 7.44KB
  2617. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_regular_triangulation_remove_traits_3.h 10.82KB
  2618. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_regular_triangulation_statically_filtered_traits_3.h 2.43KB
  2619. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_triangulation_dummy_36.h 16.51KB
  2620. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_triangulation_dummy_generator.h 26.33KB
  2621. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_triangulation_filtered_traits_3.h 6.51KB
  2622. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_triangulation_iterators_3.h 37.25KB
  2623. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Periodic_3_triangulation_statically_filtered_traits_3.h 2.13KB
  2624. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Robust_periodic_weighted_circumcenter_traits_3.h 7.73KB
  2625. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Static_filters/
  2626. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Static_filters/Periodic_3_orientation_3.h 10.47KB
  2627. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Static_filters/Periodic_3_power_side_of_oriented_power_sphere_3.h 1.45KB
  2628. CGAL5/include/CGAL/Periodic_3_triangulation_3/internal/Static_filters/Periodic_3_side_of_oriented_sphere_3.h 12.63KB
  2629. CGAL5/include/CGAL/Periodic_3_triangulation_3.h 160.34KB
  2630. CGAL5/include/CGAL/periodic_3_triangulation_3_io.h 4.47KB
  2631. CGAL5/include/CGAL/Periodic_3_triangulation_ds_cell_base_3.h 8.85KB
  2632. CGAL5/include/CGAL/Periodic_3_triangulation_ds_vertex_base_3.h 4.23KB
  2633. CGAL5/include/CGAL/Periodic_3_triangulation_hierarchy_3.h 16.54KB
  2634. CGAL5/include/CGAL/Periodic_3_triangulation_traits_3.h 5.94KB
  2635. CGAL5/include/CGAL/Periodic_4_hyperbolic_Delaunay_triangulation_2.h 23.54KB
  2636. CGAL5/include/CGAL/Periodic_4_hyperbolic_Delaunay_triangulation_traits_2.h 28.37KB
  2637. CGAL5/include/CGAL/Periodic_4_hyperbolic_triangulation_2/
  2638. CGAL5/include/CGAL/Periodic_4_hyperbolic_triangulation_2/internal/
  2639. CGAL5/include/CGAL/Periodic_4_hyperbolic_triangulation_2/internal/Dehn_hyperbolic_octagon_translation_word.h 8.99KB
  2640. CGAL5/include/CGAL/Periodic_4_hyperbolic_triangulation_2/internal/Hyperbolic_octagon_translation_matrix.h 3.27KB
  2641. CGAL5/include/CGAL/Periodic_4_hyperbolic_triangulation_2/internal/Hyperbolic_octagon_translation_word.h 9.72KB
  2642. CGAL5/include/CGAL/Periodic_4_hyperbolic_triangulation_2/internal/Periodic_4_hyperbolic_triangulation_dummy_14.h 8.33KB
  2643. CGAL5/include/CGAL/Periodic_4_hyperbolic_triangulation_2.h 30.97KB
  2644. CGAL5/include/CGAL/Periodic_4_hyperbolic_triangulation_face_base_2.h 3.51KB
  2645. CGAL5/include/CGAL/Periodic_4_hyperbolic_triangulation_vertex_base_2.h 2.85KB
  2646. CGAL5/include/CGAL/perturb_mesh_3.h 4.15KB
  2647. CGAL5/include/CGAL/pierce_rectangles_2.h 33.12KB
  2648. CGAL5/include/CGAL/Plane_3.h 6.65KB
  2649. CGAL5/include/CGAL/Plane_separator.h 1.87KB
  2650. CGAL5/include/CGAL/pointmatcher/
  2651. CGAL5/include/CGAL/pointmatcher/compute_registration_transformation.h 32.44KB
  2652. CGAL5/include/CGAL/pointmatcher/register_point_sets.h 14.91KB
  2653. CGAL5/include/CGAL/Point_2.h 6.33KB
  2654. CGAL5/include/CGAL/Point_3.h 7.04KB
  2655. CGAL5/include/CGAL/Point_container.h 11.47KB
  2656. CGAL5/include/CGAL/point_generators_2.h 24.29KB
  2657. CGAL5/include/CGAL/point_generators_3.h 28.59KB
  2658. CGAL5/include/CGAL/point_generators_d.h 5.58KB
  2659. CGAL5/include/CGAL/Point_set_2.h 11.58KB
  2660. CGAL5/include/CGAL/Point_set_3/
  2661. CGAL5/include/CGAL/Point_set_3/IO/
  2662. CGAL5/include/CGAL/Point_set_3/IO/LAS.h 17.51KB
  2663. CGAL5/include/CGAL/Point_set_3/IO/OFF.h 6.83KB
  2664. CGAL5/include/CGAL/Point_set_3/IO/PLY.h 24.73KB
  2665. CGAL5/include/CGAL/Point_set_3/IO/XYZ.h 6.59KB
  2666. CGAL5/include/CGAL/Point_set_3/IO.h 7.17KB
  2667. CGAL5/include/CGAL/Point_set_3.h 39.74KB
  2668. CGAL5/include/CGAL/Point_set_processing_3/
  2669. CGAL5/include/CGAL/Point_set_processing_3/internal/
  2670. CGAL5/include/CGAL/Point_set_processing_3/internal/bbox_diagonal.h 2.2KB
  2671. CGAL5/include/CGAL/Point_set_processing_3/internal/Callback_wrapper.h 4.66KB
  2672. CGAL5/include/CGAL/Point_set_processing_3/internal/Neighbor_query.h 5.88KB
  2673. CGAL5/include/CGAL/Point_set_processing_3/internal/Rich_grid.h 14.46KB
  2674. CGAL5/include/CGAL/Point_set_processing_3/internal/Search_traits_vertex_handle_3.h 7.8KB
  2675. CGAL5/include/CGAL/Point_set_processing_3/internal/Voronoi_covariance_3/
  2676. CGAL5/include/CGAL/Point_set_processing_3/internal/Voronoi_covariance_3/voronoi_covariance_3.h 9.24KB
  2677. CGAL5/include/CGAL/Point_set_processing_3/internal/Voronoi_covariance_3/voronoi_covariance_sphere_3.h 4.2KB
  2678. CGAL5/include/CGAL/point_set_processing_assertions.h 18.78KB
  2679. CGAL5/include/CGAL/Point_traits.h 2.62KB
  2680. CGAL5/include/CGAL/Point_with_normal_3.h 4.29KB
  2681. CGAL5/include/CGAL/Point_with_psc_localisation.h 3.27KB
  2682. CGAL5/include/CGAL/Point_with_surface_index.h 2.01KB
  2683. CGAL5/include/CGAL/Point_with_surface_index_geom_traits.h 986B
  2684. CGAL5/include/CGAL/Poisson_implicit_surface_3.h 3.99KB
  2685. CGAL5/include/CGAL/Poisson_mesh_cell_criteria_3.h 6.17KB
  2686. CGAL5/include/CGAL/Poisson_reconstruction_function.h 41.42KB
  2687. CGAL5/include/CGAL/poisson_refine_triangulation.h 8.06KB
  2688. CGAL5/include/CGAL/poisson_surface_reconstruction.h 5.7KB
  2689. CGAL5/include/CGAL/Polychain_2.h 21.58KB
  2690. CGAL5/include/CGAL/Polygonal_schema.h 21.01KB
  2691. CGAL5/include/CGAL/Polygonal_schema_fwd.h 1.27KB
  2692. CGAL5/include/CGAL/Polygonal_schema_min_items.h 1.3KB
  2693. CGAL5/include/CGAL/Polygonal_surface_reconstruction/
  2694. CGAL5/include/CGAL/Polygonal_surface_reconstruction/internal/
  2695. CGAL5/include/CGAL/Polygonal_surface_reconstruction/internal/alpha_shape_mesh.h 10.33KB
  2696. CGAL5/include/CGAL/Polygonal_surface_reconstruction/internal/compute_confidences.h 14.29KB
  2697. CGAL5/include/CGAL/Polygonal_surface_reconstruction/internal/hypothesis.h 66.75KB
  2698. CGAL5/include/CGAL/Polygonal_surface_reconstruction/internal/parameters.h 1.26KB
  2699. CGAL5/include/CGAL/Polygonal_surface_reconstruction/internal/point_set_with_planes.h 8.29KB
  2700. CGAL5/include/CGAL/Polygonal_surface_reconstruction.h 23.23KB
  2701. CGAL5/include/CGAL/Polygon_2/
  2702. CGAL5/include/CGAL/Polygon_2/Polygon_2_algorithms_impl.h 17.57KB
  2703. CGAL5/include/CGAL/Polygon_2/Polygon_2_edge_circulator.h 6.38KB
  2704. CGAL5/include/CGAL/Polygon_2/Polygon_2_edge_iterator.h 5.92KB
  2705. CGAL5/include/CGAL/Polygon_2/Polygon_2_impl.h 4.47KB
  2706. CGAL5/include/CGAL/Polygon_2/Polygon_2_simplicity.h 17.94KB
  2707. CGAL5/include/CGAL/Polygon_2/Polygon_2_vertex_circulator.h 5.27KB
  2708. CGAL5/include/CGAL/Polygon_2/polygon_assertions.h 17.69KB
  2709. CGAL5/include/CGAL/Polygon_2.h 19.6KB
  2710. CGAL5/include/CGAL/Polygon_2_algorithms.h 15.44KB
  2711. CGAL5/include/CGAL/Polygon_convex_decomposition_2.h 2.35KB
  2712. CGAL5/include/CGAL/polygon_function_objects.h 1.48KB
  2713. CGAL5/include/CGAL/Polygon_mesh_processing/
  2714. CGAL5/include/CGAL/Polygon_mesh_processing/angle_and_area_smoothing.h 15.64KB
  2715. CGAL5/include/CGAL/Polygon_mesh_processing/bbox.h 11.49KB
  2716. CGAL5/include/CGAL/Polygon_mesh_processing/border.h 10.04KB
  2717. CGAL5/include/CGAL/Polygon_mesh_processing/clip.h 46.48KB
  2718. CGAL5/include/CGAL/Polygon_mesh_processing/compute_normal.h 35.26KB
  2719. CGAL5/include/CGAL/Polygon_mesh_processing/connected_components.h 49.05KB
  2720. CGAL5/include/CGAL/Polygon_mesh_processing/corefinement.h 47.83KB
  2721. CGAL5/include/CGAL/Polygon_mesh_processing/detect_features.h 20.09KB
  2722. CGAL5/include/CGAL/Polygon_mesh_processing/distance.h 110.73KB
  2723. CGAL5/include/CGAL/Polygon_mesh_processing/extrude.h 13.57KB
  2724. CGAL5/include/CGAL/Polygon_mesh_processing/fair.h 7.94KB
  2725. CGAL5/include/CGAL/Polygon_mesh_processing/internal/
  2726. CGAL5/include/CGAL/Polygon_mesh_processing/internal/AABB_traversal_traits_with_Hausdorff_distance.h 24.79KB
  2727. CGAL5/include/CGAL/Polygon_mesh_processing/internal/AABB_traversal_traits_with_transformation.h 9.32KB
  2728. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/
  2729. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/Face_graph_output_builder.h 88.97KB
  2730. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/face_graph_utils.h 74.29KB
  2731. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/Generic_clip_output_builder.h 8.5KB
  2732. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/intersection_callbacks.h 13.87KB
  2733. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/intersection_impl.h 72.95KB
  2734. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/intersection_nodes.h 15.4KB
  2735. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/intersection_of_coplanar_triangles_3.h 12.18KB
  2736. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/Intersection_type.h 1.5KB
  2737. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/intersect_triangle_and_segment_3.h 6.89KB
  2738. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/Output_builder_for_autorefinement.h 44.95KB
  2739. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/predicates.h 7.7KB
  2740. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Corefinement/Visitor.h 65.49KB
  2741. CGAL5/include/CGAL/Polygon_mesh_processing/internal/do_no_use_CDT2.h 762B
  2742. CGAL5/include/CGAL/Polygon_mesh_processing/internal/fair_impl.h 6.65KB
  2743. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Hole_filling/
  2744. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Hole_filling/do_not_use_DT3.h 802B
  2745. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Hole_filling/experimental/
  2746. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Hole_filling/experimental/experimental_code.h 8.56KB
  2747. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Hole_filling/Triangulate_hole_polygon_mesh.h 7.33KB
  2748. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Hole_filling/Triangulate_hole_polyline.h 55.05KB
  2749. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Isotropic_remeshing/
  2750. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Isotropic_remeshing/AABB_filtered_projection_traits.h 4.4KB
  2751. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Isotropic_remeshing/remesh_impl.h 67.68KB
  2752. CGAL5/include/CGAL/Polygon_mesh_processing/internal/mesh_to_point_set_hausdorff_distance.h 7.71KB
  2753. CGAL5/include/CGAL/Polygon_mesh_processing/internal/named_params_helper.h 685B
  2754. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Polygon_mesh_slicer/
  2755. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Polygon_mesh_slicer/Axis_parallel_plane_traits.h 4.81KB
  2756. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Polygon_mesh_slicer/Traversal_traits.h 3.77KB
  2757. CGAL5/include/CGAL/Polygon_mesh_processing/internal/refine_impl.h 12.94KB
  2758. CGAL5/include/CGAL/Polygon_mesh_processing/internal/repair_extra.h 8.46KB
  2759. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Side_of_triangle_mesh/
  2760. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Side_of_triangle_mesh/Point_inside_vertical_ray_cast.h 3.9KB
  2761. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Side_of_triangle_mesh/Ray_3_Triangle_3_traversal_traits.h 9.38KB
  2762. CGAL5/include/CGAL/Polygon_mesh_processing/internal/simplify_polyline.h 6.02KB
  2763. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Smoothing/
  2764. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Smoothing/ceres_support.h 1.65KB
  2765. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Smoothing/curvature_flow_impl.h 12.48KB
  2766. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Smoothing/mesh_smoothing_impl.h 26.83KB
  2767. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Smoothing/smoothing_evaluation.h 3.89KB
  2768. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Snapping/
  2769. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Snapping/helper.h 10.14KB
  2770. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Snapping/snap.h 59.43KB
  2771. CGAL5/include/CGAL/Polygon_mesh_processing/internal/Snapping/snap_vertices.h 55.54KB
  2772. CGAL5/include/CGAL/Polygon_mesh_processing/intersection.h 75.82KB
  2773. CGAL5/include/CGAL/Polygon_mesh_processing/IO/
  2774. CGAL5/include/CGAL/Polygon_mesh_processing/IO/polygon_mesh_io.h 5.12KB
  2775. CGAL5/include/CGAL/Polygon_mesh_processing/locate.h 84.57KB
  2776. CGAL5/include/CGAL/Polygon_mesh_processing/manifoldness.h 17.87KB
  2777. CGAL5/include/CGAL/Polygon_mesh_processing/measure.h 44.88KB
  2778. CGAL5/include/CGAL/Polygon_mesh_processing/merge_border_vertices.h 14.19KB
  2779. CGAL5/include/CGAL/Polygon_mesh_processing/Non_manifold_feature_map.h 3.75KB
  2780. CGAL5/include/CGAL/Polygon_mesh_processing/orientation.h 74.01KB
  2781. CGAL5/include/CGAL/Polygon_mesh_processing/orient_polygon_soup.h 21.01KB
  2782. CGAL5/include/CGAL/Polygon_mesh_processing/orient_polygon_soup_extension.h 17.23KB
  2783. CGAL5/include/CGAL/Polygon_mesh_processing/polygon_mesh_to_polygon_soup.h 6.22KB
  2784. CGAL5/include/CGAL/Polygon_mesh_processing/polygon_soup_to_polygon_mesh.h 11.35KB
  2785. CGAL5/include/CGAL/Polygon_mesh_processing/random_perturbation.h 11.01KB
  2786. CGAL5/include/CGAL/Polygon_mesh_processing/refine.h 4.2KB
  2787. CGAL5/include/CGAL/Polygon_mesh_processing/region_growing.h 22.01KB
  2788. CGAL5/include/CGAL/Polygon_mesh_processing/remesh.h 20.32KB
  2789. CGAL5/include/CGAL/Polygon_mesh_processing/remesh_planar_patches.h 70.36KB
  2790. CGAL5/include/CGAL/Polygon_mesh_processing/repair.h 13.98KB
  2791. CGAL5/include/CGAL/Polygon_mesh_processing/repair_degeneracies.h 99.42KB
  2792. CGAL5/include/CGAL/Polygon_mesh_processing/repair_polygon_soup.h 44.97KB
  2793. CGAL5/include/CGAL/Polygon_mesh_processing/repair_self_intersections.h 100.02KB
  2794. CGAL5/include/CGAL/Polygon_mesh_processing/self_intersections.h 26.84KB
  2795. CGAL5/include/CGAL/Polygon_mesh_processing/shape_predicates.h 24.31KB
  2796. CGAL5/include/CGAL/Polygon_mesh_processing/smooth_mesh.h 1.97KB
  2797. CGAL5/include/CGAL/Polygon_mesh_processing/smooth_shape.h 9.34KB
  2798. CGAL5/include/CGAL/Polygon_mesh_processing/stitch_borders.h 62.69KB
  2799. CGAL5/include/CGAL/Polygon_mesh_processing/surface_Delaunay_remeshing.h 13.78KB
  2800. CGAL5/include/CGAL/Polygon_mesh_processing/tangential_relaxation.h 13.19KB
  2801. CGAL5/include/CGAL/Polygon_mesh_processing/transform.h 2.71KB
  2802. CGAL5/include/CGAL/Polygon_mesh_processing/triangle.h 3.38KB
  2803. CGAL5/include/CGAL/Polygon_mesh_processing/triangulate_faces.h 23.68KB
  2804. CGAL5/include/CGAL/Polygon_mesh_processing/triangulate_hole.h 31.38KB
  2805. CGAL5/include/CGAL/polygon_mesh_processing.h 3.02KB
  2806. CGAL5/include/CGAL/Polygon_mesh_slicer.h 24.26KB
  2807. CGAL5/include/CGAL/Polygon_nop_decomposition_2.h 1.21KB
  2808. CGAL5/include/CGAL/Polygon_offset_builder_2.h 8.88KB
  2809. CGAL5/include/CGAL/Polygon_offset_builder_traits_2.h 9.87KB
  2810. CGAL5/include/CGAL/Polygon_set_2.h 6.21KB
  2811. CGAL5/include/CGAL/Polygon_traits_2.h 849B
  2812. CGAL5/include/CGAL/Polygon_triangulation_decomposition_2.h 6.83KB
  2813. CGAL5/include/CGAL/Polygon_vertical_decomposition_2.h 10.55KB
  2814. CGAL5/include/CGAL/Polygon_with_holes_2.h 8.07KB
  2815. CGAL5/include/CGAL/PolyhedralSurf_neighbors.h 11.18KB
  2816. CGAL5/include/CGAL/Polyhedral_complex_mesh_domain_3.h 38.1KB
  2817. CGAL5/include/CGAL/Polyhedral_envelope.h 77.79KB
  2818. CGAL5/include/CGAL/Polyhedral_mesh_domain_3.h 23.29KB
  2819. CGAL5/include/CGAL/Polyhedral_mesh_domain_with_features_3.h 18.05KB
  2820. CGAL5/include/CGAL/Polyhedron_3.h 65.69KB
  2821. CGAL5/include/CGAL/Polyhedron_3_fwd.h 998B
  2822. CGAL5/include/CGAL/Polyhedron_3_to_lcc.h 3.79KB
  2823. CGAL5/include/CGAL/Polyhedron_copy_3.h 2.99KB
  2824. CGAL5/include/CGAL/polyhedron_cut_plane_3.h 5.18KB
  2825. CGAL5/include/CGAL/Polyhedron_incremental_builder_3.h 36.09KB
  2826. CGAL5/include/CGAL/Polyhedron_items_3.h 1.42KB
  2827. CGAL5/include/CGAL/Polyhedron_items_with_id_3.h 2.06KB
  2828. CGAL5/include/CGAL/Polyhedron_min_items_3.h 1.28KB
  2829. CGAL5/include/CGAL/Polyhedron_traits_3.h 1.23KB
  2830. CGAL5/include/CGAL/Polyhedron_traits_with_normals_3.h 1.36KB
  2831. CGAL5/include/CGAL/Polyline_simplification_2/
  2832. CGAL5/include/CGAL/Polyline_simplification_2/Hybrid_squared_distance_cost.h 4.11KB
  2833. CGAL5/include/CGAL/Polyline_simplification_2/Scaled_squared_distance_cost.h 4.17KB
  2834. CGAL5/include/CGAL/Polyline_simplification_2/simplify.h 19.51KB
  2835. CGAL5/include/CGAL/Polyline_simplification_2/Squared_distance_cost.h 3.42KB
  2836. CGAL5/include/CGAL/Polyline_simplification_2/Stop_above_cost_threshold.h 1.9KB
  2837. CGAL5/include/CGAL/Polyline_simplification_2/Stop_below_count_ratio_threshold.h 2.1KB
  2838. CGAL5/include/CGAL/Polyline_simplification_2/Stop_below_count_threshold.h 2.02KB
  2839. CGAL5/include/CGAL/Polyline_simplification_2/Vertex_base_2.h 1.87KB
  2840. CGAL5/include/CGAL/Polynomial/
  2841. CGAL5/include/CGAL/Polynomial/Algebraic_structure_traits.h 10.87KB
  2842. CGAL5/include/CGAL/Polynomial/bezout_matrix.h 17.79KB
  2843. CGAL5/include/CGAL/Polynomial/Cached_extended_euclidean_algorithm.h 1.72KB
  2844. CGAL5/include/CGAL/Polynomial/Chinese_remainder_traits.h 2.03KB
  2845. CGAL5/include/CGAL/Polynomial/Coercion_traits.h 6.54KB
  2846. CGAL5/include/CGAL/Polynomial/Degree.h 1.86KB
  2847. CGAL5/include/CGAL/Polynomial/determinant.h 9.87KB
  2848. CGAL5/include/CGAL/Polynomial/Fraction_traits.h 4.81KB
  2849. CGAL5/include/CGAL/Polynomial/fwd.h 6.44KB
  2850. CGAL5/include/CGAL/Polynomial/Get_arithmetic_kernel.h 869B
  2851. CGAL5/include/CGAL/Polynomial/hgdelta_update.h 1.32KB
  2852. CGAL5/include/CGAL/Polynomial/Interpolator.h 3.33KB
  2853. CGAL5/include/CGAL/Polynomial/misc.h 1.25KB
  2854. CGAL5/include/CGAL/Polynomial/modular_filter.h 5.82KB
  2855. CGAL5/include/CGAL/Polynomial/modular_gcd.h 1.39KB
  2856. CGAL5/include/CGAL/Polynomial/modular_gcd_utcf_algorithm_M.h 8.4KB
  2857. CGAL5/include/CGAL/Polynomial/modular_gcd_utcf_dfai.h 9.75KB
  2858. CGAL5/include/CGAL/Polynomial/modular_gcd_utils.h 2.58KB
  2859. CGAL5/include/CGAL/Polynomial/Modular_traits.h 2.25KB
  2860. CGAL5/include/CGAL/Polynomial/Monomial_representation.h 2.74KB
  2861. CGAL5/include/CGAL/Polynomial/polynomial_gcd.h 16.51KB
  2862. CGAL5/include/CGAL/Polynomial/polynomial_gcd_implementations.h 6.02KB
  2863. CGAL5/include/CGAL/Polynomial/polynomial_gcd_ntl.h 4.23KB
  2864. CGAL5/include/CGAL/Polynomial/Polynomial_type.h 46.49KB
  2865. CGAL5/include/CGAL/Polynomial/prs_resultant.h 8.6KB
  2866. CGAL5/include/CGAL/Polynomial/Real_embeddable_traits.h 4KB
  2867. CGAL5/include/CGAL/Polynomial/resultant.h 12.83KB
  2868. CGAL5/include/CGAL/Polynomial/Scalar_factor_traits.h 2.87KB
  2869. CGAL5/include/CGAL/Polynomial/square_free_factorize.h 12.76KB
  2870. CGAL5/include/CGAL/Polynomial/sturm_habicht_sequence.h 14.02KB
  2871. CGAL5/include/CGAL/Polynomial/subresultants.h 27.53KB
  2872. CGAL5/include/CGAL/Polynomial.h 2.2KB
  2873. CGAL5/include/CGAL/Polynomials_1_2.h 1.64KB
  2874. CGAL5/include/CGAL/Polynomials_1_3.h 2.86KB
  2875. CGAL5/include/CGAL/Polynomials_2_2.h 1.81KB
  2876. CGAL5/include/CGAL/Polynomials_2_3.h 2.08KB
  2877. CGAL5/include/CGAL/Polynomials_for_line_3.h 2.33KB
  2878. CGAL5/include/CGAL/Polynomial_traits_d.h 57.13KB
  2879. CGAL5/include/CGAL/Polynomial_type_generator.h 1.07KB
  2880. CGAL5/include/CGAL/polynomial_utils.h 15KB
  2881. CGAL5/include/CGAL/Polytope_distance_d.h 27.24KB
  2882. CGAL5/include/CGAL/Polytope_distance_d_traits_2.h 2.59KB
  2883. CGAL5/include/CGAL/Polytope_distance_d_traits_3.h 2.59KB
  2884. CGAL5/include/CGAL/Polytope_distance_d_traits_d.h 2.5KB
  2885. CGAL5/include/CGAL/predicates/
  2886. CGAL5/include/CGAL/predicates/kernel_ftC2.h 25.04KB
  2887. CGAL5/include/CGAL/predicates/kernel_ftC3.h 27.41KB
  2888. CGAL5/include/CGAL/predicates/Polygon_offset_pred_ftC2.h 2.2KB
  2889. CGAL5/include/CGAL/predicates/predicates_for_mixed_complex_3.h 4.16KB
  2890. CGAL5/include/CGAL/predicates/predicates_for_voronoi_intersection_cartesian_2_3.h 5.75KB
  2891. CGAL5/include/CGAL/predicates/sign_of_determinant.h 3.96KB
  2892. CGAL5/include/CGAL/predicates/Straight_skeleton_pred_ftC2.h 24.74KB
  2893. CGAL5/include/CGAL/predicates_d.h 9.19KB
  2894. CGAL5/include/CGAL/predicates_on_lines_2.h 752B
  2895. CGAL5/include/CGAL/predicates_on_points_2.h 757B
  2896. CGAL5/include/CGAL/predicates_on_points_3.h 756B
  2897. CGAL5/include/CGAL/primes.h 21.82KB
  2898. CGAL5/include/CGAL/Profile_counter.h 6.86KB
  2899. CGAL5/include/CGAL/Profile_timer.h 1.95KB
  2900. CGAL5/include/CGAL/Projection_on_sphere_traits_3.h 8.81KB
  2901. CGAL5/include/CGAL/Projection_traits_3.h 1.26KB
  2902. CGAL5/include/CGAL/Projection_traits_xy_3.h 747B
  2903. CGAL5/include/CGAL/Projection_traits_xz_3.h 747B
  2904. CGAL5/include/CGAL/Projection_traits_yz_3.h 747B
  2905. CGAL5/include/CGAL/property_map.h 22.1KB
  2906. CGAL5/include/CGAL/QP_functions.h 5.25KB
  2907. CGAL5/include/CGAL/QP_models.h 46.85KB
  2908. CGAL5/include/CGAL/QP_options.h 3.03KB
  2909. CGAL5/include/CGAL/QP_solution.h 23.53KB
  2910. CGAL5/include/CGAL/QP_solver/
  2911. CGAL5/include/CGAL/QP_solver/assertions.h 13.67KB
  2912. CGAL5/include/CGAL/QP_solver/basic.h 901B
  2913. CGAL5/include/CGAL/QP_solver/debug.h 1.03KB
  2914. CGAL5/include/CGAL/QP_solver/functors.h 7.76KB
  2915. CGAL5/include/CGAL/QP_solver/Initialization.h 21.82KB
  2916. CGAL5/include/CGAL/QP_solver/QP_basis_inverse.h 37.51KB
  2917. CGAL5/include/CGAL/QP_solver/QP_basis_inverse_impl.h 20.38KB
  2918. CGAL5/include/CGAL/QP_solver/QP_exact_bland_pricing.h 4.24KB
  2919. CGAL5/include/CGAL/QP_solver/QP_full_exact_pricing.h 4.41KB
  2920. CGAL5/include/CGAL/QP_solver/QP_full_filtered_pricing.h 7.04KB
  2921. CGAL5/include/CGAL/QP_solver/QP_functions_impl.h 13.87KB
  2922. CGAL5/include/CGAL/QP_solver/QP_partial_exact_pricing.h 7.16KB
  2923. CGAL5/include/CGAL/QP_solver/QP_partial_filtered_pricing.h 12.36KB
  2924. CGAL5/include/CGAL/QP_solver/QP_pricing_strategy.h 8.33KB
  2925. CGAL5/include/CGAL/QP_solver/QP_solution_impl.h 25.99KB
  2926. CGAL5/include/CGAL/QP_solver/QP_solver.h 68.63KB
  2927. CGAL5/include/CGAL/QP_solver/QP_solver_bounds_impl.h 3.36KB
  2928. CGAL5/include/CGAL/QP_solver/QP_solver_impl.h 114.87KB
  2929. CGAL5/include/CGAL/QP_solver/QP_solver_nonstandardform_impl.h 6.17KB
  2930. CGAL5/include/CGAL/QP_solver/QP__filtered_base.h 9.66KB
  2931. CGAL5/include/CGAL/QP_solver/QP__filtered_base_impl.h 12.11KB
  2932. CGAL5/include/CGAL/QP_solver/QP__partial_base.h 6.9KB
  2933. CGAL5/include/CGAL/QP_solver/Unbounded_direction.h 1.25KB
  2934. CGAL5/include/CGAL/Qt/
  2935. CGAL5/include/CGAL/Qt/AlphaShapeGraphicsItem.h 8.12KB
  2936. CGAL5/include/CGAL/Qt/ApolloniusGraphGraphicsItem.h 2.53KB
  2937. CGAL5/include/CGAL/Qt/Basic_viewer_qt.h 65.2KB
  2938. CGAL5/include/CGAL/Qt/camera.h 18.88KB
  2939. CGAL5/include/CGAL/Qt/camera_impl.h 79.62KB
  2940. CGAL5/include/CGAL/Qt/CGAL_Qt_config.h 729B
  2941. CGAL5/include/CGAL/Qt/CircularArcGraphicsItem.h 2.97KB
  2942. CGAL5/include/CGAL/Qt/ConstrainedTriangulationGraphicsItem.h 3.07KB
  2943. CGAL5/include/CGAL/Qt/constraint.h 14.1KB
  2944. CGAL5/include/CGAL/Qt/constraint_impl.h 10.77KB
  2945. CGAL5/include/CGAL/Qt/Converter.h 4.39KB
  2946. CGAL5/include/CGAL/Qt/CreateOpenGLContext.h 997B
  2947. CGAL5/include/CGAL/Qt/debug.h 2.67KB
  2948. CGAL5/include/CGAL/Qt/debug_impl.h 1.3KB
  2949. CGAL5/include/CGAL/Qt/DelaunayMeshTriangulationGraphicsItem.h 7.03KB
  2950. CGAL5/include/CGAL/Qt/DemosMainWindow.h 3.29KB
  2951. CGAL5/include/CGAL/Qt/DemosMainWindow_impl.h 12.16KB
  2952. CGAL5/include/CGAL/Qt/frame.h 18.15KB
  2953. CGAL5/include/CGAL/Qt/frame_impl.h 36.45KB
  2954. CGAL5/include/CGAL/Qt/GraphicsItem.h 1.04KB
  2955. CGAL5/include/CGAL/Qt/GraphicsViewCircleInput.h 5.38KB
  2956. CGAL5/include/CGAL/Qt/GraphicsViewCircularArcInput.h 5.11KB
  2957. CGAL5/include/CGAL/Qt/GraphicsViewInput.h 1.15KB
  2958. CGAL5/include/CGAL/Qt/GraphicsViewIsoRectangleInput.h 3.89KB
  2959. CGAL5/include/CGAL/Qt/GraphicsViewLineInput.h 4.06KB
  2960. CGAL5/include/CGAL/Qt/GraphicsViewNavigation.h 1.68KB
  2961. CGAL5/include/CGAL/Qt/GraphicsViewNavigation_impl.h 11KB
  2962. CGAL5/include/CGAL/Qt/GraphicsViewPointInput.h 2.3KB
  2963. CGAL5/include/CGAL/Qt/GraphicsViewPolygonWithHolesInput.h 5.24KB
  2964. CGAL5/include/CGAL/Qt/GraphicsViewPolylineInput.h 2.91KB
  2965. CGAL5/include/CGAL/Qt/GraphicsViewPolylineInput_impl.h 5.09KB
  2966. CGAL5/include/CGAL/Qt/ImageInterface.ui 7.43KB
  2967. CGAL5/include/CGAL/Qt/image_interface.h 1.77KB
  2968. CGAL5/include/CGAL/Qt/init_ogl_context.h 1.24KB
  2969. CGAL5/include/CGAL/Qt/keyFrameInterpolator.h 13.01KB
  2970. CGAL5/include/CGAL/Qt/keyFrameInterpolator_impl.h 15.54KB
  2971. CGAL5/include/CGAL/Qt/LineGraphicsItem.h 2.32KB
  2972. CGAL5/include/CGAL/Qt/manipulatedCameraFrame.h 8.61KB
  2973. CGAL5/include/CGAL/Qt/manipulatedCameraFrame_impl.h 13.78KB
  2974. CGAL5/include/CGAL/Qt/manipulatedFrame.h 13.96KB
  2975. CGAL5/include/CGAL/Qt/manipulatedFrame_impl.h 16.3KB
  2976. CGAL5/include/CGAL/Qt/mouseGrabber.h 10.67KB
  2977. CGAL5/include/CGAL/Qt/mouseGrabber_impl.h 3KB
  2978. CGAL5/include/CGAL/Qt/PainterOstream.h 5.3KB
  2979. CGAL5/include/CGAL/Qt/PointsGraphicsItem.h 3.36KB
  2980. CGAL5/include/CGAL/Qt/PointsInKdTreeGraphicsItem.h 4.33KB
  2981. CGAL5/include/CGAL/Qt/PolygonGraphicsItem.h 3.71KB
  2982. CGAL5/include/CGAL/Qt/PolygonWithHolesGraphicsItem.h 4.81KB
  2983. CGAL5/include/CGAL/Qt/PolylinesGraphicsItem.h 3.74KB
  2984. CGAL5/include/CGAL/Qt/PowerdiagramGraphicsItem.h 2.67KB
  2985. CGAL5/include/CGAL/Qt/qglviewer.h 45KB
  2986. CGAL5/include/CGAL/Qt/qglviewer_impl.h 132.37KB
  2987. CGAL5/include/CGAL/Qt/qglviewer_impl_list.h 1020B
  2988. CGAL5/include/CGAL/Qt/quaternion.h 10.77KB
  2989. CGAL5/include/CGAL/Qt/quaternion_impl.h 15.31KB
  2990. CGAL5/include/CGAL/Qt/RegularGridGraphicsItem.h 3.98KB
  2991. CGAL5/include/CGAL/Qt/RegularGridVectorFieldGraphicsItem.h 4.23KB
  2992. CGAL5/include/CGAL/Qt/RegularTriangulationGraphicsItem.h 7.63KB
  2993. CGAL5/include/CGAL/Qt/resources/
  2994. CGAL5/include/CGAL/Qt/resources/ImageInterface.ui 7.43KB
  2995. CGAL5/include/CGAL/Qt/resources/qglviewer-icon.xpm 23.99KB
  2996. CGAL5/include/CGAL/Qt/resources.h 982B
  2997. CGAL5/include/CGAL/Qt/resources_impl.h 873B
  2998. CGAL5/include/CGAL/Qt/SegmentDelaunayGraphGraphicsItem.h 6.79KB
  2999. CGAL5/include/CGAL/Qt/SegmentDelaunayGraphLinfGraphicsItem.h 7.77KB
  3000. CGAL5/include/CGAL/Qt/SegmentsGraphicsItem.h 3.26KB
  3001. CGAL5/include/CGAL/Qt/StreamLinesGraphicsItem.h 2.58KB
  3002. CGAL5/include/CGAL/Qt/TriangulationGraphicsItem.h 7.18KB
  3003. CGAL5/include/CGAL/Qt/utility.h 1.04KB
  3004. CGAL5/include/CGAL/Qt/utility_impl.h 1.41KB
  3005. CGAL5/include/CGAL/Qt/vec.h 9.63KB
  3006. CGAL5/include/CGAL/Qt/vec_impl.h 2.41KB
  3007. CGAL5/include/CGAL/Qt/viewer_actions.h 2.36KB
  3008. CGAL5/include/CGAL/Qt/VoronoiGraphicsItem.h 2.46KB
  3009. CGAL5/include/CGAL/Quadtree.h 1.5KB
  3010. CGAL5/include/CGAL/Quotient.h 20.86KB
  3011. CGAL5/include/CGAL/Quotient_fwd.h 626B
  3012. CGAL5/include/CGAL/radial_orient_normals.h 6.39KB
  3013. CGAL5/include/CGAL/Random.h 5.88KB
  3014. CGAL5/include/CGAL/Random_access_adaptor.h 781B
  3015. CGAL5/include/CGAL/Random_access_value_adaptor.h 736B
  3016. CGAL5/include/CGAL/random_convex_hull_in_disc_2.h 8.54KB
  3017. CGAL5/include/CGAL/Random_convex_hull_traits_2.h 1.53KB
  3018. CGAL5/include/CGAL/random_convex_set_2.h 3.62KB
  3019. CGAL5/include/CGAL/Random_convex_set_traits_2.h 2.8KB
  3020. CGAL5/include/CGAL/Random_impl.h 2.18KB
  3021. CGAL5/include/CGAL/random_polygon_2.h 4.98KB
  3022. CGAL5/include/CGAL/Random_polygon_2_sweep.h 23.11KB
  3023. CGAL5/include/CGAL/Random_polygon_traits_2.h 1.4KB
  3024. CGAL5/include/CGAL/random_selection.h 1.96KB
  3025. CGAL5/include/CGAL/random_simplify_point_set.h 2.28KB
  3026. CGAL5/include/CGAL/range_search_delaunay_2.h 12.93KB
  3027. CGAL5/include/CGAL/Range_segment_tree_traits.h 8.35KB
  3028. CGAL5/include/CGAL/Range_tree_d.h 16.79KB
  3029. CGAL5/include/CGAL/Range_tree_k.h 11.93KB
  3030. CGAL5/include/CGAL/rank.h 3.1KB
  3031. CGAL5/include/CGAL/rational_rotation.h 6.63KB
  3032. CGAL5/include/CGAL/Rational_traits.h 3.04KB
  3033. CGAL5/include/CGAL/Ray_2.h 5.99KB
  3034. CGAL5/include/CGAL/Ray_3.h 5.36KB
  3035. CGAL5/include/CGAL/read_vtk_image_data.h 860B
  3036. CGAL5/include/CGAL/Real_embeddable_traits.h 4.75KB
  3037. CGAL5/include/CGAL/Real_timer.h 3.43KB
  3038. CGAL5/include/CGAL/Real_timer_impl.h 3.29KB
  3039. CGAL5/include/CGAL/Reconstruction_triangulation_3.h 16.42KB
  3040. CGAL5/include/CGAL/rectangular_3_center_2.h 54.61KB
  3041. CGAL5/include/CGAL/rectangular_p_center_2.h 11.22KB
  3042. CGAL5/include/CGAL/Rectangular_p_center_traits_2.h 10.88KB
  3043. CGAL5/include/CGAL/Referenced_argument.h 833B
  3044. CGAL5/include/CGAL/refine_mesh_3.h 20.09KB
  3045. CGAL5/include/CGAL/refine_periodic_3_mesh_3.h 11.33KB
  3046. CGAL5/include/CGAL/Regular_complex_d.h 25.55KB
  3047. CGAL5/include/CGAL/Regular_grid_2.h 6.7KB
  3048. CGAL5/include/CGAL/regular_neighbor_coordinates_2.h 22.7KB
  3049. CGAL5/include/CGAL/Regular_triangulation.h 39.08KB
  3050. CGAL5/include/CGAL/Regular_triangulation_2.h 72.55KB
  3051. CGAL5/include/CGAL/Regular_triangulation_3.h 91.93KB
  3052. CGAL5/include/CGAL/Regular_triangulation_adaptation_policies_2.h 2.54KB
  3053. CGAL5/include/CGAL/Regular_triangulation_adaptation_traits_2.h 1.63KB
  3054. CGAL5/include/CGAL/Regular_triangulation_cell_base_3.h 6.09KB
  3055. CGAL5/include/CGAL/Regular_triangulation_cell_base_with_weighted_circumcenter_3.h 4.73KB
  3056. CGAL5/include/CGAL/Regular_triangulation_euclidean_traits_3.h 1.41KB
  3057. CGAL5/include/CGAL/Regular_triangulation_face_base_2.h 2.32KB
  3058. CGAL5/include/CGAL/Regular_triangulation_traits_adapter.h 8.32KB
  3059. CGAL5/include/CGAL/Regular_triangulation_vertex_base_2.h 2.68KB
  3060. CGAL5/include/CGAL/Regular_triangulation_vertex_base_3.h 2.29KB
  3061. CGAL5/include/CGAL/remove_far_points_in_mesh_3.h 2.69KB
  3062. CGAL5/include/CGAL/remove_outliers.h 11.23KB
  3063. CGAL5/include/CGAL/representation_tags.h 773B
  3064. CGAL5/include/CGAL/Residue.h 1.34KB
  3065. CGAL5/include/CGAL/result_of.h 794B
  3066. CGAL5/include/CGAL/Ridges.h 35.93KB
  3067. CGAL5/include/CGAL/Rigid_triangle_mesh_collision_detection.h 24.84KB
  3068. CGAL5/include/CGAL/Robust_circumcenter_traits_3.h 4.97KB
  3069. CGAL5/include/CGAL/Robust_construction.h 1.78KB
  3070. CGAL5/include/CGAL/Robust_weighted_circumcenter_filtered_traits_3.h 20.32KB
  3071. CGAL5/include/CGAL/Root_for_circles_2_2.h 4.1KB
  3072. CGAL5/include/CGAL/Root_for_spheres_2_3.h 8.46KB
  3073. CGAL5/include/CGAL/Root_of_traits.h 8.94KB
  3074. CGAL5/include/CGAL/Root_of_traits_specializations.h 4.05KB
  3075. CGAL5/include/CGAL/Rotational_sweep_visibility_2.h 32.49KB
  3076. CGAL5/include/CGAL/RS/
  3077. CGAL5/include/CGAL/RS/ak_1.h 8.11KB
  3078. CGAL5/include/CGAL/RS/ak_z_1.h 9.92KB
  3079. CGAL5/include/CGAL/RS/algebraic_1.h 13.15KB
  3080. CGAL5/include/CGAL/RS/algebraic_z_1.h 13.87KB
  3081. CGAL5/include/CGAL/RS/bisection_refiner_1.h 6.08KB
  3082. CGAL5/include/CGAL/RS/comparator_1.h 3.12KB
  3083. CGAL5/include/CGAL/RS/dyadic.h 15.11KB
  3084. CGAL5/include/CGAL/RS/exact_signat_1.h 1.76KB
  3085. CGAL5/include/CGAL/RS/functors_1.h 29.66KB
  3086. CGAL5/include/CGAL/RS/functors_z_1.h 32.49KB
  3087. CGAL5/include/CGAL/RS/Gmpfr_make_unique.h 1.15KB
  3088. CGAL5/include/CGAL/RS/polynomial_converter_1.h 1.8KB
  3089. CGAL5/include/CGAL/RS/rs23_k_isolator_1.h 5.09KB
  3090. CGAL5/include/CGAL/RS/rs2_calls.h 5.93KB
  3091. CGAL5/include/CGAL/RS/rs2_isolator_1.h 3.71KB
  3092. CGAL5/include/CGAL/RS/rs3_k_refiner_1.h 6.18KB
  3093. CGAL5/include/CGAL/RS/rs3_refiner_1.h 6.8KB
  3094. CGAL5/include/CGAL/RS/signat_1.h 3.78KB
  3095. CGAL5/include/CGAL/Runge_kutta_integrator_2.h 4.1KB
  3096. CGAL5/include/CGAL/Scalar_factor_traits.h 5.03KB
  3097. CGAL5/include/CGAL/Scale_space_reconstruction_3/
  3098. CGAL5/include/CGAL/Scale_space_reconstruction_3/Advancing_front_mesher.h 4.14KB
  3099. CGAL5/include/CGAL/Scale_space_reconstruction_3/Alpha_shape_mesher.h 34.2KB
  3100. CGAL5/include/CGAL/Scale_space_reconstruction_3/internal/
  3101. CGAL5/include/CGAL/Scale_space_reconstruction_3/internal/Auto_count.h 1.6KB
  3102. CGAL5/include/CGAL/Scale_space_reconstruction_3/Jet_smoother.h 2.73KB
  3103. CGAL5/include/CGAL/Scale_space_reconstruction_3/Shape_construction_3.h 9.01KB
  3104. CGAL5/include/CGAL/Scale_space_reconstruction_3/Weighted_PCA_smoother.h 11.21KB
  3105. CGAL5/include/CGAL/Scale_space_surface_reconstruction_3.h 10.87KB
  3106. CGAL5/include/CGAL/scanline_orient_normals.h 19.55KB
  3107. CGAL5/include/CGAL/SCIP_mixed_integer_program_traits.h 8.01KB
  3108. CGAL5/include/CGAL/Search_traits.h 1.21KB
  3109. CGAL5/include/CGAL/Search_traits_2.h 1.58KB
  3110. CGAL5/include/CGAL/Search_traits_3.h 1.57KB
  3111. CGAL5/include/CGAL/Search_traits_adapter.h 11.72KB
  3112. CGAL5/include/CGAL/Search_traits_d.h 1.45KB
  3113. CGAL5/include/CGAL/Segment_2.h 5.66KB
  3114. CGAL5/include/CGAL/Segment_3.h 4.27KB
  3115. CGAL5/include/CGAL/Segment_Delaunay_graph_2/
  3116. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Are_parallel_C2.h 2.07KB
  3117. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Are_same_points_C2.h 2.53KB
  3118. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Are_same_segments_C2.h 1.55KB
  3119. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Arrangement_enum.h 7.6KB
  3120. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Arrangement_type_C2.h 12.63KB
  3121. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Arrangement_type_non_intersecting_C2.h 4.37KB
  3122. CGAL5/include/CGAL/Segment_Delaunay_graph_2/basic.h 762B
  3123. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Basic_predicates_C2.h 9.41KB
  3124. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Cartesian_converter.h 3.81KB
  3125. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Compare_x_2.h 1.63KB
  3126. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Compare_y_2.h 1.63KB
  3127. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Constructions_C2.h 9.74KB
  3128. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Construct_storage_site_2.h 12.45KB
  3129. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Construct_storage_site_with_info_2.h 2.52KB
  3130. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Filtered_traits_base_2.h 14.66KB
  3131. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Filtered_traits_concept_check_tags.h 4.04KB
  3132. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Finite_edge_interior_conflict_C2.h 23.31KB
  3133. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Infinite_edge_interior_conflict_C2.h 3.52KB
  3134. CGAL5/include/CGAL/Segment_Delaunay_graph_2/in_place_edge_list.h 5.98KB
  3135. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Is_degenerate_edge_C2.h 2.08KB
  3136. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Kernel_wrapper_2.h 2.26KB
  3137. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Orientation_C2.h 5.63KB
  3138. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Oriented_side_C2.h 3.62KB
  3139. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Oriented_side_of_bisector_C2.h 10KB
  3140. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Predicates_C2.h 1.65KB
  3141. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Segment_Delaunay_graph_2_impl.h 98.98KB
  3142. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Segment_Delaunay_graph_hierarchy_2_impl.h 37.05KB
  3143. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Sqrt_extension_2.h 7.63KB
  3144. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Traits_base_2.h 7.38KB
  3145. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Traits_wrapper_2.h 1.1KB
  3146. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Triangulation_face_base_with_edges_2.h 3.64KB
  3147. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Vertex_conflict_C2.h 17.39KB
  3148. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Voronoi_vertex_C2.h 2.14KB
  3149. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Voronoi_vertex_ring_C2.h 39.13KB
  3150. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Voronoi_vertex_sqrt_field_C2.h 33.24KB
  3151. CGAL5/include/CGAL/Segment_Delaunay_graph_2/Voronoi_vertex_sqrt_field_new_C2.h 42.75KB
  3152. CGAL5/include/CGAL/Segment_Delaunay_graph_2.h 64.55KB
  3153. CGAL5/include/CGAL/Segment_Delaunay_graph_adaptation_policies_2.h 2.65KB
  3154. CGAL5/include/CGAL/Segment_Delaunay_graph_adaptation_traits_2.h 1.72KB
  3155. CGAL5/include/CGAL/Segment_Delaunay_graph_face_base_2.h 4.31KB
  3156. CGAL5/include/CGAL/Segment_Delaunay_graph_filtered_traits_2.h 10.7KB
  3157. CGAL5/include/CGAL/Segment_Delaunay_graph_hierarchy_2.h 16.09KB
  3158. CGAL5/include/CGAL/Segment_Delaunay_graph_hierarchy_vertex_base_2.h 2.22KB
  3159. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/
  3160. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/basic.h 992B
  3161. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Basic_predicates_C2.h 59.37KB
  3162. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Bisector_Linf.h 26.11KB
  3163. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Constructions_C2.h 44.44KB
  3164. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Filtered_traits_base_2.h 16.68KB
  3165. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Finite_edge_interior_conflict_C2.h 48.78KB
  3166. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Infinite_edge_interior_conflict_C2.h 23.73KB
  3167. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Orientation_Linf_C2.h 5.88KB
  3168. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Oriented_side_C2.h 16.22KB
  3169. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Oriented_side_of_bisector_C2.h 12.02KB
  3170. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Predicates_C2.h 1.85KB
  3171. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Segment_Delaunay_graph_Linf_2_impl.h 23.17KB
  3172. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Segment_Delaunay_graph_Linf_hierarchy_2_impl.h 38.86KB
  3173. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Traits_base_2.h 4.81KB
  3174. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Vertex_conflict_C2.h 48.82KB
  3175. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_C2.h 2KB
  3176. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_ring_C2.h 124.27KB
  3177. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_sqrt_field_new_C2.h 157KB
  3178. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_2.h 14.84KB
  3179. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_filtered_traits_2.h 10.92KB
  3180. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_hierarchy_2.h 2.4KB
  3181. CGAL5/include/CGAL/Segment_Delaunay_graph_Linf_traits_2.h 6.4KB
  3182. CGAL5/include/CGAL/Segment_Delaunay_graph_simple_site_2.h 6.63KB
  3183. CGAL5/include/CGAL/Segment_Delaunay_graph_simple_storage_site_2.h 5.34KB
  3184. CGAL5/include/CGAL/Segment_Delaunay_graph_site_2.h 9.2KB
  3185. CGAL5/include/CGAL/Segment_Delaunay_graph_storage_site_2.h 9.51KB
  3186. CGAL5/include/CGAL/Segment_Delaunay_graph_storage_site_with_info_2.h 3.61KB
  3187. CGAL5/include/CGAL/Segment_Delaunay_graph_storage_traits_2.h 3.37KB
  3188. CGAL5/include/CGAL/Segment_Delaunay_graph_storage_traits_with_info_2.h 2.74KB
  3189. CGAL5/include/CGAL/Segment_Delaunay_graph_traits_2.h 6.15KB
  3190. CGAL5/include/CGAL/Segment_Delaunay_graph_vertex_base_2.h 2.85KB
  3191. CGAL5/include/CGAL/segment_intersection_points_2.h 3.35KB
  3192. CGAL5/include/CGAL/Segment_tree_d.h 20.3KB
  3193. CGAL5/include/CGAL/Segment_tree_k.h 13.37KB
  3194. CGAL5/include/CGAL/SEP_header.h 8.76KB
  3195. CGAL5/include/CGAL/SEP_to_ImageIO.h 3.98KB
  3196. CGAL5/include/CGAL/Set_movable_separability_2/
  3197. CGAL5/include/CGAL/Set_movable_separability_2/internal/
  3198. CGAL5/include/CGAL/Set_movable_separability_2/internal/Circle_arrangment.h 16.16KB
  3199. CGAL5/include/CGAL/Set_movable_separability_2/internal/Utils.h 2.71KB
  3200. CGAL5/include/CGAL/Set_movable_separability_2/Single_mold_translational_casting/
  3201. CGAL5/include/CGAL/Set_movable_separability_2/Single_mold_translational_casting/is_pullout_direction.h 7.79KB
  3202. CGAL5/include/CGAL/Set_movable_separability_2/Single_mold_translational_casting/pullout_directions.h 10.15KB
  3203. CGAL5/include/CGAL/Set_movable_separability_2/Single_mold_translational_casting/top_edges.h 6.33KB
  3204. CGAL5/include/CGAL/Shape_detection/
  3205. CGAL5/include/CGAL/Shape_detection/deprecated/
  3206. CGAL5/include/CGAL/Shape_detection/deprecated/Region_growing.h 26.6KB
  3207. CGAL5/include/CGAL/Shape_detection/deprecated/Shape_detection_traits.h 7.62KB
  3208. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC/
  3209. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC/Cone.h 14.47KB
  3210. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC/Cylinder.h 12.81KB
  3211. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC/Efficient_RANSAC.h 40.54KB
  3212. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC/Efficient_RANSAC_traits.h 7KB
  3213. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC/Octree.h 4.43KB
  3214. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC/Plane.h 7.2KB
  3215. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC/property_map.h 3.34KB
  3216. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC/Shape_base.h 22.17KB
  3217. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC/Sphere.h 18.02KB
  3218. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC/Torus.h 13.38KB
  3219. CGAL5/include/CGAL/Shape_detection/Efficient_RANSAC.h 1.28KB
  3220. CGAL5/include/CGAL/Shape_detection/Region_growing/
  3221. CGAL5/include/CGAL/Shape_detection/Region_growing/internal/
  3222. CGAL5/include/CGAL/Shape_detection/Region_growing/internal/cylinder_fitting.h 8.17KB
  3223. CGAL5/include/CGAL/Shape_detection/Region_growing/internal/fitting.h 8.08KB
  3224. CGAL5/include/CGAL/Shape_detection/Region_growing/internal/property_map.h 4.6KB
  3225. CGAL5/include/CGAL/Shape_detection/Region_growing/internal/region_growing_traits.h 3.11KB
  3226. CGAL5/include/CGAL/Shape_detection/Region_growing/internal/utils.h 6.33KB
  3227. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/
  3228. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/K_neighbor_query.h 7.61KB
  3229. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_circle_fit_region.h 13.44KB
  3230. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_circle_fit_sorting.h 7.41KB
  3231. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_cylinder_fit_region.h 13.69KB
  3232. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_cylinder_fit_sorting.h 8.04KB
  3233. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_line_fit_region.h 13.7KB
  3234. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_line_fit_sorting.h 7.19KB
  3235. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_plane_fit_region.h 13.74KB
  3236. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_plane_fit_sorting.h 7.14KB
  3237. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_sphere_fit_region.h 13.09KB
  3238. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/Least_squares_sphere_fit_sorting.h 7.35KB
  3239. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set/Sphere_neighbor_query.h 7.26KB
  3240. CGAL5/include/CGAL/Shape_detection/Region_growing/Point_set.h 1.79KB
  3241. CGAL5/include/CGAL/Shape_detection/Region_growing/Polygon_mesh/
  3242. CGAL5/include/CGAL/Shape_detection/Region_growing/Polygon_mesh/Least_squares_plane_fit_region.h 15.49KB
  3243. CGAL5/include/CGAL/Shape_detection/Region_growing/Polygon_mesh/Least_squares_plane_fit_sorting.h 5.46KB
  3244. CGAL5/include/CGAL/Shape_detection/Region_growing/Polygon_mesh/One_ring_neighbor_query.h 2.83KB
  3245. CGAL5/include/CGAL/Shape_detection/Region_growing/Polygon_mesh/Polyline_graph.h 10.39KB
  3246. CGAL5/include/CGAL/Shape_detection/Region_growing/Polygon_mesh.h 1.1KB
  3247. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing.h 8.18KB
  3248. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/
  3249. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/K_neighbor_query.h 5.49KB
  3250. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/Least_squares_circle_fit_region.h 9.32KB
  3251. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/Least_squares_circle_fit_sorting.h 5.83KB
  3252. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/Least_squares_cylinder_fit_region.h 9.86KB
  3253. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/Least_squares_cylinder_fit_sorting.h 6.85KB
  3254. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/Least_squares_line_fit_region.h 10.53KB
  3255. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/Least_squares_line_fit_sorting.h 5.86KB
  3256. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/Least_squares_plane_fit_region.h 10.55KB
  3257. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/Least_squares_plane_fit_sorting.h 5.87KB
  3258. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/Least_squares_sphere_fit_region.h 9.74KB
  3259. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/Least_squares_sphere_fit_sorting.h 5.89KB
  3260. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set/Sphere_neighbor_query.h 5.4KB
  3261. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_point_set.h 1.98KB
  3262. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_polygon_mesh/
  3263. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_polygon_mesh/Least_squares_plane_fit_region.h 15.15KB
  3264. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_polygon_mesh/Least_squares_plane_fit_sorting.h 6.87KB
  3265. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_polygon_mesh/One_ring_neighbor_query.h 3.91KB
  3266. CGAL5/include/CGAL/Shape_detection/Region_growing/Region_growing_on_polygon_mesh.h 1.05KB
  3267. CGAL5/include/CGAL/Shape_detection/Region_growing/Segment_set/
  3268. CGAL5/include/CGAL/Shape_detection/Region_growing/Segment_set/Least_squares_line_fit_region.h 12.46KB
  3269. CGAL5/include/CGAL/Shape_detection/Region_growing/Segment_set/Least_squares_line_fit_sorting.h 6.58KB
  3270. CGAL5/include/CGAL/Shape_detection/Region_growing/Segment_set.h 907B
  3271. CGAL5/include/CGAL/Shape_detection/Region_growing.h 912B
  3272. CGAL5/include/CGAL/Shape_detection.h 767B
  3273. CGAL5/include/CGAL/Shape_detection_3.h 1.16KB
  3274. CGAL5/include/CGAL/Shape_regularization/
  3275. CGAL5/include/CGAL/Shape_regularization/Contours/
  3276. CGAL5/include/CGAL/Shape_regularization/Contours/Longest_direction_2.h 8.3KB
  3277. CGAL5/include/CGAL/Shape_regularization/Contours/Multiple_directions_2.h 13.62KB
  3278. CGAL5/include/CGAL/Shape_regularization/Contours/User_defined_directions_2.h 9.37KB
  3279. CGAL5/include/CGAL/Shape_regularization/internal/
  3280. CGAL5/include/CGAL/Shape_regularization/internal/Closed_contour_2.h 6.68KB
  3281. CGAL5/include/CGAL/Shape_regularization/internal/Collinear_groups_2.h 5.03KB
  3282. CGAL5/include/CGAL/Shape_regularization/internal/Contour_base_2.h 22.66KB
  3283. CGAL5/include/CGAL/Shape_regularization/internal/Contour_regularization_2.h 2.52KB
  3284. CGAL5/include/CGAL/Shape_regularization/internal/Open_contour_2.h 7.3KB
  3285. CGAL5/include/CGAL/Shape_regularization/internal/Orthogonal_groups_2.h 4.59KB
  3286. CGAL5/include/CGAL/Shape_regularization/internal/Parallel_groups_2.h 3.6KB
  3287. CGAL5/include/CGAL/Shape_regularization/internal/Segment_wrapper_2.h 3.19KB
  3288. CGAL5/include/CGAL/Shape_regularization/internal/Unique_segments_2.h 8.44KB
  3289. CGAL5/include/CGAL/Shape_regularization/internal/utils.h 26.4KB
  3290. CGAL5/include/CGAL/Shape_regularization/QP_regularization.h 12.96KB
  3291. CGAL5/include/CGAL/Shape_regularization/regularize_contours.h 10.86KB
  3292. CGAL5/include/CGAL/Shape_regularization/regularize_planes.h 18.28KB
  3293. CGAL5/include/CGAL/Shape_regularization/regularize_segments.h 24.87KB
  3294. CGAL5/include/CGAL/Shape_regularization/Segments/
  3295. CGAL5/include/CGAL/Shape_regularization/Segments/Angle_regularization_2.h 12.66KB
  3296. CGAL5/include/CGAL/Shape_regularization/Segments/Delaunay_neighbor_query_2.h 9.84KB
  3297. CGAL5/include/CGAL/Shape_regularization/Segments/Offset_regularization_2.h 12.94KB
  3298. CGAL5/include/CGAL/Shape_regularization.h 1.11KB
  3299. CGAL5/include/CGAL/sibson_gradient_fitting.h 17.67KB
  3300. CGAL5/include/CGAL/Side_of_bounded_square_2.h 20.14KB
  3301. CGAL5/include/CGAL/Side_of_oriented_square_2.h 6.51KB
  3302. CGAL5/include/CGAL/Side_of_triangle_mesh.h 11.98KB
  3303. CGAL5/include/CGAL/simplest_rational_in_interval.h 3.45KB
  3304. CGAL5/include/CGAL/Simple_cartesian.h 1.77KB
  3305. CGAL5/include/CGAL/Simple_circular_kernel_2.h 3.67KB
  3306. CGAL5/include/CGAL/Simple_homogeneous.h 1.69KB
  3307. CGAL5/include/CGAL/Simple_polygon_visibility_2.h 20.2KB
  3308. CGAL5/include/CGAL/Simple_spherical_kernel_3.h 4.59KB
  3309. CGAL5/include/CGAL/simple_transformations_d.h 3.17KB
  3310. CGAL5/include/CGAL/Simplicial_mesh_cell_base_3.h 7.25KB
  3311. CGAL5/include/CGAL/Simplicial_mesh_vertex_base_3.h 8.44KB
  3312. CGAL5/include/CGAL/Single.h 1.05KB
  3313. CGAL5/include/CGAL/Sixtuple.h 1.22KB
  3314. CGAL5/include/CGAL/Sizing_field_with_aabb_tree.h 27.6KB
  3315. CGAL5/include/CGAL/Skin_surface_3.h 3.6KB
  3316. CGAL5/include/CGAL/Skin_surface_base_3.h 26.02KB
  3317. CGAL5/include/CGAL/Skin_surface_filtered_traits_3.h 1.9KB
  3318. CGAL5/include/CGAL/Skin_surface_marching_tetrahedra_observer_3.h 2.62KB
  3319. CGAL5/include/CGAL/Skin_surface_polyhedral_items_3.h 1.45KB
  3320. CGAL5/include/CGAL/Skin_surface_polyhedral_items_with_face_information.h 1.34KB
  3321. CGAL5/include/CGAL/Skin_surface_quadratic_surface_3.h 6.08KB
  3322. CGAL5/include/CGAL/Skin_surface_refinement_policy_3.h 4.29KB
  3323. CGAL5/include/CGAL/Skin_surface_traits_3.h 5.51KB
  3324. CGAL5/include/CGAL/Skiplist.h 8.33KB
  3325. CGAL5/include/CGAL/Small_side_angle_bisector_decomposition_2.h 29.55KB
  3326. CGAL5/include/CGAL/Small_unordered_map.h 3.46KB
  3327. CGAL5/include/CGAL/Small_unordered_set.h 3.12KB
  3328. CGAL5/include/CGAL/SMDS_3/
  3329. CGAL5/include/CGAL/SMDS_3/Dump_c3t3.h 4.77KB
  3330. CGAL5/include/CGAL/SMDS_3/internal/
  3331. CGAL5/include/CGAL/SMDS_3/internal/Boundary_of_subdomain_of_complex_3_in_triangulation_3_to_off.h 2.88KB
  3332. CGAL5/include/CGAL/SMDS_3/internal/Handle_IO_for_pair_of_int.h 2.33KB
  3333. CGAL5/include/CGAL/SMDS_3/internal/indices_management.h 9.37KB
  3334. CGAL5/include/CGAL/SMDS_3/internal/SMDS_3_helper.h 2.02KB
  3335. CGAL5/include/CGAL/SMDS_3/io_signature.h 7.94KB
  3336. CGAL5/include/CGAL/SMDS_3/Mesh_complex_3_in_triangulation_3_fwd.h 1.41KB
  3337. CGAL5/include/CGAL/SMDS_3/tet_soup_to_c3t3.h 25.56KB
  3338. CGAL5/include/CGAL/SMDS_3/utilities.h 2.98KB
  3339. CGAL5/include/CGAL/Snap_rounding_2.h 25.68KB
  3340. CGAL5/include/CGAL/Snap_rounding_kd_2.h 19.5KB
  3341. CGAL5/include/CGAL/Snap_rounding_traits_2.h 7.55KB
  3342. CGAL5/include/CGAL/sorted_matrix_search.h 11.97KB
  3343. CGAL5/include/CGAL/Sorted_matrix_search_traits_adaptor.h 1.99KB
  3344. CGAL5/include/CGAL/Spatial_lock_grid_3.h 16.7KB
  3345. CGAL5/include/CGAL/Spatial_searching/
  3346. CGAL5/include/CGAL/Spatial_searching/internal/
  3347. CGAL5/include/CGAL/Spatial_searching/internal/bounded_priority_queue.h 3.51KB
  3348. CGAL5/include/CGAL/Spatial_searching/internal/Get_dimension_tag.h 1.08KB
  3349. CGAL5/include/CGAL/Spatial_searching/internal/K_neighbor_search.h 5.26KB
  3350. CGAL5/include/CGAL/Spatial_searching/internal/Search_helpers.h 6.85KB
  3351. CGAL5/include/CGAL/spatial_sort.h 6.98KB
  3352. CGAL5/include/CGAL/Spatial_sorting/
  3353. CGAL5/include/CGAL/Spatial_sorting/internal/
  3354. CGAL5/include/CGAL/Spatial_sorting/internal/Transform_coordinates_traits_3.h 9.57KB
  3355. CGAL5/include/CGAL/spatial_sort_on_sphere.h 4.5KB
  3356. CGAL5/include/CGAL/Spatial_sort_traits_adapter_2.h 3.42KB
  3357. CGAL5/include/CGAL/Spatial_sort_traits_adapter_3.h 4.39KB
  3358. CGAL5/include/CGAL/Spatial_sort_traits_adapter_d.h 3.09KB
  3359. CGAL5/include/CGAL/Sphere_3.h 8.68KB
  3360. CGAL5/include/CGAL/Spherical_kernel_3.h 4.52KB
  3361. CGAL5/include/CGAL/Spherical_kernel_intersections.h 5.06KB
  3362. CGAL5/include/CGAL/Spherical_kernel_type_equality_wrapper.h 1.84KB
  3363. CGAL5/include/CGAL/Splitters.h 7.98KB
  3364. CGAL5/include/CGAL/Sqrt_extension/
  3365. CGAL5/include/CGAL/Sqrt_extension/Algebraic_extension_traits.h 4.66KB
  3366. CGAL5/include/CGAL/Sqrt_extension/Algebraic_structure_traits.h 7.5KB
  3367. CGAL5/include/CGAL/Sqrt_extension/Chinese_remainder_traits.h 2.62KB
  3368. CGAL5/include/CGAL/Sqrt_extension/Coercion_traits.h 9.97KB
  3369. CGAL5/include/CGAL/Sqrt_extension/convert_to_bfi.h 3.01KB
  3370. CGAL5/include/CGAL/Sqrt_extension/Eigen_NumTraits.h 1.71KB
  3371. CGAL5/include/CGAL/Sqrt_extension/Fraction_traits.h 8.27KB
  3372. CGAL5/include/CGAL/Sqrt_extension/Get_arithmetic_kernel.h 949B
  3373. CGAL5/include/CGAL/Sqrt_extension/io.h 4.78KB
  3374. CGAL5/include/CGAL/Sqrt_extension/Modular_traits.h 2.48KB
  3375. CGAL5/include/CGAL/Sqrt_extension/Real_embeddable_traits.h 2.75KB
  3376. CGAL5/include/CGAL/Sqrt_extension/Scalar_factor_traits.h 2.3KB
  3377. CGAL5/include/CGAL/Sqrt_extension/Sqrt_extension_type.h 25.4KB
  3378. CGAL5/include/CGAL/Sqrt_extension/Wang_traits.h 1.93KB
  3379. CGAL5/include/CGAL/Sqrt_extension.h 2.42KB
  3380. CGAL5/include/CGAL/Sqrt_extension_fwd.h 776B
  3381. CGAL5/include/CGAL/squared_distance_2.h 1.32KB
  3382. CGAL5/include/CGAL/squared_distance_3.h 1.57KB
  3383. CGAL5/include/CGAL/sse2.h 797B
  3384. CGAL5/include/CGAL/Static_filtered_predicate.h 6.63KB
  3385. CGAL5/include/CGAL/stddef.h 498B
  3386. CGAL5/include/CGAL/STL_Extension/
  3387. CGAL5/include/CGAL/STL_Extension/internal/
  3388. CGAL5/include/CGAL/STL_Extension/internal/boost/
  3389. CGAL5/include/CGAL/STL_Extension/internal/boost/array_binary_tree.hpp 6.43KB
  3390. CGAL5/include/CGAL/STL_Extension/internal/boost/mutable_heap.hpp 2.58KB
  3391. CGAL5/include/CGAL/STL_Extension/internal/boost/mutable_queue.hpp 5.82KB
  3392. CGAL5/include/CGAL/STL_Extension/internal/boost/relaxed_heap.hpp 20.99KB
  3393. CGAL5/include/CGAL/STL_Extension/internal/Has_features.h 1.12KB
  3394. CGAL5/include/CGAL/STL_Extension/internal/Has_member_visited.h 848B
  3395. CGAL5/include/CGAL/STL_Extension/internal/Has_nested_type_Bare_point.h 978B
  3396. CGAL5/include/CGAL/STL_Extension/internal/info_check.h 888B
  3397. CGAL5/include/CGAL/STL_Extension/internal/mesh_option_classes.h 5.76KB
  3398. CGAL5/include/CGAL/STL_Extension/internal/mesh_parameters_interface.h 18.08KB
  3399. CGAL5/include/CGAL/STL_Extension/internal/parameters_interface.h 17.29KB
  3400. CGAL5/include/CGAL/Straight_skeleton_2/
  3401. CGAL5/include/CGAL/Straight_skeleton_2/assertions.h 1.63KB
  3402. CGAL5/include/CGAL/Straight_skeleton_2/debug.h 9.94KB
  3403. CGAL5/include/CGAL/Straight_skeleton_2/IO/
  3404. CGAL5/include/CGAL/Straight_skeleton_2/IO/Dxf_stream.h 7.11KB
  3405. CGAL5/include/CGAL/Straight_skeleton_2/IO/Dxf_writer.h 6.91KB
  3406. CGAL5/include/CGAL/Straight_skeleton_2/IO/print.h 4.49KB
  3407. CGAL5/include/CGAL/Straight_skeleton_2/Polygon_iterators.h 3.07KB
  3408. CGAL5/include/CGAL/Straight_skeleton_2/Polygon_offset_builder_2_impl.h 14.73KB
  3409. CGAL5/include/CGAL/Straight_skeleton_2/Straight_skeleton_aux.h 4.99KB
  3410. CGAL5/include/CGAL/Straight_skeleton_2/Straight_skeleton_builder_2_impl.h 77.16KB
  3411. CGAL5/include/CGAL/Straight_skeleton_2/Straight_skeleton_builder_events_2.h 6.95KB
  3412. CGAL5/include/CGAL/Straight_skeleton_2/Straight_skeleton_builder_traits_2_aux.h 14.16KB
  3413. CGAL5/include/CGAL/Straight_skeleton_2/Straight_skeleton_builder_traits_2_caches.h 3.09KB
  3414. CGAL5/include/CGAL/Straight_skeleton_2/test.h 5.56KB
  3415. CGAL5/include/CGAL/Straight_skeleton_2.h 15.52KB
  3416. CGAL5/include/CGAL/Straight_skeleton_builder_2.h 46.75KB
  3417. CGAL5/include/CGAL/Straight_skeleton_builder_traits_2.h 34.04KB
  3418. CGAL5/include/CGAL/Straight_skeleton_converter_2.h 11.15KB
  3419. CGAL5/include/CGAL/Straight_skeleton_face_base_2.h 2.54KB
  3420. CGAL5/include/CGAL/Straight_skeleton_halfedge_base_2.h 4.8KB
  3421. CGAL5/include/CGAL/Straight_skeleton_items_2.h 1.37KB
  3422. CGAL5/include/CGAL/Straight_skeleton_vertex_base_2.h 9.37KB
  3423. CGAL5/include/CGAL/streamlines_assertions.h 16.79KB
  3424. CGAL5/include/CGAL/Stream_lines_2.h 33.04KB
  3425. CGAL5/include/CGAL/Stream_support/
  3426. CGAL5/include/CGAL/Stream_support/internal/
  3427. CGAL5/include/CGAL/Stream_support/internal/Geometry_container.h 3.34KB
  3428. CGAL5/include/CGAL/structure_point_set.h 57.63KB
  3429. CGAL5/include/CGAL/subdivide_skin_surface_mesh_3.h 4.78KB
  3430. CGAL5/include/CGAL/subdivide_union_of_balls_mesh_3.h 1.06KB
  3431. CGAL5/include/CGAL/Subdivision_method_3/
  3432. CGAL5/include/CGAL/Subdivision_method_3/internal/
  3433. CGAL5/include/CGAL/Subdivision_method_3/internal/Euler_extensions.h 2.72KB
  3434. CGAL5/include/CGAL/Subdivision_method_3/internal/subdivision_hosts_impl_3.h 19.03KB
  3435. CGAL5/include/CGAL/Subdivision_method_3/subdivision_hosts_3.h 10.97KB
  3436. CGAL5/include/CGAL/Subdivision_method_3/subdivision_masks_3.h 21.95KB
  3437. CGAL5/include/CGAL/Subdivision_method_3/subdivision_methods_3.h 12.96KB
  3438. CGAL5/include/CGAL/subdivision_method_3.h 652B
  3439. CGAL5/include/CGAL/Subiterator.h 2.49KB
  3440. CGAL5/include/CGAL/Surface_mesh/
  3441. CGAL5/include/CGAL/Surface_mesh/IO/
  3442. CGAL5/include/CGAL/Surface_mesh/IO/3MF.h 4.39KB
  3443. CGAL5/include/CGAL/Surface_mesh/IO/OFF.h 25.9KB
  3444. CGAL5/include/CGAL/Surface_mesh/IO/PLY.h 35.36KB
  3445. CGAL5/include/CGAL/Surface_mesh/IO.h 1.54KB
  3446. CGAL5/include/CGAL/Surface_mesh/Properties.h 17.71KB
  3447. CGAL5/include/CGAL/Surface_mesh/Surface_mesh.h 90.15KB
  3448. CGAL5/include/CGAL/Surface_mesh/Surface_mesh_fwd.h 687B
  3449. CGAL5/include/CGAL/Surface_mesh.h 774B
  3450. CGAL5/include/CGAL/Surface_mesher/
  3451. CGAL5/include/CGAL/Surface_mesher/Combining_oracle.h 4.66KB
  3452. CGAL5/include/CGAL/Surface_mesher/Has_edges.h 859B
  3453. CGAL5/include/CGAL/Surface_mesher/Implicit_surface_oracle_3.h 16.97KB
  3454. CGAL5/include/CGAL/Surface_mesher/Intersection_data_structure_3.h 7.2KB
  3455. CGAL5/include/CGAL/Surface_mesher/Null_oracle_visitor.h 1.13KB
  3456. CGAL5/include/CGAL/Surface_mesher/Point_surface_indices_oracle_visitor.h 1.19KB
  3457. CGAL5/include/CGAL/Surface_mesher/Poisson_implicit_surface_oracle_3.h 17.58KB
  3458. CGAL5/include/CGAL/Surface_mesher/Polyhedral_oracle.h 12.58KB
  3459. CGAL5/include/CGAL/Surface_mesher/Profile_counter.h 1.9KB
  3460. CGAL5/include/CGAL/Surface_mesher/Profile_timer.h 1.06KB
  3461. CGAL5/include/CGAL/Surface_mesher/Sphere_oracle_3.h 14.49KB
  3462. CGAL5/include/CGAL/Surface_mesher/Standard_criteria.h 8.62KB
  3463. CGAL5/include/CGAL/Surface_mesher/Surface_mesher.h 25.13KB
  3464. CGAL5/include/CGAL/Surface_mesher/Surface_mesher_edges_level.h 27.9KB
  3465. CGAL5/include/CGAL/Surface_mesher/Surface_mesher_edges_level_visitor.h 2.05KB
  3466. CGAL5/include/CGAL/Surface_mesher/Surface_mesher_manifold.h 7.56KB
  3467. CGAL5/include/CGAL/Surface_mesher/Surface_mesher_regular_edges.h 11.67KB
  3468. CGAL5/include/CGAL/Surface_mesher/Surface_mesher_visitor.h 2KB
  3469. CGAL5/include/CGAL/Surface_mesher/Types_generators.h 2.3KB
  3470. CGAL5/include/CGAL/Surface_mesher/Verbose_flag.h 764B
  3471. CGAL5/include/CGAL/Surface_mesher/Vertices_on_the_same_psc_element_criterion.h 2.17KB
  3472. CGAL5/include/CGAL/Surface_mesher/Vertices_on_the_same_surface_criterion.h 1.84KB
  3473. CGAL5/include/CGAL/Surface_mesher_generator.h 4.19KB
  3474. CGAL5/include/CGAL/Surface_mesh_approximation/
  3475. CGAL5/include/CGAL/Surface_mesh_approximation/approximate_triangle_mesh.h 12.58KB
  3476. CGAL5/include/CGAL/Surface_mesh_approximation/L21_metric_plane_proxy.h 5.31KB
  3477. CGAL5/include/CGAL/Surface_mesh_approximation/L2_metric_plane_proxy.h 5.19KB
  3478. CGAL5/include/CGAL/Surface_mesh_cell_base_3.h 5.11KB
  3479. CGAL5/include/CGAL/Surface_mesh_complex_2_in_triangulation_3.h 1.29KB
  3480. CGAL5/include/CGAL/Surface_mesh_default_criteria_3.h 2.42KB
  3481. CGAL5/include/CGAL/Surface_mesh_default_edges_criteria_3.h 2.5KB
  3482. CGAL5/include/CGAL/Surface_mesh_default_triangulation_3.h 2.02KB
  3483. CGAL5/include/CGAL/Surface_mesh_deformation.h 59.81KB
  3484. CGAL5/include/CGAL/Surface_mesh_parameterization/
  3485. CGAL5/include/CGAL/Surface_mesh_parameterization/ARAP_parameterizer_3.h 55.42KB
  3486. CGAL5/include/CGAL/Surface_mesh_parameterization/Barycentric_mapping_parameterizer_3.h 7.59KB
  3487. CGAL5/include/CGAL/Surface_mesh_parameterization/Circular_border_parameterizer_3.h 10.06KB
  3488. CGAL5/include/CGAL/Surface_mesh_parameterization/Discrete_authalic_parameterizer_3.h 8.1KB
  3489. CGAL5/include/CGAL/Surface_mesh_parameterization/Discrete_conformal_map_parameterizer_3.h 7.86KB
  3490. CGAL5/include/CGAL/Surface_mesh_parameterization/Error_code.h 2.59KB
  3491. CGAL5/include/CGAL/Surface_mesh_parameterization/Fixed_border_parameterizer_3.h 17.11KB
  3492. CGAL5/include/CGAL/Surface_mesh_parameterization/internal/
  3493. CGAL5/include/CGAL/Surface_mesh_parameterization/internal/Bool_property_map.h 1.59KB
  3494. CGAL5/include/CGAL/Surface_mesh_parameterization/internal/Containers_filler.h 4.55KB
  3495. CGAL5/include/CGAL/Surface_mesh_parameterization/internal/kernel_traits.h 1.25KB
  3496. CGAL5/include/CGAL/Surface_mesh_parameterization/internal/orbifold_cone_helper.h 9.39KB
  3497. CGAL5/include/CGAL/Surface_mesh_parameterization/internal/validity.h 12.39KB
  3498. CGAL5/include/CGAL/Surface_mesh_parameterization/IO/
  3499. CGAL5/include/CGAL/Surface_mesh_parameterization/IO/File_off.h 4.75KB
  3500. CGAL5/include/CGAL/Surface_mesh_parameterization/Iterative_authalic_parameterizer_3.h 41.14KB
  3501. CGAL5/include/CGAL/Surface_mesh_parameterization/LSCM_parameterizer_3.h 16.43KB
  3502. CGAL5/include/CGAL/Surface_mesh_parameterization/Mean_value_coordinates_parameterizer_3.h 9.06KB
  3503. CGAL5/include/CGAL/Surface_mesh_parameterization/measure_distortion.h 4.02KB
  3504. CGAL5/include/CGAL/Surface_mesh_parameterization/MVC_post_processor_3.h 28.8KB
  3505. CGAL5/include/CGAL/Surface_mesh_parameterization/orbifold_enums.h 2.9KB
  3506. CGAL5/include/CGAL/Surface_mesh_parameterization/orbifold_shortest_path.h 7.55KB
  3507. CGAL5/include/CGAL/Surface_mesh_parameterization/Orbifold_Tutte_parameterizer_3.h 39.53KB
  3508. CGAL5/include/CGAL/Surface_mesh_parameterization/parameterize.h 4.72KB
  3509. CGAL5/include/CGAL/Surface_mesh_parameterization/Square_border_parameterizer_3.h 19.19KB
  3510. CGAL5/include/CGAL/Surface_mesh_parameterization/Two_vertices_parameterizer_3.h 10.71KB
  3511. CGAL5/include/CGAL/surface_mesh_parameterization.h 1.68KB
  3512. CGAL5/include/CGAL/Surface_mesh_segmentation/
  3513. CGAL5/include/CGAL/Surface_mesh_segmentation/internal/
  3514. CGAL5/include/CGAL/Surface_mesh_segmentation/internal/AABB_traits.h 2.94KB
  3515. CGAL5/include/CGAL/Surface_mesh_segmentation/internal/AABB_traversal_traits.h 2.58KB
  3516. CGAL5/include/CGAL/Surface_mesh_segmentation/internal/auxiliary/
  3517. CGAL5/include/CGAL/Surface_mesh_segmentation/internal/auxiliary/graph.h 56.98KB
  3518. CGAL5/include/CGAL/Surface_mesh_segmentation/internal/Disk_samplers.h 11.49KB
  3519. CGAL5/include/CGAL/Surface_mesh_segmentation/internal/Expectation_maximization.h 14.34KB
  3520. CGAL5/include/CGAL/Surface_mesh_segmentation/internal/Filters.h 13.76KB
  3521. CGAL5/include/CGAL/Surface_mesh_segmentation/internal/K_means_clustering.h 15.11KB
  3522. CGAL5/include/CGAL/Surface_mesh_segmentation/internal/SDF_calculation.h 22.83KB
  3523. CGAL5/include/CGAL/Surface_mesh_segmentation/internal/Surface_mesh_segmentation.h 22.97KB
  3524. CGAL5/include/CGAL/Surface_mesh_shortest_path/
  3525. CGAL5/include/CGAL/Surface_mesh_shortest_path/barycentric.h 7.5KB
  3526. CGAL5/include/CGAL/Surface_mesh_shortest_path/function_objects.h 25.06KB
  3527. CGAL5/include/CGAL/Surface_mesh_shortest_path/internal/
  3528. CGAL5/include/CGAL/Surface_mesh_shortest_path/internal/Cone_expansion_event.h 2.29KB
  3529. CGAL5/include/CGAL/Surface_mesh_shortest_path/internal/Cone_tree.h 10.24KB
  3530. CGAL5/include/CGAL/Surface_mesh_shortest_path/internal/misc_functions.h 2.5KB
  3531. CGAL5/include/CGAL/Surface_mesh_shortest_path/Surface_mesh_shortest_path.h 111.74KB
  3532. CGAL5/include/CGAL/Surface_mesh_shortest_path/Surface_mesh_shortest_path_traits.h 10.36KB
  3533. CGAL5/include/CGAL/Surface_mesh_shortest_path.h 1.02KB
  3534. CGAL5/include/CGAL/Surface_mesh_simplification/
  3535. CGAL5/include/CGAL/Surface_mesh_simplification/edge_collapse.h 5.09KB
  3536. CGAL5/include/CGAL/Surface_mesh_simplification/Edge_collapse_visitor_base.h 3.1KB
  3537. CGAL5/include/CGAL/Surface_mesh_simplification/internal/
  3538. CGAL5/include/CGAL/Surface_mesh_simplification/internal/Common.h 4.18KB
  3539. CGAL5/include/CGAL/Surface_mesh_simplification/internal/Edge_collapse.h 45.25KB
  3540. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/
  3541. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/
  3542. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Bounded_distance_placement.h 6.72KB
  3543. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Bounded_normal_change_filter.h 3.49KB
  3544. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Bounded_normal_change_placement.h 3.44KB
  3545. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Constrained_placement.h 2.18KB
  3546. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Count_ratio_stop_predicate.h 2.37KB
  3547. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Count_stop_predicate.h 2.33KB
  3548. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_count_ratio_stop_predicate.h 1.67KB
  3549. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_count_stop_predicate.h 1.64KB
  3550. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_length_cost.h 1.55KB
  3551. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_length_stop_predicate.h 1.67KB
  3552. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_profile.h 11.34KB
  3553. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Face_count_ratio_stop_predicate.h 1.98KB
  3554. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Face_count_stop_predicate.h 1.78KB
  3555. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/FastEnvelope_filter.h 4.89KB
  3556. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/GarlandHeckbert_plane_policies.h 4.59KB
  3557. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/GarlandHeckbert_policies.h 1.57KB
  3558. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/GarlandHeckbert_probabilistic_plane_policies.h 7.31KB
  3559. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/GarlandHeckbert_probabilistic_triangle_policies.h 6.96KB
  3560. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/GarlandHeckbert_triangle_policies.h 4.08KB
  3561. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/internal/
  3562. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/internal/GarlandHeckbert_functions.h 22.68KB
  3563. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/internal/GarlandHeckbert_policy_base.h 9.39KB
  3564. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/internal/LindstromTurk_params.h 1.46KB
  3565. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/internal/Lindstrom_Turk_core.h 22.98KB
  3566. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/LindstromTurk.h 991B
  3567. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/LindstromTurk_cost.h 1.87KB
  3568. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/LindstromTurk_placement.h 1.73KB
  3569. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Midpoint_placement.h 1.53KB
  3570. CGAL5/include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Polyhedral_envelope_filter.h 4.85KB
  3571. CGAL5/include/CGAL/Surface_mesh_skeletonization/
  3572. CGAL5/include/CGAL/Surface_mesh_skeletonization/internal/
  3573. CGAL5/include/CGAL/Surface_mesh_skeletonization/internal/Curve_skeleton.h 16.18KB
  3574. CGAL5/include/CGAL/Surface_mesh_skeletonization/internal/Debug.h 1.11KB
  3575. CGAL5/include/CGAL/Surface_mesh_skeletonization/internal/Detect_degeneracy.h 5.01KB
  3576. CGAL5/include/CGAL/Surface_mesh_topology/
  3577. CGAL5/include/CGAL/Surface_mesh_topology/internal/
  3578. CGAL5/include/CGAL/Surface_mesh_topology/internal/Edge_weight_functor.h 1.66KB
  3579. CGAL5/include/CGAL/Surface_mesh_topology/internal/Facewidth.h 5.49KB
  3580. CGAL5/include/CGAL/Surface_mesh_topology/internal/Functors_for_face_graph_wrapper.h 5.18KB
  3581. CGAL5/include/CGAL/Surface_mesh_topology/internal/Generic_map_selector.h 7.08KB
  3582. CGAL5/include/CGAL/Surface_mesh_topology/internal/Iterators_for_face_graph_wrapper.h 10.08KB
  3583. CGAL5/include/CGAL/Surface_mesh_topology/internal/Minimal_quadrangulation.h 78.56KB
  3584. CGAL5/include/CGAL/Surface_mesh_topology/internal/Path_generators.h 7.3KB
  3585. CGAL5/include/CGAL/Surface_mesh_topology/internal/Path_on_surface_with_rle.h 49.75KB
  3586. CGAL5/include/CGAL/Surface_mesh_topology/internal/Shortest_noncontractible_cycle.h 20.14KB
  3587. CGAL5/include/CGAL/Surface_mesh_traits_generator_3.h 1.27KB
  3588. CGAL5/include/CGAL/Surface_mesh_triangulation_generator_3.h 1.24KB
  3589. CGAL5/include/CGAL/Surface_mesh_vertex_base_3.h 1.3KB
  3590. CGAL5/include/CGAL/surface_neighbors_3.h 9.74KB
  3591. CGAL5/include/CGAL/surface_neighbor_coordinates_3.h 12.94KB
  3592. CGAL5/include/CGAL/surface_reconstruction_points_assertions.h 20.66KB
  3593. CGAL5/include/CGAL/Surface_sweep_2/
  3594. CGAL5/include/CGAL/Surface_sweep_2/Arr_basic_insertion_traits_2.h 27.67KB
  3595. CGAL5/include/CGAL/Surface_sweep_2/Arr_batched_pl_ss_visitor.h 7.32KB
  3596. CGAL5/include/CGAL/Surface_sweep_2/Arr_construction_event.h 3.58KB
  3597. CGAL5/include/CGAL/Surface_sweep_2/Arr_construction_event_base.h 8.28KB
  3598. CGAL5/include/CGAL/Surface_sweep_2/Arr_construction_ss_visitor.h 41.56KB
  3599. CGAL5/include/CGAL/Surface_sweep_2/Arr_construction_subcurve.h 8.19KB
  3600. CGAL5/include/CGAL/Surface_sweep_2/Arr_default_overlay_traits_base.h 4.51KB
  3601. CGAL5/include/CGAL/Surface_sweep_2/Arr_insertion_ss_visitor.h 9.34KB
  3602. CGAL5/include/CGAL/Surface_sweep_2/Arr_insertion_traits_2.h 6.78KB
  3603. CGAL5/include/CGAL/Surface_sweep_2/Arr_no_intersection_insertion_ss_visitor.h 26.11KB
  3604. CGAL5/include/CGAL/Surface_sweep_2/Arr_overlay_event.h 2.38KB
  3605. CGAL5/include/CGAL/Surface_sweep_2/Arr_overlay_ss_visitor.h 42.84KB
  3606. CGAL5/include/CGAL/Surface_sweep_2/Arr_overlay_subcurve.h 5.44KB
  3607. CGAL5/include/CGAL/Surface_sweep_2/Arr_overlay_traits_2.h 44.13KB
  3608. CGAL5/include/CGAL/Surface_sweep_2/Arr_vert_decomp_ss_visitor.h 11.4KB
  3609. CGAL5/include/CGAL/Surface_sweep_2/Curve_comparer.h 6.85KB
  3610. CGAL5/include/CGAL/Surface_sweep_2/Default_event.h 2.7KB
  3611. CGAL5/include/CGAL/Surface_sweep_2/Default_event_base.h 7.35KB
  3612. CGAL5/include/CGAL/Surface_sweep_2/Default_subcurve.h 12.34KB
  3613. CGAL5/include/CGAL/Surface_sweep_2/Default_visitor.h 2.03KB
  3614. CGAL5/include/CGAL/Surface_sweep_2/Default_visitor_base.h 6.61KB
  3615. CGAL5/include/CGAL/Surface_sweep_2/Do_interior_intersect_visitor.h 4.51KB
  3616. CGAL5/include/CGAL/Surface_sweep_2/Event_comparer.h 19.76KB
  3617. CGAL5/include/CGAL/Surface_sweep_2/Intersection_points_visitor.h 3.86KB
  3618. CGAL5/include/CGAL/Surface_sweep_2/No_intersection_surface_sweep_2_impl.h 35.66KB
  3619. CGAL5/include/CGAL/Surface_sweep_2/No_overlap_event.h 2.83KB
  3620. CGAL5/include/CGAL/Surface_sweep_2/No_overlap_event_base.h 18.04KB
  3621. CGAL5/include/CGAL/Surface_sweep_2/No_overlap_subcurve.h 8.02KB
  3622. CGAL5/include/CGAL/Surface_sweep_2/Random_access_output_iterator.h 2.51KB
  3623. CGAL5/include/CGAL/Surface_sweep_2/Subcurves_visitor.h 3.8KB
  3624. CGAL5/include/CGAL/Surface_sweep_2/Surface_sweep_2_debug.h 5.14KB
  3625. CGAL5/include/CGAL/Surface_sweep_2/Surface_sweep_2_impl.h 38.82KB
  3626. CGAL5/include/CGAL/Surface_sweep_2/Surface_sweep_2_utils.h 5.98KB
  3627. CGAL5/include/CGAL/Surface_sweep_2.h 8.98KB
  3628. CGAL5/include/CGAL/Surface_sweep_2_algorithms.h 8.29KB
  3629. CGAL5/include/CGAL/Sweep_line_2_algorithms.h 705B
  3630. CGAL5/include/CGAL/sweep_observer.h 6.13KB
  3631. CGAL5/include/CGAL/tags.h 2.12KB
  3632. CGAL5/include/CGAL/TDS_2/
  3633. CGAL5/include/CGAL/TDS_2/internal/
  3634. CGAL5/include/CGAL/TDS_2/internal/Edge_hash_function.h 1.02KB
  3635. CGAL5/include/CGAL/TDS_2/internal/edge_list.h 11.98KB
  3636. CGAL5/include/CGAL/TDS_3/
  3637. CGAL5/include/CGAL/TDS_3/internal/
  3638. CGAL5/include/CGAL/TDS_3/internal/Dummy_tds_3.h 1.08KB
  3639. CGAL5/include/CGAL/TDS_3/internal/Triangulation_ds_circulators_3.h 13.42KB
  3640. CGAL5/include/CGAL/TDS_3/internal/Triangulation_ds_iterators_3.h 11.21KB
  3641. CGAL5/include/CGAL/TDS_full_cell_default_storage_policy.h 3.39KB
  3642. CGAL5/include/CGAL/TDS_full_cell_mirror_storage_policy.h 2.27KB
  3643. CGAL5/include/CGAL/Test/
  3644. CGAL5/include/CGAL/Test/test_root_of_traits.h 4.76KB
  3645. CGAL5/include/CGAL/Test/_test_algebraic_structure.h 30.99KB
  3646. CGAL5/include/CGAL/Test/_test_bigfloat_interval_traits.h 2.59KB
  3647. CGAL5/include/CGAL/Test/_test_coercion_traits.h 10.9KB
  3648. CGAL5/include/CGAL/Test/_test_convert_to_bfi.h 1.86KB
  3649. CGAL5/include/CGAL/Test/_test_fraction_traits.h 2.07KB
  3650. CGAL5/include/CGAL/Test/_test_interval_traits.h 6.1KB
  3651. CGAL5/include/CGAL/Test/_test_polynomial_traits_d.h 64.83KB
  3652. CGAL5/include/CGAL/Test/_test_rational_traits.h 1.42KB
  3653. CGAL5/include/CGAL/Test/_test_real_embeddable.h 10.31KB
  3654. CGAL5/include/CGAL/Testsuite/
  3655. CGAL5/include/CGAL/Testsuite/DerivedSurfaceMesh.h 940B
  3656. CGAL5/include/CGAL/Testsuite/Triangulation_23/
  3657. CGAL5/include/CGAL/Testsuite/Triangulation_23/test_move_semantic.h 2.23KB
  3658. CGAL5/include/CGAL/Testsuite/use.h 477B
  3659. CGAL5/include/CGAL/Testsuite/vc_debug_hook.h 1.67KB
  3660. CGAL5/include/CGAL/test_FPU_rounding_mode_impl.h 2.06KB
  3661. CGAL5/include/CGAL/Tetrahedral_remeshing/
  3662. CGAL5/include/CGAL/Tetrahedral_remeshing/internal/
  3663. CGAL5/include/CGAL/Tetrahedral_remeshing/internal/collapse_short_edges.h 40.1KB
  3664. CGAL5/include/CGAL/Tetrahedral_remeshing/internal/compute_c3t3_statistics.h 7.88KB
  3665. CGAL5/include/CGAL/Tetrahedral_remeshing/internal/flip_edges.h 42.01KB
  3666. CGAL5/include/CGAL/Tetrahedral_remeshing/internal/FMLS.h 27.5KB
  3667. CGAL5/include/CGAL/Tetrahedral_remeshing/internal/smooth_vertices.h 25.54KB
  3668. CGAL5/include/CGAL/Tetrahedral_remeshing/internal/split_long_edges.h 11.05KB
  3669. CGAL5/include/CGAL/Tetrahedral_remeshing/internal/tetrahedral_adaptive_remeshing_impl.h 19.17KB
  3670. CGAL5/include/CGAL/Tetrahedral_remeshing/internal/tetrahedral_remeshing_helpers.h 50.48KB
  3671. CGAL5/include/CGAL/Tetrahedral_remeshing/Remeshing_cell_base_3.h 1.85KB
  3672. CGAL5/include/CGAL/Tetrahedral_remeshing/Remeshing_triangulation_3.h 2.5KB
  3673. CGAL5/include/CGAL/Tetrahedral_remeshing/Remeshing_vertex_base_3.h 1.9KB
  3674. CGAL5/include/CGAL/Tetrahedral_remeshing/Sizing_field.h 961B
  3675. CGAL5/include/CGAL/Tetrahedral_remeshing/tetrahedral_remeshing_io.h 1.52KB
  3676. CGAL5/include/CGAL/Tetrahedral_remeshing/Uniform_sizing_field.h 1.12KB
  3677. CGAL5/include/CGAL/tetrahedral_remeshing.h 20.37KB
  3678. CGAL5/include/CGAL/Tetrahedron_3.h 4.03KB
  3679. CGAL5/include/CGAL/tetrahedron_soup_to_triangulation_3.h 8.96KB
  3680. CGAL5/include/CGAL/thread.h 1.19KB
  3681. CGAL5/include/CGAL/Three/
  3682. CGAL5/include/CGAL/Three/Buffer_objects.h 4.56KB
  3683. CGAL5/include/CGAL/Three/Edge_container.h 4.17KB
  3684. CGAL5/include/CGAL/Three/exceptions.h 3.87KB
  3685. CGAL5/include/CGAL/Three/Point_container.h 3.42KB
  3686. CGAL5/include/CGAL/Three/Polyhedron_demo_io_plugin_interface.h 3.85KB
  3687. CGAL5/include/CGAL/Three/Polyhedron_demo_plugin_helper.h 2.99KB
  3688. CGAL5/include/CGAL/Three/Polyhedron_demo_plugin_interface.h 2.13KB
  3689. CGAL5/include/CGAL/Three/Primitive_container.h 8.17KB
  3690. CGAL5/include/CGAL/Three/Scene_draw_interface.h 2.97KB
  3691. CGAL5/include/CGAL/Three/Scene_group_item.h 9.96KB
  3692. CGAL5/include/CGAL/Three/Scene_interface.h 5.96KB
  3693. CGAL5/include/CGAL/Three/Scene_item.h 18.85KB
  3694. CGAL5/include/CGAL/Three/Scene_item_config.h 762B
  3695. CGAL5/include/CGAL/Three/Scene_item_rendering_helper.h 7.67KB
  3696. CGAL5/include/CGAL/Three/Scene_item_with_properties.h 1.22KB
  3697. CGAL5/include/CGAL/Three/Scene_print_item_interface.h 2.77KB
  3698. CGAL5/include/CGAL/Three/Scene_transparent_interface.h 1.27KB
  3699. CGAL5/include/CGAL/Three/Scene_zoomable_item_interface.h 1.14KB
  3700. CGAL5/include/CGAL/Three/TextRenderer.h 6.83KB
  3701. CGAL5/include/CGAL/Three/Three.h 4.12KB
  3702. CGAL5/include/CGAL/Three/Triangle_container.h 4.69KB
  3703. CGAL5/include/CGAL/Three/Viewer_config.h 741B
  3704. CGAL5/include/CGAL/Three/Viewer_interface.h 13.49KB
  3705. CGAL5/include/CGAL/Threetuple.h 1.15KB
  3706. CGAL5/include/CGAL/Timer.h 3.3KB
  3707. CGAL5/include/CGAL/Timer_impl.h 4.11KB
  3708. CGAL5/include/CGAL/Time_stamper.h 4.31KB
  3709. CGAL5/include/CGAL/to_rational.h 2.75KB
  3710. CGAL5/include/CGAL/transforming_iterator.h 4.34KB
  3711. CGAL5/include/CGAL/transforming_pair_iterator.h 4.38KB
  3712. CGAL5/include/CGAL/Transform_iterator.h 2.41KB
  3713. CGAL5/include/CGAL/Tree_assertions.h 15.35KB
  3714. CGAL5/include/CGAL/Tree_base.h 7.47KB
  3715. CGAL5/include/CGAL/Tree_traits.h 2.44KB
  3716. CGAL5/include/CGAL/Triangle_2.h 4.3KB
  3717. CGAL5/include/CGAL/Triangle_3.h 3.25KB
  3718. CGAL5/include/CGAL/Triangle_accessor_3.h 3.54KB
  3719. CGAL5/include/CGAL/Triangular_expansion_visibility_2.h 25.06KB
  3720. CGAL5/include/CGAL/Triangular_field_2.h 6.57KB
  3721. CGAL5/include/CGAL/Triangulated_mixed_complex_observer_3.h 7.96KB
  3722. CGAL5/include/CGAL/triangulate_mixed_complex_3.h 44.6KB
  3723. CGAL5/include/CGAL/triangulate_power_diagram_3.h 26.24KB
  3724. CGAL5/include/CGAL/Triangulation/
  3725. CGAL5/include/CGAL/Triangulation/internal/
  3726. CGAL5/include/CGAL/Triangulation/internal/Combination_enumerator.h 3.5KB
  3727. CGAL5/include/CGAL/Triangulation/internal/Dummy_TDS.h 1.15KB
  3728. CGAL5/include/CGAL/Triangulation/internal/Static_or_dynamic_array.h 2.89KB
  3729. CGAL5/include/CGAL/Triangulation/internal/Triangulation_ds_iterators.h 3.76KB
  3730. CGAL5/include/CGAL/Triangulation/internal/utilities.h 3.39KB
  3731. CGAL5/include/CGAL/Triangulation.h 47.45KB
  3732. CGAL5/include/CGAL/Triangulation_2/
  3733. CGAL5/include/CGAL/Triangulation_2/insert_constraints.h 3.58KB
  3734. CGAL5/include/CGAL/Triangulation_2/internal/
  3735. CGAL5/include/CGAL/Triangulation_2/internal/Constraint_hierarchy_2.h 22.57KB
  3736. CGAL5/include/CGAL/Triangulation_2/internal/CTP2_subconstraint_graph.h 3.8KB
  3737. CGAL5/include/CGAL/Triangulation_2/internal/In_domain.h 1.68KB
  3738. CGAL5/include/CGAL/Triangulation_2/internal/Polyline_constraint_hierarchy_2.h 37.84KB
  3739. CGAL5/include/CGAL/Triangulation_2/internal/Triangulation_line_face_circulator_2.h 19.41KB
  3740. CGAL5/include/CGAL/Triangulation_2.h 107.65KB
  3741. CGAL5/include/CGAL/Triangulation_2_projection_traits_3.h 1.66KB
  3742. CGAL5/include/CGAL/Triangulation_2_to_lcc.h 4.33KB
  3743. CGAL5/include/CGAL/Triangulation_2_traits_3.h 3.13KB
  3744. CGAL5/include/CGAL/Triangulation_3/
  3745. CGAL5/include/CGAL/Triangulation_3/internal/
  3746. CGAL5/include/CGAL/Triangulation_3/internal/Delaunay_triangulation_hierarchy_3.h 3.82KB
  3747. CGAL5/include/CGAL/Triangulation_3/internal/Triangulation_segment_traverser_3_impl.h 41.27KB
  3748. CGAL5/include/CGAL/Triangulation_3.h 220.7KB
  3749. CGAL5/include/CGAL/Triangulation_3_to_lcc.h 5.39KB
  3750. CGAL5/include/CGAL/triangulation_assertions.h 17.14KB
  3751. CGAL5/include/CGAL/Triangulation_cell_base_3.h 2.06KB
  3752. CGAL5/include/CGAL/Triangulation_cell_base_with_info_3.h 1.98KB
  3753. CGAL5/include/CGAL/Triangulation_conformer_2.h 6.48KB
  3754. CGAL5/include/CGAL/Triangulation_data_structure.h 52.97KB
  3755. CGAL5/include/CGAL/Triangulation_data_structure_2.h 67.39KB
  3756. CGAL5/include/CGAL/Triangulation_data_structure_3.h 127.47KB
  3757. CGAL5/include/CGAL/Triangulation_data_structure_using_list_2.h 753B
  3758. CGAL5/include/CGAL/Triangulation_default_data_structure_2.h 732B
  3759. CGAL5/include/CGAL/Triangulation_ds_cell_base_3.h 5.96KB
  3760. CGAL5/include/CGAL/Triangulation_ds_circulators_2.h 15.2KB
  3761. CGAL5/include/CGAL/Triangulation_ds_face_2.h 3.41KB
  3762. CGAL5/include/CGAL/Triangulation_ds_face_base_2.h 8.19KB
  3763. CGAL5/include/CGAL/Triangulation_ds_full_cell.h 10.13KB
  3764. CGAL5/include/CGAL/Triangulation_ds_iterators_2.h 4.89KB
  3765. CGAL5/include/CGAL/Triangulation_ds_vertex.h 4.21KB
  3766. CGAL5/include/CGAL/Triangulation_ds_vertex_2.h 3.3KB
  3767. CGAL5/include/CGAL/Triangulation_ds_vertex_base_2.h 2.43KB
  3768. CGAL5/include/CGAL/Triangulation_ds_vertex_base_3.h 2.86KB
  3769. CGAL5/include/CGAL/Triangulation_face.h 2.94KB
  3770. CGAL5/include/CGAL/Triangulation_face_base_2.h 1.89KB
  3771. CGAL5/include/CGAL/Triangulation_face_base_with_id_2.h 1.74KB
  3772. CGAL5/include/CGAL/Triangulation_face_base_with_info_2.h 2.05KB
  3773. CGAL5/include/CGAL/Triangulation_full_cell.h 3.99KB
  3774. CGAL5/include/CGAL/Triangulation_geom_traits_3.h 2.64KB
  3775. CGAL5/include/CGAL/Triangulation_hierarchy_2.h 23.51KB
  3776. CGAL5/include/CGAL/Triangulation_hierarchy_3.h 27.84KB
  3777. CGAL5/include/CGAL/Triangulation_hierarchy_vertex_base_2.h 1.99KB
  3778. CGAL5/include/CGAL/Triangulation_hierarchy_vertex_base_3.h 1.96KB
  3779. CGAL5/include/CGAL/Triangulation_incremental_builder_3.h 7.58KB
  3780. CGAL5/include/CGAL/Triangulation_on_sphere_2/
  3781. CGAL5/include/CGAL/Triangulation_on_sphere_2/internal/
  3782. CGAL5/include/CGAL/Triangulation_on_sphere_2/internal/arc_on_sphere_2_subsampling.h 6.99KB
  3783. CGAL5/include/CGAL/Triangulation_on_sphere_2/internal/get_precision_bounds.h 2.59KB
  3784. CGAL5/include/CGAL/Triangulation_on_sphere_2/IO/
  3785. CGAL5/include/CGAL/Triangulation_on_sphere_2/IO/OFF.h 5.48KB
  3786. CGAL5/include/CGAL/Triangulation_on_sphere_2.h 38.63KB
  3787. CGAL5/include/CGAL/Triangulation_on_sphere_face_base_2.h 2.2KB
  3788. CGAL5/include/CGAL/Triangulation_on_sphere_vertex_base_2.h 2.83KB
  3789. CGAL5/include/CGAL/Triangulation_segment_traverser_3.h 39.85KB
  3790. CGAL5/include/CGAL/Triangulation_simplex_3.h 7.88KB
  3791. CGAL5/include/CGAL/Triangulation_sphere_line_face_circulator_2.h 9.89KB
  3792. CGAL5/include/CGAL/Triangulation_structural_filtering_traits.h 875B
  3793. CGAL5/include/CGAL/Triangulation_utils_2.h 1.39KB
  3794. CGAL5/include/CGAL/Triangulation_utils_3.h 2.78KB
  3795. CGAL5/include/CGAL/Triangulation_vertex.h 3.37KB
  3796. CGAL5/include/CGAL/Triangulation_vertex_base_2.h 4.27KB
  3797. CGAL5/include/CGAL/Triangulation_vertex_base_3.h 2.14KB
  3798. CGAL5/include/CGAL/Triangulation_vertex_base_with_id_2.h 1.52KB
  3799. CGAL5/include/CGAL/Triangulation_vertex_base_with_info_2.h 1.69KB
  3800. CGAL5/include/CGAL/Triangulation_vertex_base_with_info_3.h 1.67KB
  3801. CGAL5/include/CGAL/Trisegment_2.h 5.81KB
  3802. CGAL5/include/CGAL/tss.h 1.54KB
  3803. CGAL5/include/CGAL/tuple.h 1.03KB
  3804. CGAL5/include/CGAL/Twotuple.h 1.11KB
  3805. CGAL5/include/CGAL/typeset.h 2.36KB
  3806. CGAL5/include/CGAL/type_traits/
  3807. CGAL5/include/CGAL/type_traits/is_iterator.h 2.53KB
  3808. CGAL5/include/CGAL/type_traits.h 843B
  3809. CGAL5/include/CGAL/Umbilics.h 11.18KB
  3810. CGAL5/include/CGAL/Uncertain.h 13.09KB
  3811. CGAL5/include/CGAL/Unfiltered_predicate_adaptor.h 1.79KB
  3812. CGAL5/include/CGAL/Union_find.h 8.47KB
  3813. CGAL5/include/CGAL/Union_of_balls_3.h 3.88KB
  3814. CGAL5/include/CGAL/Unique_hash_map.h 5.6KB
  3815. CGAL5/include/CGAL/use.h 876B
  3816. CGAL5/include/CGAL/user_classes.h 1.41KB
  3817. CGAL5/include/CGAL/utility.h 8.57KB
  3818. CGAL5/include/CGAL/utils.h 1.27KB
  3819. CGAL5/include/CGAL/utils_classes.h 5.95KB
  3820. CGAL5/include/CGAL/value_type_traits.h 1.61KB
  3821. CGAL5/include/CGAL/variant.h 2.21KB
  3822. CGAL5/include/CGAL/Variational_shape_approximation.h 76.3KB
  3823. CGAL5/include/CGAL/vcm_estimate_edges.h 2.59KB
  3824. CGAL5/include/CGAL/vcm_estimate_normals.h 19.14KB
  3825. CGAL5/include/CGAL/vector.h 21.22KB
  3826. CGAL5/include/CGAL/Vector_2.h 8.73KB
  3827. CGAL5/include/CGAL/Vector_3.h 8.7KB
  3828. CGAL5/include/CGAL/version.h 837B
  3829. CGAL5/include/CGAL/version_checker.h 1.74KB
  3830. CGAL5/include/CGAL/version_macros.h 1.32KB
  3831. CGAL5/include/CGAL/Vertex2Data_Property_Map_with_std_map.h 1.65KB
  3832. CGAL5/include/CGAL/Visibility_2/
  3833. CGAL5/include/CGAL/Visibility_2/visibility_utils.h 14.47KB
  3834. CGAL5/include/CGAL/Voronoi_diagram_2/
  3835. CGAL5/include/CGAL/Voronoi_diagram_2/Accessor.h 1.53KB
  3836. CGAL5/include/CGAL/Voronoi_diagram_2/Adaptation_traits_base_2.h 2.22KB
  3837. CGAL5/include/CGAL/Voronoi_diagram_2/Adaptation_traits_functors.h 1.71KB
  3838. CGAL5/include/CGAL/Voronoi_diagram_2/Apollonius_graph_degeneracy_testers.h 3.46KB
  3839. CGAL5/include/CGAL/Voronoi_diagram_2/Apollonius_graph_nearest_site_2.h 7.58KB
  3840. CGAL5/include/CGAL/Voronoi_diagram_2/basic.h 751B
  3841. CGAL5/include/CGAL/Voronoi_diagram_2/Cached_degeneracy_testers.h 12.04KB
  3842. CGAL5/include/CGAL/Voronoi_diagram_2/Circulator_adaptors.h 4.46KB
  3843. CGAL5/include/CGAL/Voronoi_diagram_2/Connected_components.h 3.74KB
  3844. CGAL5/include/CGAL/Voronoi_diagram_2/Construct_dual_points.h 4.15KB
  3845. CGAL5/include/CGAL/Voronoi_diagram_2/Default_site_inserters.h 5.63KB
  3846. CGAL5/include/CGAL/Voronoi_diagram_2/Default_site_removers.h 3.46KB
  3847. CGAL5/include/CGAL/Voronoi_diagram_2/Degeneracy_tester_binders.h 1.96KB
  3848. CGAL5/include/CGAL/Voronoi_diagram_2/Delaunay_triangulation_degeneracy_testers.h 3.48KB
  3849. CGAL5/include/CGAL/Voronoi_diagram_2/Delaunay_triangulation_nearest_site_2.h 5.2KB
  3850. CGAL5/include/CGAL/Voronoi_diagram_2/Delaunay_triangulation_on_sphere_degeneracy_testers.h 3.27KB
  3851. CGAL5/include/CGAL/Voronoi_diagram_2/Dummy_iterator.h 2.38KB
  3852. CGAL5/include/CGAL/Voronoi_diagram_2/Edge_less.h 1.08KB
  3853. CGAL5/include/CGAL/Voronoi_diagram_2/Face.h 5.86KB
  3854. CGAL5/include/CGAL/Voronoi_diagram_2/Finder_classes.h 3.86KB
  3855. CGAL5/include/CGAL/Voronoi_diagram_2/Halfedge.h 10.15KB
  3856. CGAL5/include/CGAL/Voronoi_diagram_2/Handle_adaptor.h 1.65KB
  3857. CGAL5/include/CGAL/Voronoi_diagram_2/Identity_rejectors.h 2.87KB
  3858. CGAL5/include/CGAL/Voronoi_diagram_2/Iterator_adaptors.h 10.98KB
  3859. CGAL5/include/CGAL/Voronoi_diagram_2/Policy_base.h 4.91KB
  3860. CGAL5/include/CGAL/Voronoi_diagram_2/Regular_triangulation_degeneracy_testers.h 3.44KB
  3861. CGAL5/include/CGAL/Voronoi_diagram_2/Regular_triangulation_nearest_site_2.h 5.29KB
  3862. CGAL5/include/CGAL/Voronoi_diagram_2/Segment_Delaunay_graph_degeneracy_testers.h 8.06KB
  3863. CGAL5/include/CGAL/Voronoi_diagram_2/Segment_Delaunay_graph_nearest_site_2.h 10.08KB
  3864. CGAL5/include/CGAL/Voronoi_diagram_2/Site_accessors.h 2.28KB
  3865. CGAL5/include/CGAL/Voronoi_diagram_2/Unbounded_edges.h 2.74KB
  3866. CGAL5/include/CGAL/Voronoi_diagram_2/Unbounded_faces.h 3.03KB
  3867. CGAL5/include/CGAL/Voronoi_diagram_2/Validity_testers.h 3.25KB
  3868. CGAL5/include/CGAL/Voronoi_diagram_2/Vertex.h 7.14KB
  3869. CGAL5/include/CGAL/Voronoi_diagram_2.h 24.08KB
  3870. CGAL5/include/CGAL/Voronoi_intersection_2_traits_3.h 20.23KB
  3871. CGAL5/include/CGAL/vtkSurfaceMesherContourFilter.h 4.88KB
  3872. CGAL5/include/CGAL/Weighted_Minkowski_distance.h 13.66KB
  3873. CGAL5/include/CGAL/Weighted_point_2.h 7.69KB
  3874. CGAL5/include/CGAL/Weighted_point_3.h 8.11KB
  3875. CGAL5/include/CGAL/Weights/
  3876. CGAL5/include/CGAL/Weights/authalic_weights.h 5.6KB
  3877. CGAL5/include/CGAL/Weights/barycentric_region_weights.h 4.37KB
  3878. CGAL5/include/CGAL/Weights/cotangent_weights.h 16.21KB
  3879. CGAL5/include/CGAL/Weights/discrete_harmonic_weights.h 13.52KB
  3880. CGAL5/include/CGAL/Weights/internal/
  3881. CGAL5/include/CGAL/Weights/internal/pmp_weights_deprecated.h 30.04KB
  3882. CGAL5/include/CGAL/Weights/internal/polygon_utils_2.h 10.36KB
  3883. CGAL5/include/CGAL/Weights/internal/utils.h 22.58KB
  3884. CGAL5/include/CGAL/Weights/inverse_distance_weights.h 6.9KB
  3885. CGAL5/include/CGAL/Weights/mean_value_weights.h 15.46KB
  3886. CGAL5/include/CGAL/Weights/mixed_voronoi_region_weights.h 5.15KB
  3887. CGAL5/include/CGAL/Weights/shepard_weights.h 7.88KB
  3888. CGAL5/include/CGAL/Weights/tangent_weights.h 14.81KB
  3889. CGAL5/include/CGAL/Weights/three_point_family_weights.h 5.05KB
  3890. CGAL5/include/CGAL/Weights/triangular_region_weights.h 3.55KB
  3891. CGAL5/include/CGAL/Weights/uniform_region_weights.h 3.32KB
  3892. CGAL5/include/CGAL/Weights/uniform_weights.h 4.27KB
  3893. CGAL5/include/CGAL/Weights/utils.h 5.73KB
  3894. CGAL5/include/CGAL/Weights/voronoi_region_weights.h 4.31KB
  3895. CGAL5/include/CGAL/Weights/wachspress_weights.h 12.34KB
  3896. CGAL5/include/CGAL/Weights.h 1.33KB
  3897. CGAL5/include/CGAL/Width_3.h 60.12KB
  3898. CGAL5/include/CGAL/width_assertions.h 2.47KB
  3899. CGAL5/include/CGAL/Width_default_traits_3.h 2.31KB
  3900. CGAL5/include/CGAL/Width_polyhedron_3.h 7.19KB
  3901. CGAL5/include/CGAL/wlop_simplify_and_regularize_point_set.h 22.12KB
  3902. CGAL5/include/CGAL/wmult.h 653B
  3903. CGAL5/lib/
  3904. CGAL5/lib/cmake/
  3905. CGAL5/lib/cmake/CGAL/
  3906. CGAL5/lib/cmake/CGAL/CGALConfig.cmake 6.22KB
  3907. CGAL5/lib/cmake/CGAL/CGALConfigBuildVersion.cmake 28B
  3908. CGAL5/lib/cmake/CGAL/CGALConfigVersion.cmake 951B
  3909. CGAL5/lib/cmake/CGAL/CGALConfigVersion_binary_header_only.cmake.in 158B
  3910. CGAL5/lib/cmake/CGAL/CGALConfig_binary.cmake.in 8.48KB
  3911. CGAL5/lib/cmake/CGAL/CGALConfig_binary_header_only.cmake.in 144B
  3912. CGAL5/lib/cmake/CGAL/CGALConfig_install.cmake.in 8.3KB
  3913. CGAL5/lib/cmake/CGAL/CGALLibConfig.cmake.in 1.39KB
  3914. CGAL5/lib/cmake/CGAL/CGAL_add_test.cmake 15KB
  3915. CGAL5/lib/cmake/CGAL/CGAL_Boost_iostreams_support.cmake 1.27KB
  3916. CGAL5/lib/cmake/CGAL/CGAL_Boost_serialization_support.cmake 485B
  3917. CGAL5/lib/cmake/CGAL/CGAL_Ceres_support.cmake 326B
  3918. CGAL5/lib/cmake/CGAL/CGAL_CheckCXXFileRuns.cmake 2.64KB
  3919. CGAL5/lib/cmake/CGAL/CGAL_Common.cmake 1.61KB
  3920. CGAL5/lib/cmake/CGAL/CGAL_CreateSingleSourceCGALProgram.cmake 2.89KB
  3921. CGAL5/lib/cmake/CGAL/CGAL_display_flags.cmake 506B
  3922. CGAL5/lib/cmake/CGAL/CGAL_Eigen3_support.cmake 366B
  3923. CGAL5/lib/cmake/CGAL/CGAL_Eigen_support.cmake 363B
  3924. CGAL5/lib/cmake/CGAL/CGAL_enable_end_of_configuration_hook.cmake 4.36KB
  3925. CGAL5/lib/cmake/CGAL/CGAL_GeneratorSpecificSettings.cmake 1.79KB
  3926. CGAL5/lib/cmake/CGAL/CGAL_GLPK_support.cmake 320B
  3927. CGAL5/lib/cmake/CGAL/CGAL_ITK_support.cmake 314B
  3928. CGAL5/lib/cmake/CGAL/CGAL_LASLIB_support.cmake 451B
  3929. CGAL5/lib/cmake/CGAL/CGAL_Macros.cmake 22.09KB
  3930. CGAL5/lib/cmake/CGAL/CGAL_METIS_support.cmake 331B
  3931. CGAL5/lib/cmake/CGAL/CGAL_OpenCV_support.cmake 338B
  3932. CGAL5/lib/cmake/CGAL/CGAL_OpenGR_support.cmake 291B
  3933. CGAL5/lib/cmake/CGAL/CGAL_OSQP_support.cmake 320B
  3934. CGAL5/lib/cmake/CGAL/CGAL_parse_version_h.cmake 1.16KB
  3935. CGAL5/lib/cmake/CGAL/CGAL_pointmatcher_support.cmake 890B
  3936. CGAL5/lib/cmake/CGAL/CGAL_Qt5_moc_and_resource_files.cmake 1.04KB
  3937. CGAL5/lib/cmake/CGAL/CGAL_SCIP_support.cmake 321B
  3938. CGAL5/lib/cmake/CGAL/CGAL_SCM.cmake 2.49KB
  3939. CGAL5/lib/cmake/CGAL/CGAL_SetupBoost.cmake 1.92KB
  3940. CGAL5/lib/cmake/CGAL/CGAL_SetupCGALDependencies.cmake 5.5KB
  3941. CGAL5/lib/cmake/CGAL/CGAL_SetupCGAL_CoreDependencies.cmake 1.44KB
  3942. CGAL5/lib/cmake/CGAL/CGAL_SetupCGAL_ImageIODependencies.cmake 1.69KB
  3943. CGAL5/lib/cmake/CGAL/CGAL_SetupCGAL_Qt5Dependencies.cmake 4.35KB
  3944. CGAL5/lib/cmake/CGAL/CGAL_SetupDependencies.cmake 427B
  3945. CGAL5/lib/cmake/CGAL/CGAL_SetupFlags.cmake 3.98KB
  3946. CGAL5/lib/cmake/CGAL/CGAL_SetupGMP.cmake 2.37KB
  3947. CGAL5/lib/cmake/CGAL/CGAL_SetupLEDA.cmake 1.39KB
  3948. CGAL5/lib/cmake/CGAL/CGAL_SetupVLD.cmake 1.02KB
  3949. CGAL5/lib/cmake/CGAL/CGAL_setup_target_dependencies.cmake 414B
  3950. CGAL5/lib/cmake/CGAL/CGAL_target_use_TBB.cmake 592B
  3951. CGAL5/lib/cmake/CGAL/CGAL_TBB_support.cmake 434B
  3952. CGAL5/lib/cmake/CGAL/CGAL_TweakFindBoost.cmake 3.57KB
  3953. CGAL5/lib/cmake/CGAL/CGAL_UseLEDA.cmake 1.24KB
  3954. CGAL5/lib/cmake/CGAL/CGAL_UseMKL.cmake 658B
  3955. CGAL5/lib/cmake/CGAL/CGAL_UseMPFI.cmake 1.73KB
  3956. CGAL5/lib/cmake/CGAL/CGAL_UseRS.cmake 1.14KB
  3957. CGAL5/lib/cmake/CGAL/CGAL_UseRS3.cmake 1.98KB
  3958. CGAL5/lib/cmake/CGAL/CGAL_VersionUtils.cmake 6.15KB
  3959. CGAL5/lib/cmake/CGAL/config/
  3960. CGAL5/lib/cmake/CGAL/config/support/
  3961. CGAL5/lib/cmake/CGAL/config/support/CGAL_test_cpp_version.cpp 622B
  3962. CGAL5/lib/cmake/CGAL/config/support/print_BOOST_version.cpp 715B
  3963. CGAL5/lib/cmake/CGAL/config/support/print_GCC_version.cpp 987B
  3964. CGAL5/lib/cmake/CGAL/config/support/print_GMP_version.cpp 729B
  3965. CGAL5/lib/cmake/CGAL/config/support/print_IntelCompiler_version.cpp 757B
  3966. CGAL5/lib/cmake/CGAL/config/support/print_LEDA_version.cpp 548B
  3967. CGAL5/lib/cmake/CGAL/config/support/print_MPFI_version.cpp 418B
  3968. CGAL5/lib/cmake/CGAL/config/support/print_MPFR_version.cpp 865B
  3969. CGAL5/lib/cmake/CGAL/config/support/print_OPENGL_version.cpp 1.07KB
  3970. CGAL5/lib/cmake/CGAL/config/support/print_QT4_version.cpp 403B
  3971. CGAL5/lib/cmake/CGAL/config/support/print_QT_version.cpp 566B
  3972. CGAL5/lib/cmake/CGAL/config/support/print_ZLIB_version.cpp 580B
  3973. CGAL5/lib/cmake/CGAL/config/support/test_BOOST.cpp 1.09KB
  3974. CGAL5/lib/cmake/CGAL/config/support/test_BOOST_PROGRAM_OPTIONS.cpp 1.06KB
  3975. CGAL5/lib/cmake/CGAL/config/support/test_BOOST_THREAD.cpp 708B
  3976. CGAL5/lib/cmake/CGAL/config/support/test_GMP.cpp 966B
  3977. CGAL5/lib/cmake/CGAL/config/support/test_GMPXX.cpp 876B
  3978. CGAL5/lib/cmake/CGAL/config/support/test_LEDA.cpp 1.27KB
  3979. CGAL5/lib/cmake/CGAL/config/support/test_LEDAWIN.cpp 635B
  3980. CGAL5/lib/cmake/CGAL/config/support/test_LIDIA.cpp 540B
  3981. CGAL5/lib/cmake/CGAL/config/support/test_MPFR.cpp 1.17KB
  3982. CGAL5/lib/cmake/CGAL/config/support/test_OPENGL.cpp 1.41KB
  3983. CGAL5/lib/cmake/CGAL/config/support/test_QT.cpp 1015B
  3984. CGAL5/lib/cmake/CGAL/config/support/test_syntaxonly.cpp 14B
  3985. CGAL5/lib/cmake/CGAL/config/support/test_X11.cpp 631B
  3986. CGAL5/lib/cmake/CGAL/config/support/test_ZLIB.cpp 584B
  3987. CGAL5/lib/cmake/CGAL/config/testfiles/
  3988. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_DENORMALS_COMPILE_BUG.cpp 715B
  3989. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_FPU_ROUNDING_MODE_UNWINDING_VC_BUG.cpp 971B
  3990. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_IEEE_754_BUG.cpp 1KB
  3991. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_ISTREAM_INT_BUG.cpp 632B
  3992. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_MATCHING_BUG_5.cpp 1012B
  3993. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_MATCHING_BUG_6.cpp 780B
  3994. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_MATCHING_BUG_7.cpp 1.7KB
  3995. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_MATCHING_BUG_8.cpp 923B
  3996. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_NO_LIMITS.cpp 848B
  3997. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_NO_NEXTAFTER.cpp 709B
  3998. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_NO_STL.cpp 898B
  3999. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_NUMERIC_LIMITS_BUG.cpp 852B
  4000. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_OUTOFLINE_MEMBER_DEFINITION_BUG.cpp 825B
  4001. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_TEMPLATE_IN_DEFAULT_PARAMETER_BUG.cpp 550B
  4002. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_TYPENAME_BEFORE_DEFAULT_ARGUMENT_BUG.cpp 700B
  4003. CGAL5/lib/cmake/CGAL/config/testfiles/CGAL_CFG_USING_BASE_MEMBER_BUG_2.cpp 1.19KB
  4004. CGAL5/lib/cmake/CGAL/config/version.h.in 748B
  4005. CGAL5/lib/cmake/CGAL/demo/
  4006. CGAL5/lib/cmake/CGAL/demo/icons/
  4007. CGAL5/lib/cmake/CGAL/demo/icons/Delaunay_triangulation_2.png 3.95KB
  4008. CGAL5/lib/cmake/CGAL/demo/icons/File.qrc 175B
  4009. CGAL5/lib/cmake/CGAL/demo/icons/fileNew.png 768B
  4010. CGAL5/lib/cmake/CGAL/demo/icons/fileOpen.png 1.62KB
  4011. CGAL5/lib/cmake/CGAL/demo/icons/fileSave.png 1.18KB
  4012. CGAL5/lib/cmake/CGAL/demo/icons/fit-page-32.png 1.3KB
  4013. CGAL5/lib/cmake/CGAL/demo/icons/Input.qrc 187B
  4014. CGAL5/lib/cmake/CGAL/demo/icons/inputPoint.png 1.12KB
  4015. CGAL5/lib/cmake/CGAL/demo/icons/inputPoint.svg 3.24KB
  4016. CGAL5/lib/cmake/CGAL/demo/icons/inputPolyline.png 1.97KB
  4017. CGAL5/lib/cmake/CGAL/demo/icons/license.txt 187B
  4018. CGAL5/lib/cmake/CGAL/demo/icons/Triangulation_2.qrc 171B
  4019. CGAL5/lib/cmake/CGAL/demo/icons/Voronoi_diagram_2.png 3.02KB
  4020. CGAL5/lib/cmake/CGAL/demo/icons/zoom-best-fit.png 3.16KB
  4021. CGAL5/lib/cmake/CGAL/demo/icons/zoom-best-fit.svg 8.08KB
  4022. CGAL5/lib/cmake/CGAL/demo/resources/
  4023. CGAL5/lib/cmake/CGAL/demo/resources/about_CGAL.html 339B
  4024. CGAL5/lib/cmake/CGAL/demo/resources/CGAL.qrc 312B
  4025. CGAL5/lib/cmake/CGAL/demo/resources/cgal_logo.xpm 473B
  4026. CGAL5/lib/cmake/CGAL/demo/resources/cgal_logo_ipe_2013.png 26.74KB
  4027. CGAL5/lib/cmake/CGAL/FindCORE.cmake 782B
  4028. CGAL5/lib/cmake/CGAL/FindEigen3.cmake 2.99KB
  4029. CGAL5/lib/cmake/CGAL/FindESBTL.cmake 722B
  4030. CGAL5/lib/cmake/CGAL/FindF2C.cmake 923B
  4031. CGAL5/lib/cmake/CGAL/FindGLPK.cmake 858B
  4032. CGAL5/lib/cmake/CGAL/FindGMP.cmake 1.97KB
  4033. CGAL5/lib/cmake/CGAL/FindGMPXX.cmake 1.14KB
  4034. CGAL5/lib/cmake/CGAL/FindIPE.cmake 1.54KB
  4035. CGAL5/lib/cmake/CGAL/FindITT.cmake 5.33KB
  4036. CGAL5/lib/cmake/CGAL/FindLASLIB.cmake 994B
  4037. CGAL5/lib/cmake/CGAL/FindLEDA.cmake 3.71KB
  4038. CGAL5/lib/cmake/CGAL/FindLibSSH.cmake 982B
  4039. CGAL5/lib/cmake/CGAL/FindMETIS.cmake 5.55KB
  4040. CGAL5/lib/cmake/CGAL/FindMKL.cmake 10.12KB
  4041. CGAL5/lib/cmake/CGAL/FindMPFI.cmake 1.95KB
  4042. CGAL5/lib/cmake/CGAL/FindMPFR.cmake 1.46KB
  4043. CGAL5/lib/cmake/CGAL/FindNTL.cmake 2.82KB
  4044. CGAL5/lib/cmake/CGAL/FindOpenMesh.cmake 2.47KB
  4045. CGAL5/lib/cmake/CGAL/FindOSQP.cmake 585B
  4046. CGAL5/lib/cmake/CGAL/FindRS.cmake 1.62KB
  4047. CGAL5/lib/cmake/CGAL/FindRS3.cmake 2.06KB
  4048. CGAL5/lib/cmake/CGAL/FindSuiteSparse.cmake 21.03KB
  4049. CGAL5/lib/cmake/CGAL/FindTBB.cmake 15.51KB
  4050. CGAL5/lib/cmake/CGAL/Help/
  4051. CGAL5/lib/cmake/CGAL/Help/CGAL_SetupBoost.rst 43B
  4052. CGAL5/lib/cmake/CGAL/Help/CGAL_SetupCGALDependencies.rst 54B
  4053. CGAL5/lib/cmake/CGAL/Help/CGAL_SetupCGAL_CoreDependencies.rst 59B
  4054. CGAL5/lib/cmake/CGAL/Help/CGAL_SetupCGAL_ImageIODependencies.rst 62B
  4055. CGAL5/lib/cmake/CGAL/Help/CGAL_SetupCGAL_Qt5Dependencies.rst 58B
  4056. CGAL5/lib/cmake/CGAL/Help/CGAL_SetupGMP.rst 41B
  4057. CGAL5/lib/cmake/CGAL/Help/CGAL_SetupLEDA.rst 42B
  4058. CGAL5/lib/cmake/CGAL/Help/cmake.py 15.39KB
  4059. CGAL5/lib/cmake/CGAL/Help/conf.py 9.63KB
  4060. CGAL5/lib/cmake/CGAL/Help/index.rst 749B
  4061. CGAL5/lib/cmake/CGAL/list_of_whitelisted_headers.cmake 1.76KB
  4062. CGAL5/lib/cmake/CGAL/Makefile 7.45KB
  4063. CGAL5/lib/cmake/CGAL/process_dependencies.cmake 1.53KB
  4064. CGAL5/lib/cmake/CGAL/run_cmd_redirection_cerr.cmake 1.17KB
  4065. CGAL5/lib/cmake/CGAL/run_test_with_cin.cmake 1.04KB
  4066. CGAL5/lib/cmake/CGAL/test_MPFI.cpp 511B
  4067. CGAL5/lib/cmake/CGAL/UseCGAL.cmake 1.57KB
  4068. CGAL5/lib/cmake/CGAL/UseEigen3.cmake 406B
  4069. CGAL5/lib/cmake/CGAL/UseESBTL.cmake 169B
  4070. CGAL5/lib/cmake/CGAL/UseLASLIB.cmake 327B
  4071. CGAL5/lib/cmake/CGAL/UseOpenMesh.cmake 227B
  4072. CGAL5/lib/cmake/CGAL/UseTBB.cmake 409B
  4073. CGAL5/share/
  4074. CGAL5/share/doc/
  4075. CGAL5/share/doc/CGAL/
  4076. CGAL5/share/doc/CGAL/AUTHORS 1.68KB
  4077. CGAL5/share/doc/CGAL/CHANGES.md 274.34KB
  4078. CGAL5/share/doc/CGAL/LICENSE 2.12KB
  4079. CGAL5/share/doc/CGAL/LICENSE.GPL 34.32KB
  4080. CGAL5/share/doc/CGAL/LICENSE.LGPL 7.47KB
  4081. CGAL5/share/man/
  4082. CGAL5/share/man/man1/
  4083. CGAL5/share/man/man1/cgal_create_cmake_script.1 1.18KB
0评论
提交 加载更多评论
其他资源 ApkDownloader_XiaZaiBa.zip
ApkDownloader_XiaZaiBa.zip
三菱PLC项目案例学习之自动寻槽铣槽机 器件:三菱FX3UPLC,威纶通触摸屏,三菱伺服,基恩士光纤传感器,三菱变频器等 控
三菱PLC项目案例学习之自动寻槽铣槽机 器件:三菱FX3UPLC,威纶通触摸屏,三菱伺服,基恩士光纤传感器,三菱变频器等。 控制方式:PLC接收恩士光纤传感器信号控制伺服驱动器寻槽,寻槽后,变频器控制高速电机带动铣刀高速完成铣槽动作。 功能:维纶触摸屏做为人机界面,程序分:自动,手动,连续,单步,高数计数,脉冲控制,报警。 说明:是程序,非硬件。 程序有详细注释,变频器设置,接线图等。 有没有硬件不重要,重要的是编程思路和框架,框架学会了,用其它PLC没问题。
三菱PLC项目案例学习之自动寻槽铣槽机 
器件:三菱FX3UPLC,威纶通触摸屏,三菱伺服,基恩士光纤传感器,三菱变频器等 
控
台达DVP PLC与3台西门子V20变频器通讯程序 台达PLC与3台西门子变频器通讯,可靠稳定,同时解决西门子变频器断电重启后
台达DVP PLC与3台西门子V20变频器通讯程序 台达PLC与3台西门子变频器通讯,可靠稳定,同时解决西门子变频器断电重启后,自准备工作,无需人为准备。 器件:台达DVP 14es PLC,昆仑通态触摸屏,13台西门子V20系列变频器,附送接线说明和设置说明,昆仑通态MCGS程序,威纶通MT6070程序 功能:实现变频器的频率设定,启停控制,加减速时间设定,实际频率读取等,
台达DVP PLC与3台西门子V20变频器通讯程序 台达PLC与3台西门子变频器通讯,可靠稳定,同时解决西门子变频器断电重启后
C#联合halcon开发的通用视觉框架,可供初学者使用
C#联合halcon开发的通用视觉框架,可供初学者使用
C#联合halcon开发的通用视觉框架,可供初学者使用
ContextMenuManager.NET.4.0
一款调整windows系统鼠标右键查看更多属性的菜单选项的工具,美化UI界面,轻便简洁免安装
cs4.4 要用java1.8 没啥说的
如题反恐精英·4.4
SQLite ODBC 驱动,包含32位和64位
SQLite ODBC 驱动,包含32位和64位
1111111111111真实数据集
1111111111111真实数据集