├── .gitattributes ├── .github ├── actions │ └── gh-action-componentizer │ │ └── action.yml └── workflows │ ├── cpp-build.yml │ ├── doc-build.yml │ ├── gh-build.yml │ ├── publish-release.yml │ ├── py-sanity-check.yml │ ├── pypi-build.yml │ ├── test-pass.yml │ └── yak-build.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── CMakeLists.txt ├── LICENSE ├── README.md ├── assets ├── dataset │ ├── .gitkeep │ ├── 00_Additive │ │ ├── 00 │ │ │ └── Add_00_20240429144334.xml │ │ ├── 01 │ │ │ └── Add_01_20240429144729.xml │ │ └── 03 │ │ │ └── Add_03_20240503120834.xml │ ├── 01_Subtractive │ │ ├── 00 │ │ │ └── Sub_00_20240503105632.xml │ │ ├── 02 │ │ │ └── Sub_02_20240502192627.xml │ │ ├── 03 │ │ │ └── Sub_03_20240503114530.xml │ │ └── 04 │ │ │ └── Sub_04_20240502192836.xml │ ├── 02_Helpers │ │ ├── 240412_DS.pdf │ │ ├── diffcheckExport_rhino8.ghx │ │ └── geometryGeneration_rhino7.ghx │ └── mesh_fromRh_unfixedLength.ply ├── diagram │ └── rhdfexporter.drawio ├── icon_pool │ ├── icon.xcf │ ├── icon_assemblypreview.xcf │ ├── icon_base.png │ ├── icon_blu.png │ ├── icon_downsample_size.png │ ├── icon_downsample_uniform.png │ ├── icon_downsample_voxel.png │ ├── icon_export_ply.xcf │ ├── icon_export_serialization.xcf │ ├── icon_export_serialization_v2.xcf │ ├── icon_fastreg.png │ ├── icon_fastreg.xcf │ ├── icon_icpreg.png │ ├── icon_import_serialization_v1.xcf │ ├── icon_inspect_results.xcf │ ├── icon_large_assemblytoxml.png │ ├── icon_large_buildassembly.png │ ├── icon_large_deconstructassembly.png │ ├── icon_large_deconstructbeam.png │ ├── icon_ransactreg.png │ ├── icon_removebeam.xcf │ ├── icon_results.xcf │ ├── icon_small_buildassembly.png │ ├── icon_small_buildassembly.xcf │ ├── icon_small_deconstructassembly.png │ ├── icon_small_deconstructbeam.png │ ├── icon_small_xmlexport.png │ ├── icon_uniform_downsample.png │ ├── logo_pixelized_bwvioelt.png │ ├── normal.png │ ├── normal_cloud.png │ ├── normal_cloud.xcf │ ├── normal_segment.png │ ├── normal_segmenter.png │ ├── normal_segmenter.xcf │ ├── normal_v1.png │ └── scan_segmentation.png ├── img │ ├── demo.png │ ├── fig_scheme_softarch.png │ ├── gif_meshvisual.gif │ ├── placeholder_additive.png │ ├── placeholder_subtractive.png │ └── visualizer_diffCheck.gif └── logo │ ├── ViewCapture20240412_103050.png │ ├── logo_backblack.xcf │ ├── logo_pixelized.xcf │ ├── logo_pixelized_596_618.png │ ├── logo_pixelized_64_64.png │ ├── logo_pixelized_64_64.xcf │ ├── logo_pixelized_b.png │ ├── logo_pixelized_bw.png │ ├── logo_pixelized_bw.xcf │ ├── logo_pixelized_bwg.png │ ├── logo_pixelized_bwg.xcf │ ├── logo_pixelized_bwvioelt.png │ ├── logo_pixelized_bwvioelt_background.png │ ├── logo_pixelized_extracolor.png │ ├── logo_pixelized_extracolor.xcf │ ├── logo_raw.png │ ├── logotests.3dm │ └── logotests.3dmbak ├── cmake ├── __noenv__config.bat ├── activate_conda.bat ├── build.bat ├── build_run.bat ├── clean_config.bat ├── config.bat ├── external_tools.cmake ├── options.cmake └── tests.cmake ├── deps └── cgal │ ├── AUTHORS │ ├── CGALConfig.cmake │ ├── CGALConfigVersion.cmake │ ├── CHANGES.md │ ├── CMakeLists.txt │ ├── INSTALL.md │ ├── LICENSE │ ├── LICENSE.BSL │ ├── LICENSE.COMMERCIAL │ ├── LICENSE.GPL │ ├── LICENSE.LGPL │ ├── LICENSE.RFL │ ├── README │ ├── VERSION │ ├── auxiliary │ ├── cgal_app.icns │ ├── cgal_create_cmake_script.1 │ ├── gdb │ │ ├── python │ │ │ └── CGAL │ │ │ │ ├── __init__.py │ │ │ │ └── printers.py │ │ ├── test-gdb.py │ │ └── test.cpp │ └── gmp │ │ └── README │ ├── cmake │ └── modules │ │ ├── CGALConfigVersion_binary_header_only.cmake.in │ │ ├── CGALConfig_binary.cmake.in │ │ ├── CGALConfig_binary_header_only.cmake.in │ │ ├── CGALConfig_install.cmake.in │ │ ├── CGALLibConfig.cmake.in │ │ ├── CGAL_Boost_iostreams_support.cmake │ │ ├── CGAL_Boost_serialization_support.cmake │ │ ├── CGAL_Ceres_support.cmake │ │ ├── CGAL_CheckCXXFileRuns.cmake │ │ ├── CGAL_Common.cmake │ │ ├── CGAL_CreateSingleSourceCGALProgram.cmake │ │ ├── CGAL_Eigen3_support.cmake │ │ ├── CGAL_Eigen_support.cmake │ │ ├── CGAL_GLPK_support.cmake │ │ ├── CGAL_GeneratorSpecificSettings.cmake │ │ ├── CGAL_ITK_support.cmake │ │ ├── CGAL_LASLIB_support.cmake │ │ ├── CGAL_METIS_support.cmake │ │ ├── CGAL_Macros.cmake │ │ ├── CGAL_OSQP_support.cmake │ │ ├── CGAL_OpenCV_support.cmake │ │ ├── CGAL_OpenGR_support.cmake │ │ ├── CGAL_Qt5_moc_and_resource_files.cmake │ │ ├── CGAL_SCIP_support.cmake │ │ ├── CGAL_SCM.cmake │ │ ├── CGAL_SetupBoost.cmake │ │ ├── CGAL_SetupCGALDependencies.cmake │ │ ├── CGAL_SetupCGAL_CoreDependencies.cmake │ │ ├── CGAL_SetupCGAL_ImageIODependencies.cmake │ │ ├── CGAL_SetupCGAL_Qt5Dependencies.cmake │ │ ├── CGAL_SetupDependencies.cmake │ │ ├── CGAL_SetupFlags.cmake │ │ ├── CGAL_SetupGMP.cmake │ │ ├── CGAL_SetupLEDA.cmake │ │ ├── CGAL_SetupVLD.cmake │ │ ├── CGAL_TBB_support.cmake │ │ ├── CGAL_TweakFindBoost.cmake │ │ ├── CGAL_UseLEDA.cmake │ │ ├── CGAL_UseMKL.cmake │ │ ├── CGAL_UseMPFI.cmake │ │ ├── CGAL_UseRS.cmake │ │ ├── CGAL_UseRS3.cmake │ │ ├── CGAL_VersionUtils.cmake │ │ ├── CGAL_add_test.cmake │ │ ├── CGAL_display_flags.cmake │ │ ├── CGAL_enable_end_of_configuration_hook.cmake │ │ ├── CGAL_parse_version_h.cmake │ │ ├── CGAL_pointmatcher_support.cmake │ │ ├── CGAL_setup_target_dependencies.cmake │ │ ├── CGAL_target_use_TBB.cmake │ │ ├── FindCORE.cmake │ │ ├── FindESBTL.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindF2C.cmake │ │ ├── FindGLPK.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGMPXX.cmake │ │ ├── FindIPE.cmake │ │ ├── FindITT.cmake │ │ ├── FindLASLIB.cmake │ │ ├── FindLEDA.cmake │ │ ├── FindLibSSH.cmake │ │ ├── FindMETIS.cmake │ │ ├── FindMKL.cmake │ │ ├── FindMPFI.cmake │ │ ├── FindMPFR.cmake │ │ ├── FindNTL.cmake │ │ ├── FindOSQP.cmake │ │ ├── FindOpenMesh.cmake │ │ ├── FindRS.cmake │ │ ├── FindRS3.cmake │ │ ├── FindSuiteSparse.cmake │ │ ├── FindTBB.cmake │ │ ├── Help │ │ ├── CGAL_SetupBoost.rst │ │ ├── CGAL_SetupCGALDependencies.rst │ │ ├── CGAL_SetupCGAL_CoreDependencies.rst │ │ ├── CGAL_SetupCGAL_ImageIODependencies.rst │ │ ├── CGAL_SetupCGAL_Qt5Dependencies.rst │ │ ├── CGAL_SetupGMP.rst │ │ ├── CGAL_SetupLEDA.rst │ │ ├── cmake.py │ │ ├── conf.py │ │ └── index.rst │ │ ├── UseCGAL.cmake │ │ ├── UseESBTL.cmake │ │ ├── UseEigen3.cmake │ │ ├── UseLASLIB.cmake │ │ ├── UseOpenMesh.cmake │ │ ├── UseTBB.cmake │ │ ├── config │ │ ├── support │ │ │ ├── CGAL_test_cpp_version.cpp │ │ │ ├── print_BOOST_version.cpp │ │ │ ├── print_GCC_version.cpp │ │ │ ├── print_GMP_version.cpp │ │ │ ├── print_IntelCompiler_version.cpp │ │ │ ├── print_LEDA_version.cpp │ │ │ ├── print_MPFI_version.cpp │ │ │ ├── print_MPFR_version.cpp │ │ │ ├── print_OPENGL_version.cpp │ │ │ ├── print_QT4_version.cpp │ │ │ ├── print_QT_version.cpp │ │ │ ├── print_ZLIB_version.cpp │ │ │ ├── test_BOOST.cpp │ │ │ ├── test_BOOST_PROGRAM_OPTIONS.cpp │ │ │ ├── test_BOOST_THREAD.cpp │ │ │ ├── test_GMP.cpp │ │ │ ├── test_GMPXX.cpp │ │ │ ├── test_LEDA.cpp │ │ │ ├── test_LEDAWIN.cpp │ │ │ ├── test_LIDIA.cpp │ │ │ ├── test_MPFR.cpp │ │ │ ├── test_OPENGL.cpp │ │ │ ├── test_QT.cpp │ │ │ ├── test_X11.cpp │ │ │ ├── test_ZLIB.cpp │ │ │ └── test_syntaxonly.cpp │ │ ├── testfiles │ │ │ ├── CGAL_CFG_DENORMALS_COMPILE_BUG.cpp │ │ │ ├── CGAL_CFG_FPU_ROUNDING_MODE_UNWINDING_VC_BUG.cpp │ │ │ ├── CGAL_CFG_IEEE_754_BUG.cpp │ │ │ ├── CGAL_CFG_ISTREAM_INT_BUG.cpp │ │ │ ├── CGAL_CFG_MATCHING_BUG_5.cpp │ │ │ ├── CGAL_CFG_MATCHING_BUG_6.cpp │ │ │ ├── CGAL_CFG_MATCHING_BUG_7.cpp │ │ │ ├── CGAL_CFG_MATCHING_BUG_8.cpp │ │ │ ├── CGAL_CFG_NO_LIMITS.cpp │ │ │ ├── CGAL_CFG_NO_NEXTAFTER.cpp │ │ │ ├── CGAL_CFG_NO_STL.cpp │ │ │ ├── CGAL_CFG_NUMERIC_LIMITS_BUG.cpp │ │ │ ├── CGAL_CFG_OUTOFLINE_MEMBER_DEFINITION_BUG.cpp │ │ │ ├── CGAL_CFG_TEMPLATE_IN_DEFAULT_PARAMETER_BUG.cpp │ │ │ ├── CGAL_CFG_TYPENAME_BEFORE_DEFAULT_ARGUMENT_BUG.cpp │ │ │ └── CGAL_CFG_USING_BASE_MEMBER_BUG_2.cpp │ │ └── version.h.in │ │ ├── demo │ │ ├── icons │ │ │ ├── Delaunay_triangulation_2.png │ │ │ ├── File.qrc │ │ │ ├── Input.qrc │ │ │ ├── Triangulation_2.qrc │ │ │ ├── Voronoi_diagram_2.png │ │ │ ├── fileNew.png │ │ │ ├── fileOpen.png │ │ │ ├── fileSave.png │ │ │ ├── fit-page-32.png │ │ │ ├── inputPoint.png │ │ │ ├── inputPoint.svg │ │ │ ├── inputPolyline.png │ │ │ ├── license.txt │ │ │ ├── zoom-best-fit.png │ │ │ └── zoom-best-fit.svg │ │ └── resources │ │ │ ├── CGAL.qrc │ │ │ ├── about_CGAL.html │ │ │ ├── cgal_logo.xpm │ │ │ └── cgal_logo_ipe_2013.png │ │ ├── list_of_whitelisted_headers.cmake │ │ ├── process_dependencies.cmake │ │ ├── run_cmd_redirection_cerr.cmake │ │ ├── run_test_with_cin.cmake │ │ └── test_MPFI.cpp │ ├── doc_html │ ├── Manual │ │ ├── index.html │ │ └── packages.html │ ├── cgal.css │ ├── cgal.ico │ ├── images │ │ └── cgal_2013_grey.png │ └── index.html │ ├── include │ └── CGAL │ │ ├── AABB_face_graph_triangle_primitive.h │ │ ├── AABB_halfedge_graph_segment_primitive.h │ │ ├── AABB_polyhedral_oracle.h │ │ ├── AABB_polyhedron_segment_primitive.h │ │ ├── AABB_polyhedron_triangle_primitive.h │ │ ├── AABB_primitive.h │ │ ├── AABB_segment_primitive.h │ │ ├── AABB_traits.h │ │ ├── AABB_tree.h │ │ ├── AABB_tree │ │ └── internal │ │ │ ├── AABB_drawing_traits.h │ │ │ ├── AABB_node.h │ │ │ ├── AABB_ray_intersection.h │ │ │ ├── AABB_search_tree.h │ │ │ ├── AABB_traversal_traits.h │ │ │ ├── Has_nested_type_Shared_data.h │ │ │ ├── Is_ray_intersection_geomtraits.h │ │ │ ├── Primitive_helper.h │ │ │ └── triangle_datum_covering.h │ │ ├── AABB_triangle_primitive.h │ │ ├── AABB_triangulation_3_cell_primitive.h │ │ ├── AABB_triangulation_3_triangle_primitive.h │ │ ├── Advancing_front_surface_reconstruction.h │ │ ├── Advancing_front_surface_reconstruction │ │ └── internal │ │ │ ├── Surface_face_base_2.h │ │ │ ├── Surface_vertex_base_2.h │ │ │ ├── construct_polyhedron.h │ │ │ ├── construct_surface_2.h │ │ │ └── write_triple_indices.h │ │ ├── Advancing_front_surface_reconstruction_cell_base_3.h │ │ ├── Advancing_front_surface_reconstruction_vertex_base_3.h │ │ ├── Aff_transformation_2.h │ │ ├── Aff_transformation_3.h │ │ ├── Algebraic_extension_traits.h │ │ ├── Algebraic_kernel_converter.h │ │ ├── Algebraic_kernel_d │ │ ├── Algebraic_curve_kernel_2.h │ │ ├── Algebraic_real_d_1.h │ │ ├── Algebraic_real_quadratic_refinement_rep_bfi.h │ │ ├── Algebraic_real_rep.h │ │ ├── Algebraic_real_rep_bfi.h │ │ ├── Bitstream_coefficient_kernel.h │ │ ├── Bitstream_coefficient_kernel_at_alpha.h │ │ ├── Bitstream_descartes.h │ │ ├── Bitstream_descartes_E08_tree.h │ │ ├── Bitstream_descartes_rndl_tree.h │ │ ├── Bitstream_descartes_rndl_tree_traits.h │ │ ├── Curve_analysis_2.h │ │ ├── Curve_pair_analysis_2.h │ │ ├── Descartes.h │ │ ├── Event_line_builder.h │ │ ├── Float_traits.h │ │ ├── Interval_evaluate_1.h │ │ ├── Interval_evaluate_2.h │ │ ├── LRU_hashed_map.h │ │ ├── Real_embeddable_extension.h │ │ ├── Real_roots.h │ │ ├── Shear_controller.h │ │ ├── Shear_transformation.h │ │ ├── Status_line_CA_1.h │ │ ├── Status_line_CPA_1.h │ │ ├── Xy_coordinate_2.h │ │ ├── algebraic_curve_kernel_2_tools.h │ │ ├── bound_between_1.h │ │ ├── construct_binary.h │ │ ├── enums.h │ │ ├── exceptions.h │ │ ├── flags.h │ │ ├── macros.h │ │ ├── refine_zero_against.h │ │ ├── shear.h │ │ └── univariate_polynomial_utils.h │ │ ├── Algebraic_kernel_d_1.h │ │ ├── Algebraic_kernel_d_2.h │ │ ├── Algebraic_kernel_for_circles │ │ ├── function_objects_on_roots_and_polynomials_2_2.h │ │ ├── internal_functions_comparison_root_for_circles_2_2.h │ │ ├── internal_functions_on_roots_and_polynomial_1_2_and_2_2.h │ │ └── internal_functions_on_roots_and_polynomials_2_2.h │ │ ├── Algebraic_kernel_for_circles_2_2.h │ │ ├── Algebraic_kernel_for_spheres │ │ ├── function_objects_on_roots_and_polynomials_2_3.h │ │ ├── internal_functions_comparison_root_for_spheres_2_3.h │ │ ├── internal_functions_on_roots_and_polynomial_1_3_and_2_3.h │ │ ├── internal_functions_on_roots_and_polynomials_1_3.h │ │ └── internal_functions_on_roots_and_polynomials_2_3.h │ │ ├── Algebraic_kernel_for_spheres_2_3.h │ │ ├── Algebraic_kernel_rs_gmpq_d_1.h │ │ ├── Algebraic_kernel_rs_gmpz_d_1.h │ │ ├── Algebraic_structure_traits.h │ │ ├── Alpha_shape_2.h │ │ ├── Alpha_shape_3.h │ │ ├── Alpha_shape_cell_base_3.h │ │ ├── Alpha_shape_face_base_2.h │ │ ├── Alpha_shape_vertex_base_2.h │ │ ├── Alpha_shape_vertex_base_3.h │ │ ├── Alpha_shapes_2 │ │ └── internal │ │ │ └── Lazy_alpha_nt_2.h │ │ ├── Alpha_shapes_3 │ │ └── internal │ │ │ ├── Classification_type.h │ │ │ └── Lazy_alpha_nt_3.h │ │ ├── Alpha_wrap_3 │ │ └── internal │ │ │ ├── Alpha_wrap_3.h │ │ │ ├── Alpha_wrap_AABB_geom_traits.h │ │ │ ├── Oracle_base.h │ │ │ ├── Point_set_oracle.h │ │ │ ├── Segment_soup_oracle.h │ │ │ ├── Triangle_mesh_oracle.h │ │ │ ├── Triangle_soup_oracle.h │ │ │ ├── gate_priority_queue.h │ │ │ ├── geometry_utils.h │ │ │ ├── offset_intersection.h │ │ │ ├── oracles.h │ │ │ └── splitting_helper.h │ │ ├── Apollonius_graph_2.h │ │ ├── Apollonius_graph_2 │ │ ├── Apollonius_graph_2_impl.h │ │ ├── Apollonius_graph_hierarchy_2_impl.h │ │ ├── Bounded_side_of_ccw_circle_C2.h │ │ ├── Compare_weight_2.h │ │ ├── Compare_x_2.h │ │ ├── Compare_y_2.h │ │ ├── Constructions_C2.h │ │ ├── Constructions_ftC2.h │ │ ├── Constructions_rtH2.h │ │ ├── Finite_edge_test8_C2.h │ │ ├── Finite_edge_test_C2.h │ │ ├── Incircle8_C2.h │ │ ├── Incircle_C2.h │ │ ├── Infinite_edge_test_C2.h │ │ ├── Is_degenerate_edge_C2.h │ │ ├── Is_hidden_C2.h │ │ ├── Kernel_wrapper_2.h │ │ ├── Orientation8_C2.h │ │ ├── Orientation_2.h │ │ ├── Oriented_side_of_bisector_C2.h │ │ ├── Predicate_constructions_C2.h │ │ ├── Predicates_C2.h │ │ ├── Traits_wrapper_2.h │ │ ├── basic.h │ │ ├── comparator_profiler.h │ │ ├── compare_quadratic.h │ │ ├── predicate_profiler.h │ │ └── uncertain │ │ │ ├── Uncertain_is_hidden_C2.h │ │ │ ├── Uncertain_oriented_side_of_bisector_C2.h │ │ │ ├── Uncertain_vertex_conflict_2.h │ │ │ └── uncertain_functions_on_signs.h │ │ ├── Apollonius_graph_adaptation_policies_2.h │ │ ├── Apollonius_graph_adaptation_traits_2.h │ │ ├── Apollonius_graph_data_structure_2.h │ │ ├── Apollonius_graph_filtered_traits_2.h │ │ ├── Apollonius_graph_hierarchy_2.h │ │ ├── Apollonius_graph_hierarchy_vertex_base_2.h │ │ ├── Apollonius_graph_traits_2.h │ │ ├── Apollonius_graph_vertex_base_2.h │ │ ├── Apollonius_site_2.h │ │ ├── Approximate_min_ellipsoid_d.h │ │ ├── Approximate_min_ellipsoid_d │ │ ├── Approximate_min_ellipsoid_d_configure.h │ │ ├── Approximate_min_ellipsoid_d_debug.h │ │ ├── Approximate_min_ellipsoid_d_impl.h │ │ ├── Khachiyan_approximation.h │ │ └── Khachiyan_approximation_impl.h │ │ ├── Approximate_min_ellipsoid_d_traits_2.h │ │ ├── Approximate_min_ellipsoid_d_traits_3.h │ │ ├── Approximate_min_ellipsoid_d_traits_d.h │ │ ├── Arithmetic_kernel.h │ │ ├── Arithmetic_kernel │ │ └── Arithmetic_kernel_base.h │ │ ├── Arr_Bezier_curve_traits_2.h │ │ ├── Arr_accessor.h │ │ ├── Arr_algebraic_segment_traits_2.h │ │ ├── Arr_batched_point_location.h │ │ ├── Arr_bounded_planar_topology_traits_2.h │ │ ├── Arr_circle_segment_traits_2.h │ │ ├── Arr_circular_arc_traits_2.h │ │ ├── Arr_circular_line_arc_traits_2.h │ │ ├── Arr_conic_traits_2.h │ │ ├── Arr_consolidated_curve_data_traits_2.h │ │ ├── Arr_counting_traits_2.h │ │ ├── Arr_curve_data_traits_2.h │ │ ├── Arr_dcel_base.h │ │ ├── Arr_default_dcel.h │ │ ├── Arr_default_overlay_traits.h │ │ ├── Arr_directional_non_caching_segment_basic_traits_2.h │ │ ├── Arr_enums.h │ │ ├── Arr_extended_dcel.h │ │ ├── Arr_face_index_map.h │ │ ├── Arr_face_map.h │ │ ├── Arr_geodesic_arc_on_sphere_partition_traits_2.h │ │ ├── Arr_geodesic_arc_on_sphere_traits_2.h │ │ ├── Arr_geometry_traits │ │ ├── Arr_plane_3.h │ │ ├── Bezier_bounding_rational_traits.h │ │ ├── Bezier_cache.h │ │ ├── Bezier_curve_2.h │ │ ├── Bezier_point_2.h │ │ ├── Bezier_x_monotone_2.h │ │ ├── Circle_segment_2.h │ │ ├── Conic_arc_2.h │ │ ├── Conic_intersections_2.h │ │ ├── Conic_point_2.h │ │ ├── Conic_x_monotone_arc_2.h │ │ ├── Consolidated_curve_data_aux.h │ │ ├── Curve_data_aux.h │ │ ├── IO │ │ │ └── Polycurve_2_iostream.h │ │ ├── One_root_number.h │ │ ├── Polycurve_2.h │ │ ├── Polyline_2.h │ │ ├── Rational_arc_2.h │ │ ├── Segment_assertions.h │ │ └── de_Casteljau_2.h │ │ ├── Arr_landmarks_point_location.h │ │ ├── Arr_line_arc_traits_2.h │ │ ├── Arr_linear_traits_2.h │ │ ├── Arr_naive_point_location.h │ │ ├── Arr_non_caching_segment_basic_traits_2.h │ │ ├── Arr_non_caching_segment_traits_2.h │ │ ├── Arr_observer.h │ │ ├── Arr_overlay.h │ │ ├── Arr_overlay_2.h │ │ ├── Arr_point_location │ │ ├── Arr_batched_point_location_traits_2.h │ │ ├── Arr_landmarks_pl_impl.h │ │ ├── Arr_lm_generator_base.h │ │ ├── Arr_lm_grid_generator.h │ │ ├── Arr_lm_halton_generator.h │ │ ├── Arr_lm_middle_edges_generator.h │ │ ├── Arr_lm_nearest_neighbor.h │ │ ├── Arr_lm_random_generator.h │ │ ├── Arr_lm_specified_points_generator.h │ │ ├── Arr_lm_vertices_generator.h │ │ ├── Arr_naive_point_location_impl.h │ │ ├── Arr_simple_point_location_impl.h │ │ ├── Arr_trapezoid_ric_pl_impl.h │ │ ├── Arr_triangulation_pl_functions.h │ │ ├── Arr_triangulation_pl_impl.h │ │ ├── Arr_walk_along_line_pl_impl.h │ │ ├── Td_X_trapezoid.h │ │ ├── Td_active_edge.h │ │ ├── Td_active_fictitious_vertex.h │ │ ├── Td_active_trapezoid.h │ │ ├── Td_active_vertex.h │ │ ├── Td_dag.h │ │ ├── Td_dag_node.h │ │ ├── Td_inactive_edge.h │ │ ├── Td_inactive_fictitious_vertex.h │ │ ├── Td_inactive_trapezoid.h │ │ ├── Td_inactive_vertex.h │ │ ├── Td_ninetuple.h │ │ ├── Td_predicates.h │ │ ├── Td_traits.h │ │ ├── Trapezoidal_decomposition_2.h │ │ ├── Trapezoidal_decomposition_2_impl.h │ │ ├── Trapezoidal_decomposition_2_iostream.h │ │ └── Trapezoidal_decomposition_2_misc.h │ │ ├── Arr_point_location_result.h │ │ ├── Arr_polycurve_basic_traits_2.h │ │ ├── Arr_polycurve_traits_2.h │ │ ├── Arr_polyline_traits_2.h │ │ ├── Arr_rat_arc │ │ ├── Algebraic_point_2.h │ │ ├── Base_rational_arc_ds_1.h │ │ ├── Cache.h │ │ ├── Rational_arc_d_1.h │ │ ├── Rational_function.h │ │ ├── Rational_function_canonicalized_pair.h │ │ ├── Rational_function_ordered_pair.h │ │ ├── Rational_function_pair.h │ │ └── Singleton.h │ │ ├── Arr_rational_function_traits_2.h │ │ ├── Arr_segment_traits_2.h │ │ ├── Arr_simple_point_location.h │ │ ├── Arr_spherical_gaussian_map_3 │ │ ├── Arr_on_sphere_transformation.h │ │ ├── Arr_polyhedral_sgm.h │ │ ├── Arr_polyhedral_sgm_arr_dcel.h │ │ ├── Arr_polyhedral_sgm_initializer_visitor.h │ │ ├── Arr_polyhedral_sgm_overlay.h │ │ ├── Arr_polyhedral_sgm_polyhedron_3.h │ │ ├── Arr_polyhedral_sgm_traits.h │ │ ├── Arr_polyhedral_sgm_transformation.h │ │ ├── Arr_spherical_gaussian_map_3.h │ │ └── Arr_transform_on_sphere.h │ │ ├── Arr_spherical_topology_traits_2.h │ │ ├── Arr_tags.h │ │ ├── Arr_topology_traits │ │ ├── Arr_bounded_planar_batched_pl_helper.h │ │ ├── Arr_bounded_planar_construction_helper.h │ │ ├── Arr_bounded_planar_insertion_helper.h │ │ ├── Arr_bounded_planar_overlay_helper.h │ │ ├── Arr_bounded_planar_topology_traits_2_impl.h │ │ ├── Arr_bounded_planar_vert_decomp_helper.h │ │ ├── Arr_inc_insertion_zone_visitor.h │ │ ├── Arr_planar_topology_traits_base_2.h │ │ ├── Arr_spherical_batched_pl_helper.h │ │ ├── Arr_spherical_construction_helper.h │ │ ├── Arr_spherical_insertion_helper.h │ │ ├── Arr_spherical_overlay_helper.h │ │ ├── Arr_spherical_topology_traits_2_impl.h │ │ ├── Arr_spherical_vert_decomp_helper.h │ │ ├── Arr_unb_planar_batched_pl_helper.h │ │ ├── Arr_unb_planar_construction_helper.h │ │ ├── Arr_unb_planar_insertion_helper.h │ │ ├── Arr_unb_planar_overlay_helper.h │ │ ├── Arr_unb_planar_topology_traits_2_impl.h │ │ └── Arr_unb_planar_vert_decomp_helper.h │ │ ├── Arr_tracing_traits_2.h │ │ ├── Arr_trapezoid_ric_point_location.h │ │ ├── Arr_triangulation_point_location.h │ │ ├── Arr_unb_planar_topology_traits_2.h │ │ ├── Arr_vertex_index_map.h │ │ ├── Arr_vertex_map.h │ │ ├── Arr_vertical_decomposition_2.h │ │ ├── Arr_walk_along_line_point_location.h │ │ ├── Arrangement_2.h │ │ ├── Arrangement_2 │ │ ├── Arr_compute_zone_visitor.h │ │ ├── Arr_default_planar_topology.h │ │ ├── Arr_do_intersect_zone_visitor.h │ │ ├── Arr_on_surface_with_history_2_impl.h │ │ ├── Arr_traits_adaptor_2.h │ │ ├── Arr_traits_adaptor_2_dispatching.h │ │ ├── Arr_with_history_accessor.h │ │ ├── Arrangement_2_iterators.h │ │ ├── Arrangement_on_surface_2_global.h │ │ ├── Arrangement_on_surface_2_impl.h │ │ ├── Arrangement_zone_2_impl.h │ │ ├── arrangement_type_traits.h │ │ └── graph_traits_dual.h │ │ ├── Arrangement_on_surface_2.h │ │ ├── Arrangement_on_surface_with_history_2.h │ │ ├── Arrangement_with_history_2.h │ │ ├── Arrangement_zone_2.h │ │ ├── BOOST_MP_arithmetic_kernel.h │ │ ├── Barycentric_coordinates_2.h │ │ ├── Barycentric_coordinates_2 │ │ ├── Delaunay_domain_2.h │ │ ├── Discrete_harmonic_2.h │ │ ├── Discrete_harmonic_coordinates_2.h │ │ ├── Generalized_barycentric_coordinates_2.h │ │ ├── Harmonic_coordinates_2.h │ │ ├── Mean_value_2.h │ │ ├── Mean_value_coordinates_2.h │ │ ├── Wachspress_2.h │ │ ├── Wachspress_coordinates_2.h │ │ ├── barycentric_enum_2.h │ │ ├── boundary_coordinates_2.h │ │ ├── internal │ │ │ └── utils_2.h │ │ ├── segment_coordinates_2.h │ │ └── triangle_coordinates_2.h │ │ ├── Base_with_time_stamp.h │ │ ├── Basic_shaders.h │ │ ├── Bbox_2.h │ │ ├── Bbox_3.h │ │ ├── Bigfloat_interval_traits.h │ │ ├── Boolean_set_operations_2.h │ │ ├── Boolean_set_operations_2 │ │ ├── Bso_internal_functions.h │ │ ├── Ccb_curve_iterator.h │ │ ├── Curve_with_halfedge.h │ │ ├── Gps_agg_meta_traits.h │ │ ├── Gps_agg_op.h │ │ ├── Gps_agg_op_surface_sweep_2.h │ │ ├── Gps_agg_op_visitor.h │ │ ├── Gps_base_functor.h │ │ ├── Gps_bfs_base_visitor.h │ │ ├── Gps_bfs_intersection_visitor.h │ │ ├── Gps_bfs_join_visitor.h │ │ ├── Gps_bfs_scanner.h │ │ ├── Gps_bfs_xor_visitor.h │ │ ├── Gps_default_dcel.h │ │ ├── Gps_default_traits.h │ │ ├── Gps_difference_functor.h │ │ ├── Gps_do_intersect_functor.h │ │ ├── Gps_insertion_meta_traits.h │ │ ├── Gps_intersection_functor.h │ │ ├── Gps_join_functor.h │ │ ├── Gps_merge.h │ │ ├── Gps_on_surface_base_2.h │ │ ├── Gps_on_surface_base_2_impl.h │ │ ├── Gps_polygon_simplifier.h │ │ ├── Gps_polygon_validation.h │ │ ├── Gps_simplifier_traits.h │ │ ├── Gps_sym_diff_functor.h │ │ ├── Gps_traits_adaptor.h │ │ ├── Gps_traits_decorator.h │ │ ├── Indexed_event.h │ │ ├── Point_with_vertex.h │ │ ├── Polygon_2_curve_iterator.h │ │ ├── Polygon_conversions.h │ │ ├── complement.h │ │ ├── difference.h │ │ ├── do_intersect.h │ │ ├── intersection.h │ │ ├── join.h │ │ ├── oriented_side.h │ │ └── symmetric_difference.h │ │ ├── Bounded_kernel.h │ │ ├── Box_intersection_d │ │ ├── Box_d.h │ │ ├── Box_traits_d.h │ │ ├── Box_with_handle_d.h │ │ ├── Box_with_info_d.h │ │ ├── box_limits.h │ │ └── segment_tree.h │ │ ├── Buffer_for_vao.h │ │ ├── CC_safe_handle.h │ │ ├── CGAL_Ipelet_base.h │ │ ├── CGAL_Ipelet_base_v6.h │ │ ├── CGAL_Ipelet_base_v7.h │ │ ├── CMap_linear_cell_complex_storages.h │ │ ├── CMap_linear_cell_complex_storages_with_index.h │ │ ├── CORE │ │ ├── BigFloat.h │ │ ├── BigFloatRep.h │ │ ├── BigFloat_impl.h │ │ ├── BigInt.h │ │ ├── BigRat.h │ │ ├── CORE.h │ │ ├── Config.h │ │ ├── CoreAux.h │ │ ├── CoreAux_impl.h │ │ ├── CoreDefs.h │ │ ├── CoreDefs_impl.h │ │ ├── CoreIO_impl.h │ │ ├── Expr.h │ │ ├── ExprRep.h │ │ ├── Expr_impl.h │ │ ├── Filter.h │ │ ├── Gmp.h │ │ ├── Gmp_impl.h │ │ ├── Impl.h │ │ ├── MemoryPool.h │ │ ├── Promote.h │ │ ├── Real.h │ │ ├── RealRep.h │ │ ├── Real_impl.h │ │ ├── RefCount.h │ │ ├── Timer.h │ │ ├── extLong.h │ │ ├── extLong_impl.h │ │ ├── linearAlgebra.h │ │ └── poly │ │ │ ├── Curves.h │ │ │ ├── Curves.tcc │ │ │ ├── Poly.h │ │ │ ├── Poly.tcc │ │ │ └── Sturm.h │ │ ├── CORE_BigFloat.h │ │ ├── CORE_BigInt.h │ │ ├── CORE_BigRat.h │ │ ├── CORE_Expr.h │ │ ├── CORE_algebraic_number_traits.h │ │ ├── CORE_arithmetic_kernel.h │ │ ├── CORE_coercion_traits.h │ │ ├── Cache.h │ │ ├── Cartesian.h │ │ ├── Cartesian │ │ ├── Aff_transformation_2.h │ │ ├── Aff_transformation_3.h │ │ ├── Aff_transformation_rep_2.h │ │ ├── Aff_transformation_rep_3.h │ │ ├── Cartesian_base.h │ │ ├── Circle_2.h │ │ ├── Circle_3.h │ │ ├── ConicCPA2.h │ │ ├── Data_accessor_2.h │ │ ├── Direction_2.h │ │ ├── Direction_3.h │ │ ├── Is_trivial_construction.h │ │ ├── Iso_cuboid_3.h │ │ ├── Iso_rectangle_2.h │ │ ├── Line_2.h │ │ ├── Line_3.h │ │ ├── MatrixC33.h │ │ ├── Plane_3.h │ │ ├── Point_2.h │ │ ├── Point_3.h │ │ ├── Ray_2.h │ │ ├── Ray_3.h │ │ ├── Reflection_rep_2.h │ │ ├── Rotation_rep_2.h │ │ ├── Scaling_rep_2.h │ │ ├── Scaling_rep_3.h │ │ ├── Segment_2.h │ │ ├── Segment_3.h │ │ ├── Sphere_3.h │ │ ├── Tetrahedron_3.h │ │ ├── Translation_rep_2.h │ │ ├── Translation_rep_3.h │ │ ├── Triangle_2.h │ │ ├── Triangle_3.h │ │ ├── Vector_2.h │ │ ├── Vector_3.h │ │ ├── Weighted_point_2.h │ │ ├── Weighted_point_3.h │ │ ├── basic_constructions_2.h │ │ ├── basic_constructions_3.h │ │ ├── ft_constructions_2.h │ │ ├── ft_constructions_3.h │ │ ├── function_objects.h │ │ ├── line_constructions_2.h │ │ ├── plane_constructions_3.h │ │ ├── point_constructions_2.h │ │ ├── point_constructions_3.h │ │ ├── predicates_on_directions_2.h │ │ ├── predicates_on_planes_3.h │ │ ├── predicates_on_points_2.h │ │ ├── predicates_on_points_3.h │ │ └── solve_3.h │ │ ├── Cartesian_converter.h │ │ ├── Cartesian_converter_fwd.h │ │ ├── Cartesian_d.h │ │ ├── Cartesian_matrix.h │ │ ├── Cell_attribute.h │ │ ├── Cell_attribute_with_id.h │ │ ├── Cell_attribute_with_point.h │ │ ├── Cell_attribute_with_point_and_id.h │ │ ├── Cell_const_iterators.h │ │ ├── Cell_iterators.h │ │ ├── Chinese_remainder_traits.h │ │ ├── Circle_2.h │ │ ├── Circle_3.h │ │ ├── Circle_type.h │ │ ├── Circular_arc_2.h │ │ ├── Circular_arc_3.h │ │ ├── Circular_arc_point_2.h │ │ ├── Circular_arc_point_3.h │ │ ├── Circular_kernel_2.h │ │ ├── Circular_kernel_2 │ │ ├── Circular_arc_2.h │ │ ├── Circular_arc_point_2.h │ │ ├── Intersection_traits.h │ │ ├── Line_arc_2.h │ │ ├── function_objects_on_circle_2.h │ │ ├── function_objects_on_line_2.h │ │ ├── function_objects_polynomial_circular.h │ │ ├── interface_macros.h │ │ ├── internal_functions_on_circle_2.h │ │ ├── internal_functions_on_circular_arc_2.h │ │ ├── internal_functions_on_line_2.h │ │ ├── internal_functions_on_line_arc_2.h │ │ └── intersection_line_2_circle_2_map.h │ │ ├── Circular_kernel_3 │ │ ├── Circular_arc_3.h │ │ ├── Circular_arc_point_3.h │ │ ├── Intersection_traits.h │ │ ├── Line_arc_3.h │ │ ├── function_objects_polynomial_sphere.h │ │ ├── get_equation_object_on_curved_kernel_3.h │ │ ├── interface_macros.h │ │ ├── internal_function_compare_spherical_kernel.h │ │ ├── internal_function_compare_to_right_spherical_kernel.h │ │ ├── internal_function_has_on_spherical_kernel.h │ │ ├── internal_functions_on_circle_3.h │ │ ├── internal_functions_on_circular_arc_3.h │ │ ├── internal_functions_on_circular_arc_point_3.h │ │ ├── internal_functions_on_line_3.h │ │ ├── internal_functions_on_line_arc_3.h │ │ ├── internal_functions_on_plane_3.h │ │ └── internal_functions_on_sphere_3.h │ │ ├── Circular_kernel_converter.h │ │ ├── Circular_kernel_intersections.h │ │ ├── Circular_kernel_type_equality_wrapper.h │ │ ├── Circulator │ │ ├── Circulator_adapters.h │ │ ├── Circulator_concepts.h │ │ └── Safe_circulator_from_iterator.h │ │ ├── Circulator_identity.h │ │ ├── Circulator_on_node.h │ │ ├── Circulator_project.h │ │ ├── Classification.h │ │ ├── Classification │ │ ├── Cluster.h │ │ ├── ETHZ │ │ │ ├── Random_forest_classifier.h │ │ │ └── internal │ │ │ │ ├── dataview.h │ │ │ │ └── random-forest │ │ │ │ ├── common-libraries.hpp │ │ │ │ ├── forest.hpp │ │ │ │ ├── node-gini.hpp │ │ │ │ ├── node.hpp │ │ │ │ └── tree.hpp │ │ ├── Evaluation.h │ │ ├── Feature │ │ │ ├── Cluster_mean_of_feature.h │ │ │ ├── Cluster_size.h │ │ │ ├── Cluster_variance_of_feature.h │ │ │ ├── Cluster_vertical_extent.h │ │ │ ├── Color_channel.h │ │ │ ├── Distance_to_plane.h │ │ │ ├── Echo_scatter.h │ │ │ ├── Eigenvalue.h │ │ │ ├── Elevation.h │ │ │ ├── Gradient_of_feature.h │ │ │ ├── Height_above.h │ │ │ ├── Height_below.h │ │ │ ├── Simple_feature.h │ │ │ ├── Vertical_dispersion.h │ │ │ ├── Vertical_range.h │ │ │ └── Verticality.h │ │ ├── Feature_base.h │ │ ├── Feature_set.h │ │ ├── Image.h │ │ ├── Label.h │ │ ├── Label_set.h │ │ ├── Local_eigen_analysis.h │ │ ├── Mesh_feature_generator.h │ │ ├── Mesh_neighborhood.h │ │ ├── OpenCV │ │ │ └── Random_forest_classifier.h │ │ ├── Planimetric_grid.h │ │ ├── Point_set_feature_generator.h │ │ ├── Point_set_neighborhood.h │ │ ├── Sum_of_weighted_features_classifier.h │ │ ├── classify.h │ │ ├── compressed_float.h │ │ ├── internal │ │ │ └── verbosity.h │ │ └── property_maps.h │ │ ├── Coercion_traits.h │ │ ├── Combination_enumerator.h │ │ ├── Combinatorial_map.h │ │ ├── Combinatorial_map │ │ └── internal │ │ │ ├── Combinatorial_map_copy_functors.h │ │ │ ├── Combinatorial_map_group_functors.h │ │ │ ├── Combinatorial_map_internal_functors.h │ │ │ ├── Combinatorial_map_sewable.h │ │ │ └── Combinatorial_map_utility.h │ │ ├── Combinatorial_map_basic_operations.h │ │ ├── Combinatorial_map_functors.h │ │ ├── Combinatorial_map_fwd.h │ │ ├── Combinatorial_map_iterators_base.h │ │ ├── Combinatorial_map_operations.h │ │ ├── Combinatorial_map_save_load.h │ │ ├── Combinatorial_map_storages.h │ │ ├── Combinatorial_map_storages_with_index.h │ │ ├── Compact_container.h │ │ ├── Compact_container_with_index.h │ │ ├── Compact_mesh_cell_base_3.h │ │ ├── Compare_handles_with_or_without_timestamps.h │ │ ├── Complex_2_in_triangulation_3.h │ │ ├── Complex_2_in_triangulation_cell_base_3.h │ │ ├── Complex_2_in_triangulation_vertex_base_3.h │ │ ├── Complexity_tags.h │ │ ├── Compute_anchor_3.h │ │ ├── Compute_cone_boundaries_2.h │ │ ├── Concatenate_iterator.h │ │ ├── Concurrent_compact_container.h │ │ ├── Cone_spanners_2 │ │ ├── Less_by_direction_2.h │ │ ├── Plane_scan_tree.h │ │ └── Plane_scan_tree_impl.h │ │ ├── Cone_spanners_enum_2.h │ │ ├── Conic_2.h │ │ ├── Constrained_Delaunay_triangulation_2.h │ │ ├── Constrained_Delaunay_triangulation_face_base_2.h │ │ ├── Constrained_triangulation_2.h │ │ ├── Constrained_triangulation_face_base_2.h │ │ ├── Constrained_triangulation_plus_2.h │ │ ├── Constrained_voronoi_diagram_2.h │ │ ├── Construct_theta_graph_2.h │ │ ├── Construct_yao_graph_2.h │ │ ├── Container_helper.h │ │ ├── Converting_construction.h │ │ ├── Convex_decomposition_3 │ │ ├── Edge_sorter.h │ │ ├── External_structure_builder.h │ │ ├── Insert_vertex_into_edge.h │ │ ├── Ray_hit_generator.h │ │ ├── Ray_hit_generator2.h │ │ ├── Reflex_edge_searcher.h │ │ ├── Reflex_vertex_searcher.h │ │ ├── SFace_separator.h │ │ ├── SM_walls.h │ │ ├── Single_wall_creator.h │ │ ├── Single_wall_creator2.h │ │ ├── Single_wall_creator3.h │ │ ├── YVertical_wall_builder.h │ │ └── is_reflex_sedge.h │ │ ├── Convex_hull_2 │ │ ├── ch_akl_toussaint_impl.h │ │ ├── ch_bykat_impl.h │ │ ├── ch_eddy_impl.h │ │ ├── ch_graham_andrew_impl.h │ │ ├── ch_jarvis_impl.h │ │ ├── ch_melkman_impl.h │ │ ├── ch_selected_extreme_points_2_impl.h │ │ └── convexity_check_2_impl.h │ │ ├── Convex_hull_3 │ │ ├── dual │ │ │ ├── Convex_hull_traits_dual_2.h │ │ │ ├── Convex_hull_traits_dual_3.h │ │ │ ├── halfspace_intersection_3.h │ │ │ ├── halfspace_intersection_interior_point_3.h │ │ │ ├── halfspace_intersection_with_constructions_3.h │ │ │ └── predicates.h │ │ └── internal │ │ │ └── Indexed_triangle_set.h │ │ ├── Convex_hull_d.h │ │ ├── Convex_hull_d_to_polyhedron_3.h │ │ ├── Convex_hull_d_traits_3.h │ │ ├── Convex_hull_face_base_2.h │ │ ├── Convex_hull_traits_3.h │ │ ├── Convex_hull_traits_adapter_2.h │ │ ├── Convex_hull_vertex_base_2.h │ │ ├── Counted_number.h │ │ ├── Counting_iterator.h │ │ ├── Curved_kernel_via_analysis_2 │ │ ├── Arc_2.h │ │ ├── Curve_interval_arcno_cache.h │ │ ├── Curve_renderer_facade.h │ │ ├── Curved_kernel_via_analysis_2_functors.h │ │ ├── Curved_kernel_via_analysis_2_impl.h │ │ ├── Fig_stream_Curve_renderer_2.h │ │ ├── Filtered_curved_kernel_via_analysis_2_impl.h │ │ ├── Generic_arc_2.h │ │ ├── Generic_point_2.h │ │ ├── Make_x_monotone_2.h │ │ ├── Non_x_monotone_arc_2.h │ │ ├── Point_2.h │ │ ├── Sweep_curves_adapter_2.h │ │ ├── gfx │ │ │ ├── Curve_renderer_2.h │ │ │ ├── Curve_renderer_internals.h │ │ │ ├── Curve_renderer_traits.h │ │ │ ├── Subdivision_1.h │ │ │ └── Subdivision_2.h │ │ └── test │ │ │ └── simple_models.h │ │ ├── Curves_on_surface_topology.h │ │ ├── Dart.h │ │ ├── Dart_const_iterators.h │ │ ├── Dart_iterators.h │ │ ├── Default.h │ │ ├── Default_diagonalize_traits.h │ │ ├── Deformation_Eigen_closest_rotation_traits_3.h │ │ ├── Deformation_Eigen_polar_closest_rotation_traits_3.h │ │ ├── Delaunay_d.h │ │ ├── Delaunay_mesh_area_criteria_2.h │ │ ├── Delaunay_mesh_criteria_2.h │ │ ├── Delaunay_mesh_face_base_2.h │ │ ├── Delaunay_mesh_local_size_criteria_2.h │ │ ├── Delaunay_mesh_size_criteria_2.h │ │ ├── Delaunay_mesh_vertex_base_2.h │ │ ├── Delaunay_mesher_2.h │ │ ├── Delaunay_mesher_no_edge_refinement_2.h │ │ ├── Delaunay_triangulation.h │ │ ├── Delaunay_triangulation_2.h │ │ ├── Delaunay_triangulation_3.h │ │ ├── Delaunay_triangulation_adaptation_policies_2.h │ │ ├── Delaunay_triangulation_adaptation_traits_2.h │ │ ├── Delaunay_triangulation_cell_base_3.h │ │ ├── Delaunay_triangulation_cell_base_with_circumcenter_3.h │ │ ├── Delaunay_triangulation_on_sphere_2.h │ │ ├── Delaunay_triangulation_on_sphere_adaptation_policies_2.h │ │ ├── Delaunay_triangulation_on_sphere_adaptation_traits_2.h │ │ ├── Delaunay_triangulation_on_sphere_traits_2.h │ │ ├── Diagonalize_traits.h │ │ ├── Dimension.h │ │ ├── Direction_2.h │ │ ├── Direction_3.h │ │ ├── Distance_2 │ │ ├── Line_2_Line_2.h │ │ ├── Line_2_Triangle_2.h │ │ ├── Point_2_Line_2.h │ │ ├── Point_2_Point_2.h │ │ ├── Point_2_Ray_2.h │ │ ├── Point_2_Segment_2.h │ │ ├── Point_2_Triangle_2.h │ │ ├── Ray_2_Line_2.h │ │ ├── Ray_2_Ray_2.h │ │ ├── Ray_2_Triangle_2.h │ │ ├── Segment_2_Line_2.h │ │ ├── Segment_2_Ray_2.h │ │ ├── Segment_2_Segment_2.h │ │ ├── Segment_2_Triangle_2.h │ │ ├── Triangle_2_Triangle_2.h │ │ └── internal │ │ │ └── squared_distance_utils_2.h │ │ ├── Distance_3 │ │ ├── Line_3_Line_3.h │ │ ├── Line_3_Plane_3.h │ │ ├── Plane_3_Plane_3.h │ │ ├── Point_3_Line_3.h │ │ ├── Point_3_Plane_3.h │ │ ├── Point_3_Point_3.h │ │ ├── Point_3_Ray_3.h │ │ ├── Point_3_Segment_3.h │ │ ├── Point_3_Tetrahedron_3.h │ │ ├── Point_3_Triangle_3.h │ │ ├── Point_3_Weighted_point_3.h │ │ ├── Ray_3_Line_3.h │ │ ├── Ray_3_Plane_3.h │ │ ├── Ray_3_Ray_3.h │ │ ├── Segment_3_Line_3.h │ │ ├── Segment_3_Plane_3.h │ │ ├── Segment_3_Ray_3.h │ │ ├── Segment_3_Segment_3.h │ │ ├── Triangle_3_Triangle_3.h │ │ ├── Weighted_point_3_Weighted_point_3.h │ │ └── internal │ │ │ └── squared_distance_utils_3.h │ │ ├── Double_map.h │ │ ├── Dummy_tds_2.h │ │ ├── Dynamic_matrix.h │ │ ├── Dynamic_property_map.h │ │ ├── Eigen_diagonalize_traits.h │ │ ├── Eigen_matrix.h │ │ ├── Eigen_solver_traits.h │ │ ├── Eigen_sparse_matrix.h │ │ ├── Eigen_svd.h │ │ ├── Eigen_vector.h │ │ ├── Enum_converter.h │ │ ├── Env_default_diagram_1.h │ │ ├── Env_plane_traits_3.h │ │ ├── Env_sphere_traits_3.h │ │ ├── Env_surface_data_traits_3.h │ │ ├── Env_tracing_traits_3.h │ │ ├── Env_triangle_traits_3.h │ │ ├── Envelope_2 │ │ ├── Env_divide_and_conquer_2.h │ │ └── Env_divide_and_conquer_2_impl.h │ │ ├── Envelope_3 │ │ ├── Env_plane_traits_3_functions.h │ │ ├── Envelope_base.h │ │ ├── Envelope_diagram_on_surface_2.h │ │ ├── Envelope_divide_and_conquer_3.h │ │ ├── Envelope_element_visitor_3.h │ │ ├── Envelope_overlay_2.h │ │ ├── Envelope_overlay_functor.h │ │ ├── Envelope_pm_dcel.h │ │ └── set_dividors.h │ │ ├── Envelope_diagram_1.h │ │ ├── Epeck_d.h │ │ ├── Epic_converter.h │ │ ├── Epick_d.h │ │ ├── Euclidean_distance.h │ │ ├── Euclidean_distance_sphere_point.h │ │ ├── Euler_integrator_2.h │ │ ├── Exact_algebraic.h │ │ ├── Exact_circular_kernel_2.h │ │ ├── Exact_integer.h │ │ ├── Exact_kernel_selector.h │ │ ├── Exact_predicates_exact_constructions_kernel.h │ │ ├── Exact_predicates_exact_constructions_kernel_with_kth_root.h │ │ ├── Exact_predicates_exact_constructions_kernel_with_root_of.h │ │ ├── Exact_predicates_exact_constructions_kernel_with_sqrt.h │ │ ├── Exact_predicates_inexact_constructions_kernel.h │ │ ├── Exact_rational.h │ │ ├── Exact_spherical_kernel_3.h │ │ ├── Exponent_vector.h │ │ ├── Extended_cartesian.h │ │ ├── Extended_homogeneous.h │ │ ├── Extremal_polygon_traits_2.h │ │ ├── Extreme_points_traits_adapter_3.h │ │ ├── FPU.h │ │ ├── FPU_extension.h │ │ ├── FPU_gcc_i386.h │ │ ├── FPU_gcc_i386_sse2.h │ │ ├── FPU_msvc.h │ │ ├── Face_graph_wrapper.h │ │ ├── Filter_circulator.h │ │ ├── Filtered_bbox_circular_kernel_2.h │ │ ├── Filtered_bbox_circular_kernel_2 │ │ ├── bbox_filtered_predicates.h │ │ └── interface_macros.h │ │ ├── Filtered_construction.h │ │ ├── Filtered_extended_homogeneous.h │ │ ├── Filtered_kernel.h │ │ ├── Filtered_kernel │ │ ├── Cartesian_coordinate_iterator_2.h │ │ ├── Cartesian_coordinate_iterator_3.h │ │ └── internal │ │ │ └── Static_filters │ │ │ ├── Angle_3.h │ │ │ ├── Collinear_3.h │ │ │ ├── Compare_distance_3.h │ │ │ ├── Compare_squared_radius_3.h │ │ │ ├── Compare_weighted_squared_radius_3.h │ │ │ ├── Compare_x_2.h │ │ │ ├── Compare_y_2.h │ │ │ ├── Compare_y_at_x_2.h │ │ │ ├── Coplanar_3.h │ │ │ ├── Coplanar_orientation_3.h │ │ │ ├── Coplanar_side_of_bounded_circle_3.h │ │ │ ├── Do_intersect_2.h │ │ │ ├── Do_intersect_3.h │ │ │ ├── Equal_2.h │ │ │ ├── Equal_3.h │ │ │ ├── Is_degenerate_3.h │ │ │ ├── Orientation_2.h │ │ │ ├── Orientation_3.h │ │ │ ├── Power_side_of_oriented_power_sphere_3.h │ │ │ ├── Side_of_oriented_circle_2.h │ │ │ ├── Side_of_oriented_sphere_3.h │ │ │ ├── Static_filter_error.h │ │ │ ├── Static_filters.h │ │ │ └── tools.h │ │ ├── Filtered_kernel_d.h │ │ ├── Filtered_kernel_fwd.h │ │ ├── Filtered_predicate.h │ │ ├── Filtered_predicate_with_state.h │ │ ├── Fixed_alpha_shape_3.h │ │ ├── Fixed_alpha_shape_cell_base_3.h │ │ ├── Fixed_alpha_shape_vertex_base_3.h │ │ ├── Flattening_iterator.h │ │ ├── Fourtuple.h │ │ ├── Fraction_traits.h │ │ ├── Fuzzy_iso_box.h │ │ ├── Fuzzy_sphere.h │ │ ├── GLPK_mixed_integer_program_traits.h │ │ ├── GMP │ │ ├── Gmpfi_type.h │ │ ├── Gmpfi_type_static.h │ │ ├── Gmpfr_type.h │ │ ├── Gmpfr_type_static.h │ │ ├── Gmpq_type.h │ │ ├── Gmpz_type.h │ │ └── Gmpzf_type.h │ │ ├── GMPXX_arithmetic_kernel.h │ │ ├── GMP_arithmetic_kernel.h │ │ ├── GMap_cell_const_iterators.h │ │ ├── GMap_cell_iterators.h │ │ ├── GMap_dart_const_iterators.h │ │ ├── GMap_dart_iterators.h │ │ ├── GMap_linear_cell_complex_storages.h │ │ ├── GMap_linear_cell_complex_storages_with_index.h │ │ ├── General_polygon_2.h │ │ ├── General_polygon_set_2.h │ │ ├── General_polygon_set_on_surface_2.h │ │ ├── General_polygon_with_holes_2.h │ │ ├── Generalized_map.h │ │ ├── Generalized_map │ │ └── internal │ │ │ ├── Generalized_map_group_functors.h │ │ │ ├── Generalized_map_internal_functors.h │ │ │ └── Generalized_map_sewable.h │ │ ├── Generalized_map_fwd.h │ │ ├── Generalized_map_iterators_base.h │ │ ├── Generalized_map_operations.h │ │ ├── Generalized_map_save_load.h │ │ ├── Generalized_map_storages.h │ │ ├── Generalized_map_storages_with_index.h │ │ ├── Generator │ │ └── internal │ │ │ └── Generic_random_point_generator.h │ │ ├── Generic_map_min_items.h │ │ ├── Geographical_coordinates_traits_2.h │ │ ├── Get_arithmetic_kernel.h │ │ ├── Gmp_coercion_traits.h │ │ ├── Gmpfi.h │ │ ├── Gmpfr.h │ │ ├── Gmpq.h │ │ ├── Gmpz.h │ │ ├── Gmpzf.h │ │ ├── Gps_circle_segment_traits_2.h │ │ ├── Gps_segment_traits_2.h │ │ ├── Gps_traits_2.h │ │ ├── Gray_image_mesh_domain_3.h │ │ ├── Gray_level_image_3.h │ │ ├── HalfedgeDS_const_decorator.h │ │ ├── HalfedgeDS_decorator.h │ │ ├── HalfedgeDS_default.h │ │ ├── HalfedgeDS_face_base.h │ │ ├── HalfedgeDS_face_max_base_with_id.h │ │ ├── HalfedgeDS_face_min_base.h │ │ ├── HalfedgeDS_halfedge_base.h │ │ ├── HalfedgeDS_halfedge_max_base_with_id.h │ │ ├── HalfedgeDS_halfedge_min_base.h │ │ ├── HalfedgeDS_items_2.h │ │ ├── HalfedgeDS_items_decorator.h │ │ ├── HalfedgeDS_iterator.h │ │ ├── HalfedgeDS_iterator_adaptor.h │ │ ├── HalfedgeDS_list.h │ │ ├── HalfedgeDS_min_items.h │ │ ├── HalfedgeDS_vector.h │ │ ├── HalfedgeDS_vertex_base.h │ │ ├── HalfedgeDS_vertex_max_base_with_id.h │ │ ├── HalfedgeDS_vertex_min_base.h │ │ ├── Handle.h │ │ ├── Handle_for.h │ │ ├── Handle_for_virtual.h │ │ ├── Handle_hash_function.h │ │ ├── Handle_with_policy.h │ │ ├── Has_conversion.h │ │ ├── Has_member.h │ │ ├── Has_timestamp.h │ │ ├── Hash_map │ │ └── internal │ │ │ └── chained_map.h │ │ ├── Heat_method_3 │ │ ├── Surface_mesh_geodesic_distances_3.h │ │ └── internal │ │ │ ├── Intrinsic_Delaunay_triangulation_3.h │ │ │ └── V2V.h │ │ ├── Hidden_point_memory_policy.h │ │ ├── Hilbert_policy_tags.h │ │ ├── Hilbert_sort_2.h │ │ ├── Hilbert_sort_3.h │ │ ├── Hilbert_sort_base.h │ │ ├── Hilbert_sort_d.h │ │ ├── Hilbert_sort_median_2.h │ │ ├── Hilbert_sort_median_3.h │ │ ├── Hilbert_sort_median_d.h │ │ ├── Hilbert_sort_middle_2.h │ │ ├── Hilbert_sort_middle_3.h │ │ ├── Hilbert_sort_middle_base.h │ │ ├── Hilbert_sort_middle_d.h │ │ ├── Hilbert_sort_on_sphere_3.h │ │ ├── Homogeneous.h │ │ ├── Homogeneous │ │ ├── Aff_transformationH2.h │ │ ├── Aff_transformationH3.h │ │ ├── CircleH2.h │ │ ├── ConicHPA2.h │ │ ├── Data_accessorH2.h │ │ ├── DirectionH2.h │ │ ├── DirectionH3.h │ │ ├── Homogeneous_base.h │ │ ├── Iso_cuboidH3.h │ │ ├── Iso_rectangleH2.h │ │ ├── LineH2.h │ │ ├── PlaneH3.h │ │ ├── PointH2.h │ │ ├── PointH3.h │ │ ├── RayH3.h │ │ ├── SphereH3.h │ │ ├── VectorH2.h │ │ ├── VectorH3.h │ │ ├── Weighted_point_2.h │ │ ├── Weighted_point_3.h │ │ ├── basic_constructionsH2.h │ │ ├── basic_constructionsH3.h │ │ ├── distance_predicatesH2.h │ │ ├── distance_predicatesH3.h │ │ ├── function_objects.h │ │ ├── predicates_on_directionsH2.h │ │ ├── predicates_on_pointsH2.h │ │ └── predicates_on_pointsH3.h │ │ ├── Homogeneous_converter.h │ │ ├── Homogeneous_d.h │ │ ├── Hyperbola_2.h │ │ ├── Hyperbola_ray_2.h │ │ ├── Hyperbola_segment_2.h │ │ ├── Hyperbolic_Delaunay_triangulation_2.h │ │ ├── Hyperbolic_Delaunay_triangulation_CK_traits_2.h │ │ ├── Hyperbolic_Delaunay_triangulation_traits_2.h │ │ ├── Hyperbolic_octagon_translation.h │ │ ├── Hyperbolic_triangulation_2 │ │ └── internal │ │ │ ├── Exact_complex.h │ │ │ └── Hyperbolic_Delaunay_triangulation_traits_2_functions.h │ │ ├── Hyperbolic_triangulation_face_base_2.h │ │ ├── IEEE_754_unions.h │ │ ├── IO │ │ ├── 3MF.h │ │ ├── 3MF │ │ │ ├── read_3mf.h │ │ │ └── write_3mf.h │ │ ├── Arr_iostream.h │ │ ├── Arr_text_formatter.h │ │ ├── Arr_with_history_2_reader.h │ │ ├── Arr_with_history_2_writer.h │ │ ├── Arr_with_history_iostream.h │ │ ├── Arr_with_history_text_formatter.h │ │ ├── Arrangement_2_reader.h │ │ ├── Arrangement_2_writer.h │ │ ├── Color.h │ │ ├── Complex_2_in_triangulation_3_file_writer.h │ │ ├── Complex_2_in_triangulation_3_polyhedron_builder.h │ │ ├── Complex_2_in_triangulation_3_to_medit.h │ │ ├── Complex_2_in_triangulation_3_to_vtk.h │ │ ├── Complex_3_in_triangulation_3_to_vtk.h │ │ ├── Dxf_bsop_reader.h │ │ ├── Dxf_reader.h │ │ ├── Dxf_reader_doubles.h │ │ ├── Dxf_variant_reader.h │ │ ├── Fig_stream.h │ │ ├── Fig_stream_Conic_arc_2.h │ │ ├── File_avizo.h │ │ ├── File_binary_mesh_3.h │ │ ├── File_maya.h │ │ ├── File_medit.h │ │ ├── File_poly.h │ │ ├── File_tetgen.h │ │ ├── GOCAD.h │ │ ├── Generic_writer.h │ │ ├── Gps_iostream.h │ │ ├── Istream_iterator.h │ │ ├── Nef_polyhedron_2_PS_stream.h │ │ ├── Nef_polyhedron_iostream_3.h │ │ ├── OBJ.h │ │ ├── OBJ │ │ │ └── File_writer_wavefront.h │ │ ├── OFF.h │ │ ├── OFF │ │ │ ├── File_header_OFF.h │ │ │ ├── File_header_OFF_impl.h │ │ │ ├── File_header_extended_OFF.h │ │ │ ├── File_header_extended_OFF_impl.h │ │ │ ├── File_scanner_OFF.h │ │ │ ├── File_writer_OFF.h │ │ │ ├── Scanner_OFF.h │ │ │ └── generic_copy_OFF.h │ │ ├── OI.h │ │ ├── OI │ │ │ ├── File_writer_inventor.h │ │ │ └── Inventor_ostream.h │ │ ├── Ostream_iterator.h │ │ ├── PLY.h │ │ ├── PLY │ │ │ ├── PLY_reader.h │ │ │ └── PLY_writer.h │ │ ├── Polyhedron_OFF_iostream.h │ │ ├── Polyhedron_VRML_1_ostream.h │ │ ├── Polyhedron_VRML_2_ostream.h │ │ ├── Polyhedron_inventor_ostream.h │ │ ├── Polyhedron_iostream.h │ │ ├── Polyhedron_scan_OFF.h │ │ ├── STL.h │ │ ├── STL │ │ │ └── STL_reader.h │ │ ├── Tee_for_output_iterator.h │ │ ├── Triangulation_off_ostream.h │ │ ├── Triangulation_off_ostream_2.h │ │ ├── Triangulation_off_ostream_3.h │ │ ├── Triangulation_ps_stream.h │ │ ├── VRML.h │ │ ├── VRML │ │ │ ├── File_writer_VRML_2.h │ │ │ ├── VRML_1_ostream.h │ │ │ └── VRML_2_ostream.h │ │ ├── VTK.h │ │ ├── VTK │ │ │ ├── VTK_reader.h │ │ │ └── VTK_writer.h │ │ ├── Verbose_ostream.h │ │ ├── WKT.h │ │ ├── WKT │ │ │ ├── traits_linestring.h │ │ │ ├── traits_multilinestring.h │ │ │ ├── traits_multipoint.h │ │ │ ├── traits_multipolygon.h │ │ │ ├── traits_point.h │ │ │ ├── traits_point_3.h │ │ │ └── traits_polygon.h │ │ ├── binary_file_io.h │ │ ├── facets_in_complex_2_to_triangle_mesh.h │ │ ├── facets_in_complex_3_to_triangle_mesh.h │ │ ├── helpers.h │ │ ├── io.h │ │ ├── io_tags.h │ │ ├── output_surface_facets_to_polyhedron.h │ │ ├── output_surface_facets_to_triangle_soup.h │ │ ├── output_to_vtu.h │ │ ├── polygon_soup_io.h │ │ ├── print_OFF.h │ │ ├── read_las_points.h │ │ ├── read_off_points.h │ │ ├── read_ply_points.h │ │ ├── read_points.h │ │ ├── read_vtk_image_data.h │ │ ├── read_xyz_points.h │ │ ├── scan_OFF.h │ │ ├── trace.h │ │ ├── write_VTU.h │ │ ├── write_las_points.h │ │ ├── write_off_points.h │ │ ├── write_ply_points.h │ │ ├── write_points.h │ │ └── write_xyz_points.h │ │ ├── Identity_policy_2.h │ │ ├── ImageIO.h │ │ ├── ImageIO │ │ ├── analyze.h │ │ ├── analyze_impl.h │ │ ├── bmp.h │ │ ├── bmp_impl.h │ │ ├── bmpendian.h │ │ ├── bmpendian_impl.h │ │ ├── bmpread.h │ │ ├── bmpread_impl.h │ │ ├── bmptypes.h │ │ ├── convert.h │ │ ├── convert_impl.h │ │ ├── fgetns.h │ │ ├── fgetns_impl.h │ │ ├── gif.h │ │ ├── gif_impl.h │ │ ├── gis.h │ │ ├── gis_impl.h │ │ ├── inr.h │ │ ├── inr_impl.h │ │ ├── iris.h │ │ ├── iris_impl.h │ │ ├── mincio.h │ │ ├── mincio_impl.h │ │ ├── pnm.h │ │ ├── pnm_impl.h │ │ ├── recbuffer.h │ │ ├── recbuffer_impl.h │ │ ├── recline.h │ │ ├── recline_impl.h │ │ ├── reech4x4.h │ │ ├── reech4x4_impl.h │ │ └── typedefs.h │ │ ├── ImageIO_impl.h │ │ ├── Image_3.h │ │ ├── Image_3_impl.h │ │ ├── Image_3_vtk_interface.h │ │ ├── Implicit_mesh_domain_3.h │ │ ├── Implicit_surface_3.h │ │ ├── Implicit_to_labeled_subdomains_function_wrapper.h │ │ ├── Implicit_to_labeling_function_wrapper.h │ │ ├── In_place_list.h │ │ ├── Incremental_neighbor_search.h │ │ ├── Index_property_map.h │ │ ├── Info_for_cell_attribute.h │ │ ├── Installation │ │ └── internal │ │ │ ├── deprecation_warning.h │ │ │ ├── disable_deprecation_warnings_and_errors.h │ │ │ └── enable_third_party_libraries.h │ │ ├── Interpolation │ │ └── internal │ │ │ └── helpers.h │ │ ├── Interpolation_gradient_fitting_traits_2.h │ │ ├── Interpolation_traits_2.h │ │ ├── Intersection_traits.h │ │ ├── Intersection_traits_2.h │ │ ├── Intersection_traits_3.h │ │ ├── Intersections_2 │ │ ├── Bbox_2_Bbox_2.h │ │ ├── Bbox_2_Circle_2.h │ │ ├── Bbox_2_Iso_rectangle_2.h │ │ ├── Bbox_2_Line_2.h │ │ ├── Bbox_2_Point_2.h │ │ ├── Bbox_2_Ray_2.h │ │ ├── Bbox_2_Segment_2.h │ │ ├── Bbox_2_Triangle_2.h │ │ ├── Circle_2_Circle_2.h │ │ ├── Circle_2_Iso_rectangle_2.h │ │ ├── Circle_2_Line_2.h │ │ ├── Circle_2_Point_2.h │ │ ├── Circle_2_Ray_2.h │ │ ├── Circle_2_Segment_2.h │ │ ├── Circle_2_Triangle_2.h │ │ ├── Iso_rectangle_2_Iso_rectangle_2.h │ │ ├── Iso_rectangle_2_Line_2.h │ │ ├── Iso_rectangle_2_Point_2.h │ │ ├── Iso_rectangle_2_Ray_2.h │ │ ├── Iso_rectangle_2_Segment_2.h │ │ ├── Iso_rectangle_2_Triangle_2.h │ │ ├── Line_2_Line_2.h │ │ ├── Line_2_Point_2.h │ │ ├── Line_2_Ray_2.h │ │ ├── Line_2_Segment_2.h │ │ ├── Line_2_Triangle_2.h │ │ ├── Point_2_Point_2.h │ │ ├── Point_2_Ray_2.h │ │ ├── Point_2_Segment_2.h │ │ ├── Point_2_Triangle_2.h │ │ ├── Ray_2_Ray_2.h │ │ ├── Ray_2_Segment_2.h │ │ ├── Ray_2_Triangle_2.h │ │ ├── Segment_2_Segment_2.h │ │ ├── Segment_2_Triangle_2.h │ │ ├── Triangle_2_Triangle_2.h │ │ └── internal │ │ │ ├── Straight_2.h │ │ │ ├── Triangle_2_Triangle_2_do_intersect_impl.h │ │ │ └── Triangle_2_Triangle_2_intersection_impl.h │ │ ├── Intersections_3 │ │ ├── Bbox_3_Bbox_3.h │ │ ├── Bbox_3_Iso_cuboid_3.h │ │ ├── Bbox_3_Line_3.h │ │ ├── Bbox_3_Plane_3.h │ │ ├── Bbox_3_Point_3.h │ │ ├── Bbox_3_Ray_3.h │ │ ├── Bbox_3_Segment_3.h │ │ ├── Bbox_3_Sphere_3.h │ │ ├── Bbox_3_Tetrahedron_3.h │ │ ├── Bbox_3_Triangle_3.h │ │ ├── Iso_cuboid_3_Iso_cuboid_3.h │ │ ├── Iso_cuboid_3_Line_3.h │ │ ├── Iso_cuboid_3_Plane_3.h │ │ ├── Iso_cuboid_3_Point_3.h │ │ ├── Iso_cuboid_3_Ray_3.h │ │ ├── Iso_cuboid_3_Segment_3.h │ │ ├── Iso_cuboid_3_Sphere_3.h │ │ ├── Iso_cuboid_3_Tetrahedron_3.h │ │ ├── Iso_cuboid_3_Triangle_3.h │ │ ├── Line_3_Line_3.h │ │ ├── Line_3_Plane_3.h │ │ ├── Line_3_Point_3.h │ │ ├── Line_3_Ray_3.h │ │ ├── Line_3_Segment_3.h │ │ ├── Line_3_Sphere_3.h │ │ ├── Line_3_Tetrahedron_3.h │ │ ├── Line_3_Triangle_3.h │ │ ├── Plane_3_Plane_3.h │ │ ├── Plane_3_Plane_3_Plane_3.h │ │ ├── Plane_3_Point_3.h │ │ ├── Plane_3_Ray_3.h │ │ ├── Plane_3_Segment_3.h │ │ ├── Plane_3_Sphere_3.h │ │ ├── Plane_3_Tetrahedron_3.h │ │ ├── Plane_3_Triangle_3.h │ │ ├── Point_3_Point_3.h │ │ ├── Point_3_Ray_3.h │ │ ├── Point_3_Segment_3.h │ │ ├── Point_3_Sphere_3.h │ │ ├── Point_3_Tetrahedron_3.h │ │ ├── Point_3_Triangle_3.h │ │ ├── Ray_3_Ray_3.h │ │ ├── Ray_3_Segment_3.h │ │ ├── Ray_3_Sphere_3.h │ │ ├── Ray_3_Tetrahedron_3.h │ │ ├── Ray_3_Triangle_3.h │ │ ├── Segment_3_Segment_3.h │ │ ├── Segment_3_Sphere_3.h │ │ ├── Segment_3_Tetrahedron_3.h │ │ ├── Segment_3_Triangle_3.h │ │ ├── Sphere_3_Sphere_3.h │ │ ├── Sphere_3_Tetrahedron_3.h │ │ ├── Sphere_3_Triangle_3.h │ │ ├── Tetrahedron_3_Tetrahedron_3.h │ │ ├── Tetrahedron_3_Triangle_3.h │ │ ├── Triangle_3_Triangle_3.h │ │ └── internal │ │ │ ├── Bbox_3_Iso_cuboid_3_do_intersect.h │ │ │ ├── Bbox_3_Iso_cuboid_3_intersection.h │ │ │ ├── Bbox_3_Line_3_do_intersect.h │ │ │ ├── Bbox_3_Line_3_intersection.h │ │ │ ├── Bbox_3_Plane_3_do_intersect.h │ │ │ ├── Bbox_3_Ray_3_do_intersect.h │ │ │ ├── Bbox_3_Ray_3_intersection.h │ │ │ ├── Bbox_3_Segment_3_do_intersect.h │ │ │ ├── Bbox_3_Segment_3_intersection.h │ │ │ ├── Bbox_3_Sphere_3_do_intersect.h │ │ │ ├── Bbox_3_Tetrahedron_3_do_intersect.h │ │ │ ├── Bbox_3_Triangle_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Iso_cuboid_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Iso_cuboid_3_intersection.h │ │ │ ├── Iso_cuboid_3_Line_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Line_3_intersection.h │ │ │ ├── Iso_cuboid_3_Plane_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Plane_3_intersection.h │ │ │ ├── Iso_cuboid_3_Point_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Point_3_intersection.h │ │ │ ├── Iso_cuboid_3_Ray_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Ray_3_intersection.h │ │ │ ├── Iso_cuboid_3_Segment_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Segment_3_intersection.h │ │ │ ├── Iso_cuboid_3_Sphere_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Tetrahedron_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Triangle_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Triangle_3_intersection.h │ │ │ ├── Line_3_Line_3_do_intersect.h │ │ │ ├── Line_3_Line_3_intersection.h │ │ │ ├── Line_3_Plane_3_do_intersect.h │ │ │ ├── Line_3_Plane_3_intersection.h │ │ │ ├── Line_3_Point_3_do_intersect.h │ │ │ ├── Line_3_Point_3_intersection.h │ │ │ ├── Line_3_Ray_3_do_intersect.h │ │ │ ├── Line_3_Ray_3_intersection.h │ │ │ ├── Line_3_Segment_3_do_intersect.h │ │ │ ├── Line_3_Segment_3_intersection.h │ │ │ ├── Line_3_Sphere_3_do_intersect.h │ │ │ ├── Line_3_Tetrahedron_3_do_intersect.h │ │ │ ├── Line_3_Tetrahedron_3_intersection.h │ │ │ ├── Line_3_Triangle_3_do_intersect.h │ │ │ ├── Line_3_Triangle_3_intersection.h │ │ │ ├── Plane_3_Plane_3_Plane_3_do_intersect.h │ │ │ ├── Plane_3_Plane_3_Plane_3_intersection.h │ │ │ ├── Plane_3_Plane_3_do_intersect.h │ │ │ ├── Plane_3_Plane_3_intersection.h │ │ │ ├── Plane_3_Point_3_do_intersect.h │ │ │ ├── Plane_3_Point_3_intersection.h │ │ │ ├── Plane_3_Ray_3_do_intersect.h │ │ │ ├── Plane_3_Ray_3_intersection.h │ │ │ ├── Plane_3_Segment_3_do_intersect.h │ │ │ ├── Plane_3_Segment_3_intersection.h │ │ │ ├── Plane_3_Sphere_3_do_intersect.h │ │ │ ├── Plane_3_Sphere_3_intersection.h │ │ │ ├── Plane_3_Tetrahedron_3_do_intersect.h │ │ │ ├── Plane_3_Tetrahedron_3_intersection.h │ │ │ ├── Plane_3_Triangle_3_do_intersect.h │ │ │ ├── Plane_3_Triangle_3_intersection.h │ │ │ ├── Point_3_Point_3_do_intersect.h │ │ │ ├── Point_3_Point_3_intersection.h │ │ │ ├── Point_3_Ray_3_do_intersect.h │ │ │ ├── Point_3_Ray_3_intersection.h │ │ │ ├── Point_3_Segment_3_do_intersect.h │ │ │ ├── Point_3_Segment_3_intersection.h │ │ │ ├── Point_3_Sphere_3_do_intersect.h │ │ │ ├── Point_3_Sphere_3_intersection.h │ │ │ ├── Point_3_Tetrahedron_3_do_intersect.h │ │ │ ├── Point_3_Tetrahedron_3_intersection.h │ │ │ ├── Point_3_Triangle_3_do_intersect.h │ │ │ ├── Point_3_Triangle_3_intersection.h │ │ │ ├── Ray_3_Ray_3_do_intersect.h │ │ │ ├── Ray_3_Ray_3_intersection.h │ │ │ ├── Ray_3_Segment_3_do_intersect.h │ │ │ ├── Ray_3_Segment_3_intersection.h │ │ │ ├── Ray_3_Sphere_3_do_intersect.h │ │ │ ├── Ray_3_Tetrahedron_3_do_intersect.h │ │ │ ├── Ray_3_Tetrahedron_3_intersection.h │ │ │ ├── Ray_3_Triangle_3_do_intersect.h │ │ │ ├── Ray_3_Triangle_3_intersection.h │ │ │ ├── Segment_3_Segment_3_do_intersect.h │ │ │ ├── Segment_3_Segment_3_intersection.h │ │ │ ├── Segment_3_Sphere_3_do_intersect.h │ │ │ ├── Segment_3_Tetrahedron_3_do_intersect.h │ │ │ ├── Segment_3_Tetrahedron_3_intersection.h │ │ │ ├── Segment_3_Triangle_3_do_intersect.h │ │ │ ├── Segment_3_Triangle_3_intersection.h │ │ │ ├── Sphere_3_Sphere_3_do_intersect.h │ │ │ ├── Sphere_3_Sphere_3_intersection.h │ │ │ ├── Sphere_3_Tetrahedron_3_do_intersect.h │ │ │ ├── Sphere_3_Triangle_3_do_intersect.h │ │ │ ├── Tetrahedron_3_Bounded_3_do_intersect.h │ │ │ ├── Tetrahedron_3_Tetrahedron_3_do_intersect.h │ │ │ ├── Tetrahedron_3_Triangle_3_do_intersect.h │ │ │ ├── Tetrahedron_3_Triangle_3_intersection.h │ │ │ ├── Tetrahedron_3_Unbounded_3_do_intersect.h │ │ │ ├── Triangle_3_Triangle_3_do_intersect.h │ │ │ ├── Triangle_3_Triangle_3_intersection.h │ │ │ └── tetrahedron_lines_intersections_3.h │ │ ├── Interval_arithmetic.h │ │ ├── Interval_arithmetic_impl.h │ │ ├── Interval_nt.h │ │ ├── Interval_skip_list.h │ │ ├── Interval_skip_list_interval.h │ │ ├── Interval_traits.h │ │ ├── Inverse_index.h │ │ ├── Is_a_predicate.h │ │ ├── Is_extended_kernel.h │ │ ├── Iso_cuboid_3.h │ │ ├── Iso_rectangle_2.h │ │ ├── Iso_rectangle_d.h │ │ ├── Iterator_project.h │ │ ├── Iterator_range.h │ │ ├── Iterator_transform.h │ │ ├── Join_input_iterator.h │ │ ├── K_neighbor_search.h │ │ ├── Kd_tree.h │ │ ├── Kd_tree_node.h │ │ ├── Kd_tree_rectangle.h │ │ ├── Kernel │ │ ├── Conic_misc.h │ │ ├── Dimension_utils.h │ │ ├── Return_base_tag.h │ │ ├── Same_uncertainty.h │ │ ├── Type_equality_wrapper.h │ │ ├── Type_mapper.h │ │ ├── Wutils.h │ │ ├── function_objects.h │ │ ├── global_functions.h │ │ ├── global_functions_2.h │ │ ├── global_functions_3.h │ │ ├── global_functions_internal_2.h │ │ ├── global_functions_internal_3.h │ │ ├── hash_functions.h │ │ ├── interface_macros.h │ │ ├── mpl.h │ │ └── solve.h │ │ ├── Kernel_23 │ │ └── internal │ │ │ ├── Filtered_projection_traits_3.h │ │ │ ├── Has_boolean_tags.h │ │ │ ├── Projection_traits_3.h │ │ │ └── Projection_traits_base_3.h │ │ ├── Kernel_checker.h │ │ ├── Kernel_d │ │ ├── Aff_transformationCd.h │ │ ├── Aff_transformationHd.h │ │ ├── Aff_transformation_d.h │ │ ├── Cartesian_const_iterator_d.h │ │ ├── Cartesian_converter_d.h │ │ ├── DirectionCd.h │ │ ├── DirectionCd_impl.h │ │ ├── DirectionHd.h │ │ ├── DirectionHd_impl.h │ │ ├── Direction_d.h │ │ ├── HyperplaneCd.h │ │ ├── HyperplaneCd_impl.h │ │ ├── HyperplaneHd.h │ │ ├── HyperplaneHd_impl.h │ │ ├── Hyperplane_d.h │ │ ├── Interface_classes.h │ │ ├── Interval_linear_algebra.h │ │ ├── Iso_box_d.h │ │ ├── Kernel_classesCd.h │ │ ├── Kernel_classesHd.h │ │ ├── Line_d.h │ │ ├── Line_d_impl.h │ │ ├── Linear_algebraCd_impl.h │ │ ├── Linear_algebraHd_impl.h │ │ ├── Matrix__.h │ │ ├── Pair_d.h │ │ ├── PointCd.h │ │ ├── PointCd_impl.h │ │ ├── PointHd.h │ │ ├── PointHd_impl.h │ │ ├── Point_d.h │ │ ├── Ray_d.h │ │ ├── Segment_d.h │ │ ├── Sphere_d.h │ │ ├── Tuple_d.h │ │ ├── VectorCd.h │ │ ├── VectorCd_impl.h │ │ ├── VectorHd.h │ │ ├── VectorHd_impl.h │ │ ├── Vector__.h │ │ ├── Vector_d.h │ │ ├── debug.h │ │ ├── function_objects.h │ │ ├── function_objectsCd.h │ │ ├── function_objectsHd.h │ │ ├── interface_macros_d.h │ │ ├── intersection_objectsCd.h │ │ ├── intersection_objectsHd.h │ │ ├── intersection_objects_d.h │ │ └── simple_objects.h │ │ ├── Kernel_profiler.h │ │ ├── Kernel_traits.h │ │ ├── Kernel_traits_fwd.h │ │ ├── LEDA_arithmetic_kernel.h │ │ ├── LEDA_basic.h │ │ ├── Labeled_image_mesh_domain_3.h │ │ ├── Labeled_mesh_domain_3.h │ │ ├── Largest_empty_iso_rectangle_2.h │ │ ├── Lazy.h │ │ ├── Lazy_exact_nt.h │ │ ├── Lazy_kernel.h │ │ ├── Level_interval.h │ │ ├── Lightweight_vector_3.h │ │ ├── Line_2.h │ │ ├── Line_3.h │ │ ├── Line_arc_2.h │ │ ├── Line_arc_3.h │ │ ├── Linear_algebraCd.h │ │ ├── Linear_algebraHd.h │ │ ├── Linear_cell_complex_base.h │ │ ├── Linear_cell_complex_bgl_min_items.h │ │ ├── Linear_cell_complex_constructors.h │ │ ├── Linear_cell_complex_for_bgl_combinatorial_map_helper.h │ │ ├── Linear_cell_complex_for_combinatorial_map.h │ │ ├── Linear_cell_complex_for_generalized_map.h │ │ ├── Linear_cell_complex_fwd.h │ │ ├── Linear_cell_complex_incremental_builder_3.h │ │ ├── Linear_cell_complex_min_items.h │ │ ├── Linear_cell_complex_operations.h │ │ ├── Linear_cell_complex_traits.h │ │ ├── Location_policy.h │ │ ├── MP_Float.h │ │ ├── MP_Float_arithmetic_kernel.h │ │ ├── MP_Float_impl.h │ │ ├── Manhattan_distance_iso_box_point.h │ │ ├── Marching_tetrahedra_observer_default_3.h │ │ ├── Marching_tetrahedra_traits_skin_surface_3.h │ │ ├── Mean_curvature_flow_skeletonization.h │ │ ├── Memory_sizer.h │ │ ├── Mesh_2 │ │ ├── Clusters.h │ │ ├── Do_not_refine_edges.h │ │ ├── Face_badness.h │ │ ├── Lipschitz_sizing_field_2.h │ │ ├── Lloyd_move_2.h │ │ ├── Mesh_global_optimizer_2.h │ │ ├── Mesh_sizing_field.h │ │ ├── Output_stream.h │ │ ├── Refine_edges.h │ │ ├── Refine_edges_visitor.h │ │ ├── Refine_edges_with_clusters.h │ │ ├── Refine_faces.h │ │ ├── Sizing_field_2.h │ │ └── Uniform_sizing_field_2.h │ │ ├── Mesh_3 │ │ ├── C3T3_helpers.h │ │ ├── Cell_criteria_visitor_with_balls.h │ │ ├── Concurrent_mesher_config.h │ │ ├── Detect_features_in_image.h │ │ ├── Detect_features_on_image_bbox.h │ │ ├── Dump_c3t3.h │ │ ├── Facet_criteria_visitor_with_balls.h │ │ ├── Facet_on_same_surface_criterion.h │ │ ├── Image_plus_weights_to_labeled_function_wrapper.h │ │ ├── Image_to_labeled_function_wrapper.h │ │ ├── Implicit_surface_mesher_visitor.h │ │ ├── Is_mesh_domain_field_3.h │ │ ├── Lloyd_move.h │ │ ├── Mesh_complex_3_in_triangulation_3_fwd.h │ │ ├── Mesh_global_optimizer.h │ │ ├── Mesh_sizing_field.h │ │ ├── Mesh_surface_cell_base_3.h │ │ ├── Mesher_3.h │ │ ├── Mesher_level.h │ │ ├── Mesher_level_default_implementations.h │ │ ├── Null_exuder_visitor.h │ │ ├── Null_global_optimizer_visitor.h │ │ ├── Null_perturber_visitor.h │ │ ├── Null_subdomain_index.h │ │ ├── Odt_move.h │ │ ├── Poisson_refine_cells_3.h │ │ ├── Polyline_with_context.h │ │ ├── Profile_counter.h │ │ ├── Profiling_tools.h │ │ ├── Protect_edges_sizing_field.h │ │ ├── Refine_cells_3.h │ │ ├── Refine_facets_3.h │ │ ├── Refine_facets_manifold_base.h │ │ ├── Refine_tets_visitor.h │ │ ├── Robust_intersection_kernel.h │ │ ├── Robust_intersection_traits_3.h │ │ ├── Sizing_grid.h │ │ ├── Sliver_perturber.h │ │ ├── Slivers_exuder.h │ │ ├── Slivers_exuder_cell_attributes_traits.h │ │ ├── Triangle_accessor_primitive.h │ │ ├── Triangulation_helpers.h │ │ ├── Triangulation_sizing_field.h │ │ ├── Uniform_sizing_field.h │ │ ├── Worksharing_data_structures.h │ │ ├── config.h │ │ ├── dihedral_angle_3.h │ │ ├── experimental │ │ │ ├── AABB_filtered_projection_traits.h │ │ │ ├── Facet_patch_id_map.h │ │ │ ├── Facet_topological_criterion_with_adjacency.h │ │ │ ├── Get_curve_index.h │ │ │ ├── Get_facet_patch_id.h │ │ │ ├── Lipschitz_sizing_experimental.h │ │ │ ├── Lipschitz_sizing_parameters.h │ │ │ ├── Lipschitz_sizing_polyhedron.h │ │ │ └── Sizing_field_minimum.h │ │ ├── features_detection │ │ │ ├── cases_table.h │ │ │ ├── combinations.h │ │ │ ├── coordinates.h │ │ │ ├── cube_isometries.h │ │ │ ├── features_detection.h │ │ │ ├── features_detection_helpers.h │ │ │ └── postprocess_weights.h │ │ ├── generate_label_weights.h │ │ ├── initialize_triangulation_from_gray_image.h │ │ ├── initialize_triangulation_from_labeled_image.h │ │ ├── internal │ │ │ ├── Graph_manipulations.h │ │ │ ├── check_weights.h │ │ │ └── helpers.h │ │ ├── io_signature.h │ │ ├── mesh_standard_cell_criteria.h │ │ ├── mesh_standard_criteria.h │ │ ├── mesh_standard_facet_criteria.h │ │ ├── min_dihedral_angle.h │ │ ├── parameters.h │ │ ├── parameters_defaults.h │ │ ├── polyhedral_to_labeled_function_wrapper.h │ │ ├── polylines_to_protect.h │ │ ├── radius_ratio.h │ │ ├── search_for_connected_components_in_labeled_image.h │ │ ├── sliver_criteria.h │ │ ├── squared_distance_Point_3_Triangle_3.h │ │ └── vertex_perturbation.h │ │ ├── Mesh_cell_base_3.h │ │ ├── Mesh_cell_criteria_3.h │ │ ├── Mesh_complex_3_in_triangulation_3.h │ │ ├── Mesh_constant_domain_field_3.h │ │ ├── Mesh_criteria_3.h │ │ ├── Mesh_domain_with_polyline_features_3.h │ │ ├── Mesh_edge_criteria_3.h │ │ ├── Mesh_error_code.h │ │ ├── Mesh_facet_criteria_3.h │ │ ├── Mesh_facet_topology.h │ │ ├── Mesh_optimization_return_code.h │ │ ├── Mesh_polyhedron_3.h │ │ ├── Mesh_triangulation_3.h │ │ ├── Mesh_vertex_base_3.h │ │ ├── Mesher_level.h │ │ ├── Mesher_level_default_implementations.h │ │ ├── Mesher_level_visitors.h │ │ ├── Meshes │ │ ├── Double_map_container.h │ │ ├── Filtered_deque_container.h │ │ ├── Filtered_multimap_container.h │ │ ├── Filtered_queue_container.h │ │ ├── Simple_map_container.h │ │ ├── Simple_queue_container.h │ │ ├── Simple_set_container.h │ │ ├── Triangulation_mesher_level_traits_2.h │ │ └── Triangulation_mesher_level_traits_3.h │ │ ├── Min_annulus_d.h │ │ ├── Min_circle_2.h │ │ ├── Min_circle_2 │ │ ├── Min_circle_2_adapterC2.h │ │ ├── Min_circle_2_adapterH2.h │ │ ├── Min_circle_2_impl.h │ │ ├── Optimisation_circle_2.h │ │ └── Optimisation_circle_2_impl.h │ │ ├── Min_circle_2_traits_2.h │ │ ├── Min_ellipse_2.h │ │ ├── Min_ellipse_2 │ │ ├── Min_ellipse_2_adapterC2.h │ │ ├── Min_ellipse_2_adapterH2.h │ │ ├── Min_ellipse_2_impl.h │ │ ├── Optimisation_ellipse_2.h │ │ └── Optimisation_ellipse_2_impl.h │ │ ├── Min_ellipse_2_traits_2.h │ │ ├── Min_quadrilateral_traits_2.h │ │ ├── Min_sphere_annulus_d_traits_2.h │ │ ├── Min_sphere_annulus_d_traits_3.h │ │ ├── Min_sphere_annulus_d_traits_d.h │ │ ├── Min_sphere_d.h │ │ ├── Min_sphere_d │ │ ├── Min_sphere_d_impl.h │ │ └── Optimisation_sphere_d.h │ │ ├── Min_sphere_of_points_d_traits_2.h │ │ ├── Min_sphere_of_points_d_traits_3.h │ │ ├── Min_sphere_of_points_d_traits_d.h │ │ ├── Min_sphere_of_spheres_d.h │ │ ├── Min_sphere_of_spheres_d │ │ ├── Min_sphere_of_spheres_d_configure.h │ │ ├── Min_sphere_of_spheres_d_impl.h │ │ ├── Min_sphere_of_spheres_d_pair.h │ │ ├── Min_sphere_of_spheres_d_pivot_impl.h │ │ ├── Min_sphere_of_spheres_d_support_set.h │ │ └── Min_sphere_of_spheres_d_support_set_impl.h │ │ ├── Min_sphere_of_spheres_d_traits_2.h │ │ ├── Min_sphere_of_spheres_d_traits_3.h │ │ ├── Min_sphere_of_spheres_d_traits_d.h │ │ ├── Minimum_enclosing_quadrilateral_traits_2.h │ │ ├── Minkowski_sum_2 │ │ ├── AABB_collision_detector_2.h │ │ ├── AABB_node_with_join.h │ │ ├── AABB_segment_2_primitive.h │ │ ├── AABB_traits_2.h │ │ ├── AABB_traversal_traits_with_join.h │ │ ├── AABB_tree_with_join.h │ │ ├── Approx_offset_base_2.h │ │ ├── Arr_labeled_traits_2.h │ │ ├── Decomposition_strategy_adapter.h │ │ ├── Exact_offset_base_2.h │ │ ├── Hole_filter_2.h │ │ ├── Labels.h │ │ ├── Minkowski_sum_by_reduced_convolution_2.h │ │ ├── Minkowski_sum_conv_2.h │ │ ├── Minkowski_sum_decomp_2.h │ │ ├── Offset_conv_2.h │ │ ├── Offset_decomp_2.h │ │ ├── Polygon_convex_decomposition.h │ │ ├── Union_of_curve_cycles_2.h │ │ ├── Union_of_cycles_2.h │ │ └── Union_of_segment_cycles_2.h │ │ ├── Minkowski_sum_3 │ │ ├── Gaussian_map.h │ │ ├── Gaussian_map_to_nef_3.h │ │ ├── PointMark.h │ │ └── bipartite_nary_union_sorted_combined.h │ │ ├── Mixed_integer_program_traits.h │ │ ├── Modifiable_priority_queue.h │ │ ├── Modifier_base.h │ │ ├── Modular_arithmetic │ │ └── Residue_type.h │ │ ├── Modular_traits.h │ │ ├── Monge_via_jet_fitting.h │ │ ├── Mpzf.h │ │ ├── Multi_surface_3.h │ │ ├── Multiscale_sort.h │ │ ├── Multiset.h │ │ ├── NT_converter.h │ │ ├── N_step_adaptor.h │ │ ├── N_step_adaptor_derived.h │ │ ├── Named_function_parameters.h │ │ ├── Needs_parens_as_product.h │ │ ├── Nef_2 │ │ ├── Bounding_box_2.h │ │ ├── Constrained_triang_traits.h │ │ ├── HDS_items.h │ │ ├── Line_to_epoint.h │ │ ├── Object_handle.h │ │ ├── Object_index.h │ │ ├── PM_checker.h │ │ ├── PM_const_decorator.h │ │ ├── PM_decorator.h │ │ ├── PM_explorer.h │ │ ├── PM_io_parser.h │ │ ├── PM_overlayer.h │ │ ├── PM_persistent_PL.h │ │ ├── PM_point_locator.h │ │ ├── Polynomial.h │ │ ├── Polynomial_impl.h │ │ ├── Segment_overlay_traits.h │ │ ├── debug.h │ │ ├── gen_point_location.h │ │ ├── geninfo.h │ │ └── iterator_tools.h │ │ ├── Nef_3 │ │ ├── Binary_operation.h │ │ ├── Bounding_box_3.h │ │ ├── Combine_with_halfspace.h │ │ ├── Default_items.h │ │ ├── Edge_edge_overlay.h │ │ ├── Exact_triangulation_euclidean_traits_xy_3.h │ │ ├── Exact_triangulation_euclidean_traits_xz_3.h │ │ ├── Exact_triangulation_euclidean_traits_yz_3.h │ │ ├── Halfedge.h │ │ ├── Halffacet.h │ │ ├── ID_support_handler.h │ │ ├── Infimaximal_box.h │ │ ├── K3_tree.h │ │ ├── Mark_bounded_volumes.h │ │ ├── Nef_box.h │ │ ├── OGL_helper.h │ │ ├── Pluecker_line_3.h │ │ ├── SFace.h │ │ ├── SHalfedge.h │ │ ├── SHalfloop.h │ │ ├── SM_visualizor.h │ │ ├── SNC_FM_decorator.h │ │ ├── SNC_SM_explorer.h │ │ ├── SNC_SM_overlayer.h │ │ ├── SNC_SM_visualizor.h │ │ ├── SNC_const_decorator.h │ │ ├── SNC_constructor.h │ │ ├── SNC_decorator.h │ │ ├── SNC_decorator_traits.h │ │ ├── SNC_external_structure.h │ │ ├── SNC_halfedge_key.h │ │ ├── SNC_indexed_items.h │ │ ├── SNC_intersection.h │ │ ├── SNC_io_parser.h │ │ ├── SNC_items.h │ │ ├── SNC_iteration.h │ │ ├── SNC_k3_tree_traits.h │ │ ├── SNC_list.h │ │ ├── SNC_point_locator.h │ │ ├── SNC_simplify.h │ │ ├── SNC_sphere_map.h │ │ ├── SNC_structure.h │ │ ├── Vertex.h │ │ ├── Volume.h │ │ ├── binop_intersection_tests.h │ │ ├── bounded_side_3.h │ │ ├── polygon_mesh_to_nef_3.h │ │ ├── quotient_coordinates_to_homogeneous_point.h │ │ ├── shell_to_nef_3.h │ │ └── vertex_cycle_to_nef_3.h │ │ ├── Nef_S2 │ │ ├── Generic_handle_map.h │ │ ├── ID_support_handler.h │ │ ├── Normalizing.h │ │ ├── OGL_base_object.h │ │ ├── SM_checker.h │ │ ├── SM_const_decorator.h │ │ ├── SM_constrained_triang_traits.h │ │ ├── SM_decorator.h │ │ ├── SM_decorator_traits.h │ │ ├── SM_io_parser.h │ │ ├── SM_items.h │ │ ├── SM_iteration.h │ │ ├── SM_list.h │ │ ├── SM_overlayer.h │ │ ├── SM_point_locator.h │ │ ├── SM_triangulator.h │ │ ├── SM_visualizor.h │ │ ├── Sphere_circle.h │ │ ├── Sphere_direction.h │ │ ├── Sphere_geometry.h │ │ ├── Sphere_geometry_OGL.h │ │ ├── Sphere_map.h │ │ ├── Sphere_point.h │ │ ├── Sphere_segment.h │ │ ├── Sphere_triangle.h │ │ ├── leda_sphere_map.h │ │ └── sphere_predicates.h │ │ ├── Nef_nary_intersection_3.h │ │ ├── Nef_nary_union_3.h │ │ ├── Nef_polyhedron_2.h │ │ ├── Nef_polyhedron_3.h │ │ ├── Nef_polyhedron_S2.h │ │ ├── Nef_polynomial.h │ │ ├── Nef_polynomial_fwd.h │ │ ├── Nested_iterator.h │ │ ├── NewKernel_d │ │ ├── Cartesian_LA_base.h │ │ ├── Cartesian_LA_functors.h │ │ ├── Cartesian_base.h │ │ ├── Cartesian_change_FT.h │ │ ├── Cartesian_complete.h │ │ ├── Cartesian_filter_K.h │ │ ├── Cartesian_filter_NT.h │ │ ├── Cartesian_per_dimension.h │ │ ├── Cartesian_static_filters.h │ │ ├── Coaffine.h │ │ ├── Define_kernel_types.h │ │ ├── Dimension_base.h │ │ ├── Filtered_predicate2.h │ │ ├── KernelD_converter.h │ │ ├── Kernel_2_interface.h │ │ ├── Kernel_3_interface.h │ │ ├── Kernel_d_interface.h │ │ ├── Kernel_object_converter.h │ │ ├── LA_eigen │ │ │ ├── LA.h │ │ │ └── constructors.h │ │ ├── Lazy_cartesian.h │ │ ├── Types │ │ │ ├── Aff_transformation.h │ │ │ ├── Hyperplane.h │ │ │ ├── Iso_box.h │ │ │ ├── Line.h │ │ │ ├── Ray.h │ │ │ ├── Segment.h │ │ │ ├── Sphere.h │ │ │ └── Weighted_point.h │ │ ├── Vector │ │ │ ├── array.h │ │ │ ├── avx4.h │ │ │ ├── determinant_of_iterator_to_points_from_iterator_to_vectors.h │ │ │ ├── determinant_of_iterator_to_points_from_points.h │ │ │ ├── determinant_of_iterator_to_vectors_from_vectors.h │ │ │ ├── determinant_of_points_from_vectors.h │ │ │ ├── determinant_of_vectors_small_dim.h │ │ │ ├── determinant_of_vectors_small_dim_internal.h │ │ │ ├── mix.h │ │ │ ├── sse2.h │ │ │ ├── v2int.h │ │ │ └── vector.h │ │ ├── Wrapper │ │ │ ├── Cartesian_wrap.h │ │ │ ├── Hyperplane_d.h │ │ │ ├── Point_d.h │ │ │ ├── Ref_count_obj.h │ │ │ ├── Segment_d.h │ │ │ ├── Sphere_d.h │ │ │ ├── Vector_d.h │ │ │ └── Weighted_point_d.h │ │ ├── function_objects_cartesian.h │ │ ├── functor_properties.h │ │ ├── functor_tags.h │ │ ├── static_int.h │ │ ├── store_kernel.h │ │ └── utils.h │ │ ├── No_intersection_surface_sweep_2.h │ │ ├── Null_matrix.h │ │ ├── Number_type_checker.h │ │ ├── Number_types │ │ ├── internal │ │ │ └── Exact_type_selector.h │ │ └── internal_functions_comparison_root_of_2.h │ │ ├── OFF_to_nef_3.h │ │ ├── OSQP_quadratic_program_traits.h │ │ ├── OTR_2 │ │ ├── Cost.h │ │ ├── Reconstruction_edge_2.h │ │ ├── Reconstruction_face_base_2.h │ │ ├── Reconstruction_triangulation_2.h │ │ ├── Reconstruction_vertex_base_2.h │ │ └── Sample.h │ │ ├── Object.h │ │ ├── Octree.h │ │ ├── OpenGR │ │ ├── compute_registration_transformation.h │ │ └── register_point_sets.h │ │ ├── OpenNL │ │ ├── bicgstab.h │ │ ├── blas.h │ │ ├── conjugate_gradient.h │ │ ├── full_vector.h │ │ ├── linear_solver.h │ │ ├── preconditioner.h │ │ └── sparse_matrix.h │ │ ├── Optimal_bounding_box │ │ ├── Oriented_bounding_box_traits_3.h │ │ ├── internal │ │ │ ├── evolution.h │ │ │ ├── fitness_function.h │ │ │ ├── helper.h │ │ │ ├── nelder_mead_functions.h │ │ │ ├── optimize_2.h │ │ │ └── population.h │ │ └── oriented_bounding_box.h │ │ ├── Optimal_transportation_reconstruction_2.h │ │ ├── Optimisation │ │ ├── Access_coordinates_begin_2.h │ │ ├── Access_coordinates_begin_3.h │ │ ├── Access_coordinates_begin_d.h │ │ ├── Access_dimension_2.h │ │ ├── Access_dimension_3.h │ │ ├── Access_dimension_d.h │ │ ├── Construct_point_2.h │ │ ├── Construct_point_3.h │ │ ├── Construct_point_d.h │ │ ├── basic.h │ │ └── debug.h │ │ ├── Optimisation_d_traits_2.h │ │ ├── Optimisation_d_traits_3.h │ │ ├── Optimisation_d_traits_d.h │ │ ├── Orientation_Linf_2.h │ │ ├── Origin.h │ │ ├── Origin_impl.h │ │ ├── Orthogonal_incremental_neighbor_search.h │ │ ├── Orthogonal_k_neighbor_search.h │ │ ├── Orthtree.h │ │ ├── Orthtree │ │ ├── Cartesian_ranges.h │ │ ├── IO.h │ │ ├── Node.h │ │ ├── Split_predicates.h │ │ ├── Traversal_iterator.h │ │ └── Traversals.h │ │ ├── Orthtree_traits_2.h │ │ ├── Orthtree_traits_3.h │ │ ├── Orthtree_traits_d.h │ │ ├── PCA_util.h │ │ ├── PCA_util_Eigen.h │ │ ├── Parabola_2.h │ │ ├── Parabola_segment_2.h │ │ ├── Partition_2 │ │ ├── Circulator_pair.h │ │ ├── Indirect_edge_compare.h │ │ ├── Indirect_less_xy_2.h │ │ ├── Indirect_not_less_yx_2.h │ │ ├── Iterator_list.h │ │ ├── Matrix.h │ │ ├── Partition_opt_cvx_diagonal_list.h │ │ ├── Partition_opt_cvx_edge.h │ │ ├── Partition_opt_cvx_vertex.h │ │ ├── Partition_traits_2_base.h │ │ ├── Partition_vertex_map.h │ │ ├── Partitioned_polygon_2.h │ │ ├── Point_pair_less_xy_2.h │ │ ├── Rotation_tree_2.h │ │ ├── Rotation_tree_2_impl.h │ │ ├── Rotation_tree_node_2.h │ │ ├── Segment_less_yx_2.h │ │ ├── Triangulation_indirect_traits_2.h │ │ ├── Turn_reverser.h │ │ ├── Vertex_visibility_graph_2.h │ │ ├── Vertex_visibility_graph_2_impl.h │ │ ├── is_degenerate_polygon_2.h │ │ ├── partition_approx_convex_2.h │ │ ├── partition_greene_approx_convex_2.h │ │ ├── partition_optimal_convex_2.h │ │ └── partition_y_monotone_2.h │ │ ├── Partition_is_valid_traits_2.h │ │ ├── Partition_traits_2.h │ │ ├── Partition_traits_adapter_2.h │ │ ├── Path_on_surface.h │ │ ├── Periodic_2_Delaunay_triangulation_2.h │ │ ├── Periodic_2_Delaunay_triangulation_traits_2.h │ │ ├── Periodic_2_offset_2.h │ │ ├── Periodic_2_triangulation_2.h │ │ ├── Periodic_2_triangulation_2 │ │ └── internal │ │ │ ├── Functor_with_offset_points_adaptor_2.h │ │ │ ├── Periodic_2_Delaunay_triangulation_filtered_traits_2.h │ │ │ ├── Periodic_2_Delaunay_triangulation_statically_filtered_traits_2.h │ │ │ ├── Periodic_2_construct_point_2.h │ │ │ ├── Periodic_2_triangulation_filtered_traits_2.h │ │ │ ├── Periodic_2_triangulation_statically_filtered_traits_2.h │ │ │ └── Static_filters │ │ │ ├── Periodic_2_orientation_2.h │ │ │ └── Periodic_2_side_of_oriented_circle_2.h │ │ ├── Periodic_2_triangulation_dummy_12.h │ │ ├── Periodic_2_triangulation_face_base_2.h │ │ ├── Periodic_2_triangulation_hierarchy_2.h │ │ ├── Periodic_2_triangulation_iterators_2.h │ │ ├── Periodic_2_triangulation_traits_2.h │ │ ├── Periodic_2_triangulation_vertex_base_2.h │ │ ├── Periodic_3_Delaunay_triangulation_3.h │ │ ├── Periodic_3_Delaunay_triangulation_traits_3.h │ │ ├── Periodic_3_function_wrapper.h │ │ ├── Periodic_3_mesh_3 │ │ ├── IO │ │ │ └── File_medit.h │ │ ├── Protect_edges_sizing_field.h │ │ └── config.h │ │ ├── Periodic_3_mesh_triangulation_3.h │ │ ├── Periodic_3_offset_3.h │ │ ├── Periodic_3_regular_triangulation_3.h │ │ ├── Periodic_3_regular_triangulation_traits_3.h │ │ ├── Periodic_3_triangulation_3.h │ │ ├── Periodic_3_triangulation_3 │ │ └── internal │ │ │ ├── Functor_with_offset_points_adaptor_3.h │ │ │ ├── Functor_with_offset_weighted_points_adaptor_3.h │ │ │ ├── Periodic_3_Delaunay_triangulation_filtered_traits_3.h │ │ │ ├── Periodic_3_Delaunay_triangulation_remove_traits_3.h │ │ │ ├── Periodic_3_Delaunay_triangulation_statically_filtered_traits_3.h │ │ │ ├── Periodic_3_construct_point_3.h │ │ │ ├── Periodic_3_construct_weighted_point_3.h │ │ │ ├── Periodic_3_regular_triangulation_dummy_288.h │ │ │ ├── Periodic_3_regular_triangulation_filtered_traits_3.h │ │ │ ├── Periodic_3_regular_triangulation_remove_traits_3.h │ │ │ ├── Periodic_3_regular_triangulation_statically_filtered_traits_3.h │ │ │ ├── Periodic_3_triangulation_dummy_36.h │ │ │ ├── Periodic_3_triangulation_dummy_generator.h │ │ │ ├── Periodic_3_triangulation_filtered_traits_3.h │ │ │ ├── Periodic_3_triangulation_iterators_3.h │ │ │ ├── Periodic_3_triangulation_statically_filtered_traits_3.h │ │ │ ├── Robust_periodic_weighted_circumcenter_traits_3.h │ │ │ ├── Static_filters │ │ │ ├── Periodic_3_orientation_3.h │ │ │ ├── Periodic_3_power_side_of_oriented_power_sphere_3.h │ │ │ └── Periodic_3_side_of_oriented_sphere_3.h │ │ │ └── canonicalize_helper.h │ │ ├── Periodic_3_triangulation_ds_cell_base_3.h │ │ ├── Periodic_3_triangulation_ds_vertex_base_3.h │ │ ├── Periodic_3_triangulation_hierarchy_3.h │ │ ├── Periodic_3_triangulation_traits_3.h │ │ ├── Periodic_4_hyperbolic_Delaunay_triangulation_2.h │ │ ├── Periodic_4_hyperbolic_Delaunay_triangulation_traits_2.h │ │ ├── Periodic_4_hyperbolic_triangulation_2.h │ │ ├── Periodic_4_hyperbolic_triangulation_2 │ │ └── internal │ │ │ ├── Dehn_hyperbolic_octagon_translation_word.h │ │ │ ├── Hyperbolic_octagon_translation_matrix.h │ │ │ ├── Hyperbolic_octagon_translation_word.h │ │ │ └── Periodic_4_hyperbolic_triangulation_dummy_14.h │ │ ├── Periodic_4_hyperbolic_triangulation_face_base_2.h │ │ ├── Periodic_4_hyperbolic_triangulation_vertex_base_2.h │ │ ├── Plane_3.h │ │ ├── Plane_separator.h │ │ ├── Point_2.h │ │ ├── Point_3.h │ │ ├── Point_container.h │ │ ├── Point_set_2.h │ │ ├── Point_set_3.h │ │ ├── Point_set_3 │ │ ├── IO.h │ │ └── IO │ │ │ ├── LAS.h │ │ │ ├── OFF.h │ │ │ ├── PLY.h │ │ │ └── XYZ.h │ │ ├── Point_set_processing_3 │ │ └── internal │ │ │ ├── Callback_wrapper.h │ │ │ ├── Neighbor_query.h │ │ │ ├── Rich_grid.h │ │ │ ├── Search_traits_vertex_handle_3.h │ │ │ ├── Voronoi_covariance_3 │ │ │ ├── voronoi_covariance_3.h │ │ │ └── voronoi_covariance_sphere_3.h │ │ │ └── bbox_diagonal.h │ │ ├── Point_traits.h │ │ ├── Point_with_normal_3.h │ │ ├── Point_with_psc_localisation.h │ │ ├── Point_with_surface_index.h │ │ ├── Point_with_surface_index_geom_traits.h │ │ ├── Poisson_implicit_surface_3.h │ │ ├── Poisson_mesh_cell_criteria_3.h │ │ ├── Poisson_reconstruction_function.h │ │ ├── Polychain_2.h │ │ ├── Polygon_2.h │ │ ├── Polygon_2 │ │ ├── Polygon_2_algorithms_impl.h │ │ ├── Polygon_2_edge_circulator.h │ │ ├── Polygon_2_edge_iterator.h │ │ ├── Polygon_2_impl.h │ │ ├── Polygon_2_simplicity.h │ │ └── Polygon_2_vertex_circulator.h │ │ ├── Polygon_2_algorithms.h │ │ ├── Polygon_convex_decomposition_2.h │ │ ├── Polygon_mesh_processing │ │ ├── IO │ │ │ └── polygon_mesh_io.h │ │ ├── Non_manifold_feature_map.h │ │ ├── angle_and_area_smoothing.h │ │ ├── bbox.h │ │ ├── border.h │ │ ├── clip.h │ │ ├── compute_normal.h │ │ ├── connected_components.h │ │ ├── corefinement.h │ │ ├── detect_features.h │ │ ├── distance.h │ │ ├── extrude.h │ │ ├── fair.h │ │ ├── internal │ │ │ ├── AABB_traversal_traits_with_Hausdorff_distance.h │ │ │ ├── AABB_traversal_traits_with_transformation.h │ │ │ ├── Corefinement │ │ │ │ ├── Face_graph_output_builder.h │ │ │ │ ├── Generic_clip_output_builder.h │ │ │ │ ├── Intersection_type.h │ │ │ │ ├── Output_builder_for_autorefinement.h │ │ │ │ ├── Visitor.h │ │ │ │ ├── face_graph_utils.h │ │ │ │ ├── intersect_triangle_and_segment_3.h │ │ │ │ ├── intersection_callbacks.h │ │ │ │ ├── intersection_impl.h │ │ │ │ ├── intersection_nodes.h │ │ │ │ ├── intersection_of_coplanar_triangles_3.h │ │ │ │ └── predicates.h │ │ │ ├── Hole_filling │ │ │ │ ├── Triangulate_hole_polygon_mesh.h │ │ │ │ ├── Triangulate_hole_polyline.h │ │ │ │ ├── do_not_use_DT3.h │ │ │ │ └── experimental │ │ │ │ │ └── experimental_code.h │ │ │ ├── Isotropic_remeshing │ │ │ │ ├── AABB_filtered_projection_traits.h │ │ │ │ └── remesh_impl.h │ │ │ ├── Polygon_mesh_slicer │ │ │ │ ├── Axis_parallel_plane_traits.h │ │ │ │ └── Traversal_traits.h │ │ │ ├── Side_of_triangle_mesh │ │ │ │ ├── Point_inside_vertical_ray_cast.h │ │ │ │ └── Ray_3_Triangle_3_traversal_traits.h │ │ │ ├── Smoothing │ │ │ │ ├── ceres_support.h │ │ │ │ ├── curvature_flow_impl.h │ │ │ │ ├── mesh_smoothing_impl.h │ │ │ │ └── smoothing_evaluation.h │ │ │ ├── Snapping │ │ │ │ ├── helper.h │ │ │ │ ├── snap.h │ │ │ │ └── snap_vertices.h │ │ │ ├── do_no_use_CDT2.h │ │ │ ├── fair_impl.h │ │ │ ├── mesh_to_point_set_hausdorff_distance.h │ │ │ ├── refine_impl.h │ │ │ ├── repair_extra.h │ │ │ └── simplify_polyline.h │ │ ├── intersection.h │ │ ├── locate.h │ │ ├── manifoldness.h │ │ ├── measure.h │ │ ├── merge_border_vertices.h │ │ ├── orient_polygon_soup.h │ │ ├── orient_polygon_soup_extension.h │ │ ├── orientation.h │ │ ├── polygon_mesh_to_polygon_soup.h │ │ ├── polygon_soup_to_polygon_mesh.h │ │ ├── random_perturbation.h │ │ ├── refine.h │ │ ├── region_growing.h │ │ ├── remesh.h │ │ ├── remesh_planar_patches.h │ │ ├── repair.h │ │ ├── repair_degeneracies.h │ │ ├── repair_polygon_soup.h │ │ ├── repair_self_intersections.h │ │ ├── self_intersections.h │ │ ├── shape_predicates.h │ │ ├── smooth_mesh.h │ │ ├── smooth_shape.h │ │ ├── stitch_borders.h │ │ ├── surface_Delaunay_remeshing.h │ │ ├── tangential_relaxation.h │ │ ├── transform.h │ │ ├── triangle.h │ │ ├── triangulate_faces.h │ │ └── triangulate_hole.h │ │ ├── Polygon_mesh_slicer.h │ │ ├── Polygon_nop_decomposition_2.h │ │ ├── Polygon_offset_builder_2.h │ │ ├── Polygon_offset_builder_traits_2.h │ │ ├── Polygon_set_2.h │ │ ├── Polygon_traits_2.h │ │ ├── Polygon_triangulation_decomposition_2.h │ │ ├── Polygon_vertical_decomposition_2.h │ │ ├── Polygon_with_holes_2.h │ │ ├── Polygonal_schema.h │ │ ├── Polygonal_schema_fwd.h │ │ ├── Polygonal_schema_min_items.h │ │ ├── Polygonal_surface_reconstruction.h │ │ ├── Polygonal_surface_reconstruction │ │ └── internal │ │ │ ├── alpha_shape_mesh.h │ │ │ ├── compute_confidences.h │ │ │ ├── hypothesis.h │ │ │ ├── parameters.h │ │ │ └── point_set_with_planes.h │ │ ├── PolyhedralSurf_neighbors.h │ │ ├── Polyhedral_complex_mesh_domain_3.h │ │ ├── Polyhedral_envelope.h │ │ ├── Polyhedral_mesh_domain_3.h │ │ ├── Polyhedral_mesh_domain_with_features_3.h │ │ ├── Polyhedron_3.h │ │ ├── Polyhedron_3_fwd.h │ │ ├── Polyhedron_3_to_lcc.h │ │ ├── Polyhedron_copy_3.h │ │ ├── Polyhedron_incremental_builder_3.h │ │ ├── Polyhedron_items_3.h │ │ ├── Polyhedron_items_with_id_3.h │ │ ├── Polyhedron_min_items_3.h │ │ ├── Polyhedron_traits_3.h │ │ ├── Polyhedron_traits_with_normals_3.h │ │ ├── Polyline_simplification_2 │ │ ├── Hybrid_squared_distance_cost.h │ │ ├── Scaled_squared_distance_cost.h │ │ ├── Squared_distance_cost.h │ │ ├── Stop_above_cost_threshold.h │ │ ├── Stop_below_count_ratio_threshold.h │ │ ├── Stop_below_count_threshold.h │ │ ├── Vertex_base_2.h │ │ └── simplify.h │ │ ├── Polynomial.h │ │ ├── Polynomial │ │ ├── Algebraic_structure_traits.h │ │ ├── Cached_extended_euclidean_algorithm.h │ │ ├── Chinese_remainder_traits.h │ │ ├── Coercion_traits.h │ │ ├── Degree.h │ │ ├── Fraction_traits.h │ │ ├── Get_arithmetic_kernel.h │ │ ├── Interpolator.h │ │ ├── Modular_traits.h │ │ ├── Monomial_representation.h │ │ ├── Polynomial_type.h │ │ ├── Real_embeddable_traits.h │ │ ├── Scalar_factor_traits.h │ │ ├── bezout_matrix.h │ │ ├── determinant.h │ │ ├── fwd.h │ │ ├── hgdelta_update.h │ │ ├── misc.h │ │ ├── modular_filter.h │ │ ├── modular_gcd.h │ │ ├── modular_gcd_utcf_algorithm_M.h │ │ ├── modular_gcd_utcf_dfai.h │ │ ├── modular_gcd_utils.h │ │ ├── polynomial_gcd.h │ │ ├── polynomial_gcd_implementations.h │ │ ├── polynomial_gcd_ntl.h │ │ ├── prs_resultant.h │ │ ├── resultant.h │ │ ├── square_free_factorize.h │ │ ├── sturm_habicht_sequence.h │ │ └── subresultants.h │ │ ├── Polynomial_traits_d.h │ │ ├── Polynomial_type_generator.h │ │ ├── Polynomials_1_2.h │ │ ├── Polynomials_1_3.h │ │ ├── Polynomials_2_2.h │ │ ├── Polynomials_2_3.h │ │ ├── Polynomials_for_line_3.h │ │ ├── Polytope_distance_d.h │ │ ├── Polytope_distance_d_traits_2.h │ │ ├── Polytope_distance_d_traits_3.h │ │ ├── Polytope_distance_d_traits_d.h │ │ ├── Profile_counter.h │ │ ├── Profile_timer.h │ │ ├── Projection_on_sphere_traits_3.h │ │ ├── Projection_traits_3.h │ │ ├── Projection_traits_xy_3.h │ │ ├── Projection_traits_xz_3.h │ │ ├── Projection_traits_yz_3.h │ │ ├── QP_functions.h │ │ ├── QP_models.h │ │ ├── QP_options.h │ │ ├── QP_solution.h │ │ ├── QP_solver │ │ ├── Initialization.h │ │ ├── QP__filtered_base.h │ │ ├── QP__filtered_base_impl.h │ │ ├── QP__partial_base.h │ │ ├── QP_basis_inverse.h │ │ ├── QP_basis_inverse_impl.h │ │ ├── QP_exact_bland_pricing.h │ │ ├── QP_full_exact_pricing.h │ │ ├── QP_full_filtered_pricing.h │ │ ├── QP_functions_impl.h │ │ ├── QP_partial_exact_pricing.h │ │ ├── QP_partial_filtered_pricing.h │ │ ├── QP_pricing_strategy.h │ │ ├── QP_solution_impl.h │ │ ├── QP_solver.h │ │ ├── QP_solver_bounds_impl.h │ │ ├── QP_solver_impl.h │ │ ├── QP_solver_nonstandardform_impl.h │ │ ├── Unbounded_direction.h │ │ ├── assertions.h │ │ ├── basic.h │ │ ├── debug.h │ │ └── functors.h │ │ ├── Qt │ │ ├── AlphaShapeGraphicsItem.h │ │ ├── ApolloniusGraphGraphicsItem.h │ │ ├── Basic_viewer_qt.h │ │ ├── CGAL_Qt_config.h │ │ ├── CircularArcGraphicsItem.h │ │ ├── ConstrainedTriangulationGraphicsItem.h │ │ ├── Converter.h │ │ ├── CreateOpenGLContext.h │ │ ├── DelaunayMeshTriangulationGraphicsItem.h │ │ ├── DemosMainWindow.h │ │ ├── DemosMainWindow_impl.h │ │ ├── GraphicsItem.h │ │ ├── GraphicsViewCircleInput.h │ │ ├── GraphicsViewCircularArcInput.h │ │ ├── GraphicsViewInput.h │ │ ├── GraphicsViewIsoRectangleInput.h │ │ ├── GraphicsViewLineInput.h │ │ ├── GraphicsViewNavigation.h │ │ ├── GraphicsViewNavigation_impl.h │ │ ├── GraphicsViewPointInput.h │ │ ├── GraphicsViewPolygonWithHolesInput.h │ │ ├── GraphicsViewPolylineInput.h │ │ ├── GraphicsViewPolylineInput_impl.h │ │ ├── ImageInterface.ui │ │ ├── LineGraphicsItem.h │ │ ├── PainterOstream.h │ │ ├── PointsGraphicsItem.h │ │ ├── PointsInKdTreeGraphicsItem.h │ │ ├── PolygonGraphicsItem.h │ │ ├── PolygonWithHolesGraphicsItem.h │ │ ├── PolylinesGraphicsItem.h │ │ ├── PowerdiagramGraphicsItem.h │ │ ├── RegularGridGraphicsItem.h │ │ ├── RegularGridVectorFieldGraphicsItem.h │ │ ├── RegularTriangulationGraphicsItem.h │ │ ├── SegmentDelaunayGraphGraphicsItem.h │ │ ├── SegmentDelaunayGraphLinfGraphicsItem.h │ │ ├── SegmentsGraphicsItem.h │ │ ├── StreamLinesGraphicsItem.h │ │ ├── TriangulationGraphicsItem.h │ │ ├── VoronoiGraphicsItem.h │ │ ├── camera.h │ │ ├── camera_impl.h │ │ ├── constraint.h │ │ ├── constraint_impl.h │ │ ├── debug.h │ │ ├── debug_impl.h │ │ ├── frame.h │ │ ├── frame_impl.h │ │ ├── image_interface.h │ │ ├── init_ogl_context.h │ │ ├── keyFrameInterpolator.h │ │ ├── keyFrameInterpolator_impl.h │ │ ├── manipulatedCameraFrame.h │ │ ├── manipulatedCameraFrame_impl.h │ │ ├── manipulatedFrame.h │ │ ├── manipulatedFrame_impl.h │ │ ├── mouseGrabber.h │ │ ├── mouseGrabber_impl.h │ │ ├── qglviewer.h │ │ ├── qglviewer_impl.h │ │ ├── qglviewer_impl_list.h │ │ ├── quaternion.h │ │ ├── quaternion_impl.h │ │ ├── resources.h │ │ ├── resources │ │ │ └── qglviewer-icon.xpm │ │ ├── resources_impl.h │ │ ├── utility.h │ │ ├── utility_impl.h │ │ ├── vec.h │ │ ├── vec_impl.h │ │ └── viewer_actions.h │ │ ├── Quadtree.h │ │ ├── Quotient.h │ │ ├── Quotient_fwd.h │ │ ├── RS │ │ ├── Gmpfr_make_unique.h │ │ ├── ak_1.h │ │ ├── ak_z_1.h │ │ ├── algebraic_1.h │ │ ├── algebraic_z_1.h │ │ ├── bisection_refiner_1.h │ │ ├── comparator_1.h │ │ ├── dyadic.h │ │ ├── exact_signat_1.h │ │ ├── functors_1.h │ │ ├── functors_z_1.h │ │ ├── polynomial_converter_1.h │ │ ├── rs23_k_isolator_1.h │ │ ├── rs2_calls.h │ │ ├── rs2_isolator_1.h │ │ ├── rs3_k_refiner_1.h │ │ ├── rs3_refiner_1.h │ │ └── signat_1.h │ │ ├── Random.h │ │ ├── Random_access_adaptor.h │ │ ├── Random_access_value_adaptor.h │ │ ├── Random_convex_hull_traits_2.h │ │ ├── Random_convex_set_traits_2.h │ │ ├── Random_impl.h │ │ ├── Random_polygon_2_sweep.h │ │ ├── Random_polygon_traits_2.h │ │ ├── Range_segment_tree_traits.h │ │ ├── Range_tree_d.h │ │ ├── Range_tree_k.h │ │ ├── Rational_traits.h │ │ ├── Ray_2.h │ │ ├── Ray_3.h │ │ ├── Real_embeddable_traits.h │ │ ├── Real_timer.h │ │ ├── Real_timer_impl.h │ │ ├── Reconstruction_triangulation_3.h │ │ ├── Rectangular_p_center_traits_2.h │ │ ├── Referenced_argument.h │ │ ├── Regular_complex_d.h │ │ ├── Regular_grid_2.h │ │ ├── Regular_triangulation.h │ │ ├── Regular_triangulation_2.h │ │ ├── Regular_triangulation_3.h │ │ ├── Regular_triangulation_adaptation_policies_2.h │ │ ├── Regular_triangulation_adaptation_traits_2.h │ │ ├── Regular_triangulation_cell_base_3.h │ │ ├── Regular_triangulation_cell_base_with_weighted_circumcenter_3.h │ │ ├── Regular_triangulation_euclidean_traits_3.h │ │ ├── Regular_triangulation_face_base_2.h │ │ ├── Regular_triangulation_traits_adapter.h │ │ ├── Regular_triangulation_vertex_base_2.h │ │ ├── Regular_triangulation_vertex_base_3.h │ │ ├── Residue.h │ │ ├── Ridges.h │ │ ├── Rigid_triangle_mesh_collision_detection.h │ │ ├── Robust_circumcenter_traits_3.h │ │ ├── Robust_construction.h │ │ ├── Robust_weighted_circumcenter_filtered_traits_3.h │ │ ├── Root_for_circles_2_2.h │ │ ├── Root_for_spheres_2_3.h │ │ ├── Root_of_traits.h │ │ ├── Root_of_traits_specializations.h │ │ ├── Rotational_sweep_visibility_2.h │ │ ├── Runge_kutta_integrator_2.h │ │ ├── SCIP_mixed_integer_program_traits.h │ │ ├── SEP_header.h │ │ ├── SEP_to_ImageIO.h │ │ ├── SMDS_3 │ │ ├── Dump_c3t3.h │ │ ├── Mesh_complex_3_in_triangulation_3_fwd.h │ │ ├── internal │ │ │ ├── Boundary_of_subdomain_of_complex_3_in_triangulation_3_to_off.h │ │ │ ├── Handle_IO_for_pair_of_int.h │ │ │ ├── SMDS_3_helper.h │ │ │ └── indices_management.h │ │ ├── io_signature.h │ │ ├── tet_soup_to_c3t3.h │ │ └── utilities.h │ │ ├── STL_Extension │ │ └── internal │ │ │ ├── Has_features.h │ │ │ ├── Has_member_visited.h │ │ │ ├── Has_nested_type_Bare_point.h │ │ │ ├── boost │ │ │ ├── array_binary_tree.hpp │ │ │ ├── mutable_heap.hpp │ │ │ ├── mutable_queue.hpp │ │ │ └── relaxed_heap.hpp │ │ │ ├── info_check.h │ │ │ ├── mesh_option_classes.h │ │ │ ├── mesh_parameters_interface.h │ │ │ └── parameters_interface.h │ │ ├── Scalar_factor_traits.h │ │ ├── Scale_space_reconstruction_3 │ │ ├── Advancing_front_mesher.h │ │ ├── Alpha_shape_mesher.h │ │ ├── Jet_smoother.h │ │ ├── Shape_construction_3.h │ │ ├── Weighted_PCA_smoother.h │ │ └── internal │ │ │ └── Auto_count.h │ │ ├── Scale_space_surface_reconstruction_3.h │ │ ├── Search_traits.h │ │ ├── Search_traits_2.h │ │ ├── Search_traits_3.h │ │ ├── Search_traits_adapter.h │ │ ├── Search_traits_d.h │ │ ├── Segment_2.h │ │ ├── Segment_3.h │ │ ├── Segment_Delaunay_graph_2.h │ │ ├── Segment_Delaunay_graph_2 │ │ ├── Are_parallel_C2.h │ │ ├── Are_same_points_C2.h │ │ ├── Are_same_segments_C2.h │ │ ├── Arrangement_enum.h │ │ ├── Arrangement_type_C2.h │ │ ├── Arrangement_type_non_intersecting_C2.h │ │ ├── Basic_predicates_C2.h │ │ ├── Cartesian_converter.h │ │ ├── Compare_x_2.h │ │ ├── Compare_y_2.h │ │ ├── Construct_storage_site_2.h │ │ ├── Construct_storage_site_with_info_2.h │ │ ├── Constructions_C2.h │ │ ├── Filtered_traits_base_2.h │ │ ├── Filtered_traits_concept_check_tags.h │ │ ├── Finite_edge_interior_conflict_C2.h │ │ ├── Infinite_edge_interior_conflict_C2.h │ │ ├── Is_degenerate_edge_C2.h │ │ ├── Kernel_wrapper_2.h │ │ ├── Orientation_C2.h │ │ ├── Oriented_side_C2.h │ │ ├── Oriented_side_of_bisector_C2.h │ │ ├── Predicates_C2.h │ │ ├── Segment_Delaunay_graph_2_impl.h │ │ ├── Segment_Delaunay_graph_hierarchy_2_impl.h │ │ ├── Sqrt_extension_2.h │ │ ├── Traits_base_2.h │ │ ├── Traits_wrapper_2.h │ │ ├── Triangulation_face_base_with_edges_2.h │ │ ├── Vertex_conflict_C2.h │ │ ├── Voronoi_vertex_C2.h │ │ ├── Voronoi_vertex_ring_C2.h │ │ ├── Voronoi_vertex_sqrt_field_C2.h │ │ ├── Voronoi_vertex_sqrt_field_new_C2.h │ │ ├── basic.h │ │ └── in_place_edge_list.h │ │ ├── Segment_Delaunay_graph_Linf_2.h │ │ ├── Segment_Delaunay_graph_Linf_2 │ │ ├── Basic_predicates_C2.h │ │ ├── Bisector_Linf.h │ │ ├── Constructions_C2.h │ │ ├── Filtered_traits_base_2.h │ │ ├── Finite_edge_interior_conflict_C2.h │ │ ├── Infinite_edge_interior_conflict_C2.h │ │ ├── Orientation_Linf_C2.h │ │ ├── Oriented_side_C2.h │ │ ├── Oriented_side_of_bisector_C2.h │ │ ├── Predicates_C2.h │ │ ├── Segment_Delaunay_graph_Linf_2_impl.h │ │ ├── Segment_Delaunay_graph_Linf_hierarchy_2_impl.h │ │ ├── Traits_base_2.h │ │ ├── Vertex_conflict_C2.h │ │ ├── Voronoi_vertex_C2.h │ │ ├── Voronoi_vertex_ring_C2.h │ │ ├── Voronoi_vertex_sqrt_field_new_C2.h │ │ └── basic.h │ │ ├── Segment_Delaunay_graph_Linf_filtered_traits_2.h │ │ ├── Segment_Delaunay_graph_Linf_hierarchy_2.h │ │ ├── Segment_Delaunay_graph_Linf_traits_2.h │ │ ├── Segment_Delaunay_graph_adaptation_policies_2.h │ │ ├── Segment_Delaunay_graph_adaptation_traits_2.h │ │ ├── Segment_Delaunay_graph_face_base_2.h │ │ ├── Segment_Delaunay_graph_filtered_traits_2.h │ │ ├── Segment_Delaunay_graph_hierarchy_2.h │ │ ├── Segment_Delaunay_graph_hierarchy_vertex_base_2.h │ │ ├── Segment_Delaunay_graph_simple_site_2.h │ │ ├── Segment_Delaunay_graph_simple_storage_site_2.h │ │ ├── Segment_Delaunay_graph_site_2.h │ │ ├── Segment_Delaunay_graph_storage_site_2.h │ │ ├── Segment_Delaunay_graph_storage_site_with_info_2.h │ │ ├── Segment_Delaunay_graph_storage_traits_2.h │ │ ├── Segment_Delaunay_graph_storage_traits_with_info_2.h │ │ ├── Segment_Delaunay_graph_traits_2.h │ │ ├── Segment_Delaunay_graph_vertex_base_2.h │ │ ├── Segment_tree_d.h │ │ ├── Segment_tree_k.h │ │ ├── Set_movable_separability_2 │ │ ├── Single_mold_translational_casting │ │ │ ├── is_pullout_direction.h │ │ │ ├── pullout_directions.h │ │ │ └── top_edges.h │ │ └── internal │ │ │ ├── Circle_arrangment.h │ │ │ └── Utils.h │ │ ├── Shape_detection.h │ │ ├── Shape_detection │ │ ├── Efficient_RANSAC.h │ │ ├── Efficient_RANSAC │ │ │ ├── Cone.h │ │ │ ├── Cylinder.h │ │ │ ├── Efficient_RANSAC.h │ │ │ ├── Efficient_RANSAC_traits.h │ │ │ ├── Octree.h │ │ │ ├── Plane.h │ │ │ ├── Shape_base.h │ │ │ ├── Sphere.h │ │ │ ├── Torus.h │ │ │ └── property_map.h │ │ ├── Region_growing.h │ │ └── Region_growing │ │ │ ├── Point_set.h │ │ │ ├── Point_set │ │ │ ├── K_neighbor_query.h │ │ │ ├── Least_squares_circle_fit_region.h │ │ │ ├── Least_squares_circle_fit_sorting.h │ │ │ ├── Least_squares_cylinder_fit_region.h │ │ │ ├── Least_squares_cylinder_fit_sorting.h │ │ │ ├── Least_squares_line_fit_region.h │ │ │ ├── Least_squares_line_fit_sorting.h │ │ │ ├── Least_squares_plane_fit_region.h │ │ │ ├── Least_squares_plane_fit_sorting.h │ │ │ ├── Least_squares_sphere_fit_region.h │ │ │ ├── Least_squares_sphere_fit_sorting.h │ │ │ └── Sphere_neighbor_query.h │ │ │ ├── Polygon_mesh.h │ │ │ ├── Polygon_mesh │ │ │ ├── Least_squares_plane_fit_region.h │ │ │ ├── Least_squares_plane_fit_sorting.h │ │ │ ├── One_ring_neighbor_query.h │ │ │ └── Polyline_graph.h │ │ │ ├── Region_growing.h │ │ │ ├── Segment_set.h │ │ │ ├── Segment_set │ │ │ ├── Least_squares_line_fit_region.h │ │ │ └── Least_squares_line_fit_sorting.h │ │ │ └── internal │ │ │ ├── cylinder_fitting.h │ │ │ ├── property_map.h │ │ │ ├── region_growing_traits.h │ │ │ └── utils.h │ │ ├── Shape_regularization.h │ │ ├── Shape_regularization │ │ ├── Contours │ │ │ ├── Longest_direction_2.h │ │ │ ├── Multiple_directions_2.h │ │ │ └── User_defined_directions_2.h │ │ ├── QP_regularization.h │ │ ├── Segments │ │ │ ├── Angle_regularization_2.h │ │ │ ├── Delaunay_neighbor_query_2.h │ │ │ └── Offset_regularization_2.h │ │ ├── internal │ │ │ ├── Closed_contour_2.h │ │ │ ├── Collinear_groups_2.h │ │ │ ├── Contour_base_2.h │ │ │ ├── Contour_regularization_2.h │ │ │ ├── Open_contour_2.h │ │ │ ├── Orthogonal_groups_2.h │ │ │ ├── Parallel_groups_2.h │ │ │ ├── Segment_wrapper_2.h │ │ │ ├── Unique_segments_2.h │ │ │ └── utils.h │ │ ├── regularize_contours.h │ │ ├── regularize_planes.h │ │ └── regularize_segments.h │ │ ├── Side_of_bounded_square_2.h │ │ ├── Side_of_oriented_square_2.h │ │ ├── Side_of_triangle_mesh.h │ │ ├── Simple_cartesian.h │ │ ├── Simple_circular_kernel_2.h │ │ ├── Simple_homogeneous.h │ │ ├── Simple_polygon_visibility_2.h │ │ ├── Simple_spherical_kernel_3.h │ │ ├── Simplicial_mesh_cell_base_3.h │ │ ├── Simplicial_mesh_vertex_base_3.h │ │ ├── Single.h │ │ ├── Sixtuple.h │ │ ├── Sizing_field_with_aabb_tree.h │ │ ├── Skin_surface_3.h │ │ ├── Skin_surface_base_3.h │ │ ├── Skin_surface_filtered_traits_3.h │ │ ├── Skin_surface_marching_tetrahedra_observer_3.h │ │ ├── Skin_surface_polyhedral_items_3.h │ │ ├── Skin_surface_polyhedral_items_with_face_information.h │ │ ├── Skin_surface_quadratic_surface_3.h │ │ ├── Skin_surface_refinement_policy_3.h │ │ ├── Skin_surface_traits_3.h │ │ ├── Skiplist.h │ │ ├── Small_side_angle_bisector_decomposition_2.h │ │ ├── Small_unordered_map.h │ │ ├── Small_unordered_set.h │ │ ├── Snap_rounding_2.h │ │ ├── Snap_rounding_kd_2.h │ │ ├── Snap_rounding_traits_2.h │ │ ├── Sorted_matrix_search_traits_adaptor.h │ │ ├── Spatial_lock_grid_3.h │ │ ├── Spatial_searching │ │ └── internal │ │ │ ├── Get_dimension_tag.h │ │ │ ├── K_neighbor_search.h │ │ │ ├── Search_helpers.h │ │ │ └── bounded_priority_queue.h │ │ ├── Spatial_sort_traits_adapter_2.h │ │ ├── Spatial_sort_traits_adapter_3.h │ │ ├── Spatial_sort_traits_adapter_d.h │ │ ├── Spatial_sorting │ │ └── internal │ │ │ └── Transform_coordinates_traits_3.h │ │ ├── Sphere_3.h │ │ ├── Spherical_kernel_3.h │ │ ├── Spherical_kernel_intersections.h │ │ ├── Spherical_kernel_type_equality_wrapper.h │ │ ├── Splitters.h │ │ ├── Sqrt_extension.h │ │ ├── Sqrt_extension │ │ ├── Algebraic_extension_traits.h │ │ ├── Algebraic_structure_traits.h │ │ ├── Chinese_remainder_traits.h │ │ ├── Coercion_traits.h │ │ ├── Eigen_NumTraits.h │ │ ├── Fraction_traits.h │ │ ├── Get_arithmetic_kernel.h │ │ ├── Modular_traits.h │ │ ├── Real_embeddable_traits.h │ │ ├── Scalar_factor_traits.h │ │ ├── Sqrt_extension_type.h │ │ ├── Wang_traits.h │ │ ├── convert_to_bfi.h │ │ └── io.h │ │ ├── Sqrt_extension_fwd.h │ │ ├── Static_filtered_predicate.h │ │ ├── Straight_skeleton_2.h │ │ ├── Straight_skeleton_2 │ │ ├── IO │ │ │ ├── Dxf_stream.h │ │ │ ├── Dxf_writer.h │ │ │ └── print.h │ │ ├── Polygon_iterators.h │ │ ├── Polygon_offset_builder_2_impl.h │ │ ├── Straight_skeleton_aux.h │ │ ├── Straight_skeleton_builder_2_impl.h │ │ ├── Straight_skeleton_builder_events_2.h │ │ ├── Straight_skeleton_builder_traits_2_aux.h │ │ ├── Straight_skeleton_builder_traits_2_caches.h │ │ ├── assertions.h │ │ ├── debug.h │ │ └── test.h │ │ ├── Straight_skeleton_builder_2.h │ │ ├── Straight_skeleton_builder_traits_2.h │ │ ├── Straight_skeleton_converter_2.h │ │ ├── Straight_skeleton_face_base_2.h │ │ ├── Straight_skeleton_halfedge_base_2.h │ │ ├── Straight_skeleton_items_2.h │ │ ├── Straight_skeleton_vertex_base_2.h │ │ ├── Stream_lines_2.h │ │ ├── Stream_support │ │ └── internal │ │ │ └── Geometry_container.h │ │ ├── Subdivision_method_3 │ │ ├── internal │ │ │ ├── Euler_extensions.h │ │ │ └── subdivision_hosts_impl_3.h │ │ ├── subdivision_hosts_3.h │ │ ├── subdivision_masks_3.h │ │ └── subdivision_methods_3.h │ │ ├── Subiterator.h │ │ ├── Surface_mesh.h │ │ ├── Surface_mesh │ │ ├── IO.h │ │ ├── IO │ │ │ ├── 3MF.h │ │ │ ├── OFF.h │ │ │ └── PLY.h │ │ ├── Properties.h │ │ ├── Surface_mesh.h │ │ └── Surface_mesh_fwd.h │ │ ├── Surface_mesh_approximation │ │ ├── L21_metric_plane_proxy.h │ │ ├── L2_metric_plane_proxy.h │ │ └── approximate_triangle_mesh.h │ │ ├── Surface_mesh_cell_base_3.h │ │ ├── Surface_mesh_complex_2_in_triangulation_3.h │ │ ├── Surface_mesh_default_criteria_3.h │ │ ├── Surface_mesh_default_edges_criteria_3.h │ │ ├── Surface_mesh_default_triangulation_3.h │ │ ├── Surface_mesh_deformation.h │ │ ├── Surface_mesh_parameterization │ │ ├── ARAP_parameterizer_3.h │ │ ├── Barycentric_mapping_parameterizer_3.h │ │ ├── Circular_border_parameterizer_3.h │ │ ├── Discrete_authalic_parameterizer_3.h │ │ ├── Discrete_conformal_map_parameterizer_3.h │ │ ├── Error_code.h │ │ ├── Fixed_border_parameterizer_3.h │ │ ├── IO │ │ │ └── File_off.h │ │ ├── Iterative_authalic_parameterizer_3.h │ │ ├── LSCM_parameterizer_3.h │ │ ├── MVC_post_processor_3.h │ │ ├── Mean_value_coordinates_parameterizer_3.h │ │ ├── Orbifold_Tutte_parameterizer_3.h │ │ ├── Square_border_parameterizer_3.h │ │ ├── Two_vertices_parameterizer_3.h │ │ ├── internal │ │ │ ├── Bool_property_map.h │ │ │ ├── Containers_filler.h │ │ │ ├── kernel_traits.h │ │ │ ├── orbifold_cone_helper.h │ │ │ └── validity.h │ │ ├── measure_distortion.h │ │ ├── orbifold_enums.h │ │ ├── orbifold_shortest_path.h │ │ └── parameterize.h │ │ ├── Surface_mesh_segmentation │ │ └── internal │ │ │ ├── AABB_traits.h │ │ │ ├── AABB_traversal_traits.h │ │ │ ├── Disk_samplers.h │ │ │ ├── Expectation_maximization.h │ │ │ ├── Filters.h │ │ │ ├── K_means_clustering.h │ │ │ ├── SDF_calculation.h │ │ │ ├── Surface_mesh_segmentation.h │ │ │ └── auxiliary │ │ │ └── graph.h │ │ ├── Surface_mesh_shortest_path.h │ │ ├── Surface_mesh_shortest_path │ │ ├── Surface_mesh_shortest_path.h │ │ ├── Surface_mesh_shortest_path_traits.h │ │ ├── barycentric.h │ │ ├── function_objects.h │ │ └── internal │ │ │ ├── Cone_expansion_event.h │ │ │ ├── Cone_tree.h │ │ │ └── misc_functions.h │ │ ├── Surface_mesh_simplification │ │ ├── Edge_collapse_visitor_base.h │ │ ├── Policies │ │ │ └── Edge_collapse │ │ │ │ ├── Bounded_distance_placement.h │ │ │ │ ├── Bounded_normal_change_filter.h │ │ │ │ ├── Bounded_normal_change_placement.h │ │ │ │ ├── Constrained_placement.h │ │ │ │ ├── Count_ratio_stop_predicate.h │ │ │ │ ├── Count_stop_predicate.h │ │ │ │ ├── Edge_count_ratio_stop_predicate.h │ │ │ │ ├── Edge_count_stop_predicate.h │ │ │ │ ├── Edge_length_cost.h │ │ │ │ ├── Edge_length_stop_predicate.h │ │ │ │ ├── Edge_profile.h │ │ │ │ ├── Face_count_ratio_stop_predicate.h │ │ │ │ ├── Face_count_stop_predicate.h │ │ │ │ ├── FastEnvelope_filter.h │ │ │ │ ├── GarlandHeckbert_plane_policies.h │ │ │ │ ├── GarlandHeckbert_policies.h │ │ │ │ ├── GarlandHeckbert_probabilistic_plane_policies.h │ │ │ │ ├── GarlandHeckbert_probabilistic_triangle_policies.h │ │ │ │ ├── GarlandHeckbert_triangle_policies.h │ │ │ │ ├── LindstromTurk.h │ │ │ │ ├── LindstromTurk_cost.h │ │ │ │ ├── LindstromTurk_placement.h │ │ │ │ ├── Midpoint_placement.h │ │ │ │ ├── Polyhedral_envelope_filter.h │ │ │ │ └── internal │ │ │ │ ├── GarlandHeckbert_functions.h │ │ │ │ ├── GarlandHeckbert_policy_base.h │ │ │ │ ├── LindstromTurk_params.h │ │ │ │ └── Lindstrom_Turk_core.h │ │ ├── edge_collapse.h │ │ └── internal │ │ │ ├── Common.h │ │ │ └── Edge_collapse.h │ │ ├── Surface_mesh_skeletonization │ │ └── internal │ │ │ ├── Curve_skeleton.h │ │ │ ├── Debug.h │ │ │ └── Detect_degeneracy.h │ │ ├── Surface_mesh_topology │ │ └── internal │ │ │ ├── Edge_weight_functor.h │ │ │ ├── Facewidth.h │ │ │ ├── Functors_for_face_graph_wrapper.h │ │ │ ├── Generic_map_selector.h │ │ │ ├── Iterators_for_face_graph_wrapper.h │ │ │ ├── Minimal_quadrangulation.h │ │ │ ├── Path_generators.h │ │ │ ├── Path_on_surface_with_rle.h │ │ │ └── Shortest_noncontractible_cycle.h │ │ ├── Surface_mesh_traits_generator_3.h │ │ ├── Surface_mesh_triangulation_generator_3.h │ │ ├── Surface_mesh_vertex_base_3.h │ │ ├── Surface_mesher │ │ ├── Combining_oracle.h │ │ ├── Has_edges.h │ │ ├── Implicit_surface_oracle_3.h │ │ ├── Intersection_data_structure_3.h │ │ ├── Null_oracle_visitor.h │ │ ├── Point_surface_indices_oracle_visitor.h │ │ ├── Poisson_implicit_surface_oracle_3.h │ │ ├── Polyhedral_oracle.h │ │ ├── Profile_counter.h │ │ ├── Profile_timer.h │ │ ├── Sphere_oracle_3.h │ │ ├── Standard_criteria.h │ │ ├── Surface_mesher.h │ │ ├── Surface_mesher_edges_level.h │ │ ├── Surface_mesher_edges_level_visitor.h │ │ ├── Surface_mesher_manifold.h │ │ ├── Surface_mesher_regular_edges.h │ │ ├── Surface_mesher_visitor.h │ │ ├── Types_generators.h │ │ ├── Verbose_flag.h │ │ ├── Vertices_on_the_same_psc_element_criterion.h │ │ └── Vertices_on_the_same_surface_criterion.h │ │ ├── Surface_mesher_generator.h │ │ ├── Surface_sweep_2.h │ │ ├── Surface_sweep_2 │ │ ├── Arr_basic_insertion_traits_2.h │ │ ├── Arr_batched_pl_ss_visitor.h │ │ ├── Arr_construction_event.h │ │ ├── Arr_construction_event_base.h │ │ ├── Arr_construction_ss_visitor.h │ │ ├── Arr_construction_subcurve.h │ │ ├── Arr_default_overlay_traits_base.h │ │ ├── Arr_insertion_ss_visitor.h │ │ ├── Arr_insertion_traits_2.h │ │ ├── Arr_no_intersection_insertion_ss_visitor.h │ │ ├── Arr_overlay_event.h │ │ ├── Arr_overlay_ss_visitor.h │ │ ├── Arr_overlay_subcurve.h │ │ ├── Arr_overlay_traits_2.h │ │ ├── Arr_vert_decomp_ss_visitor.h │ │ ├── Curve_comparer.h │ │ ├── Default_event.h │ │ ├── Default_event_base.h │ │ ├── Default_subcurve.h │ │ ├── Default_visitor.h │ │ ├── Default_visitor_base.h │ │ ├── Do_interior_intersect_visitor.h │ │ ├── Event_comparer.h │ │ ├── Intersection_points_visitor.h │ │ ├── No_intersection_surface_sweep_2_impl.h │ │ ├── No_overlap_event.h │ │ ├── No_overlap_event_base.h │ │ ├── No_overlap_subcurve.h │ │ ├── Random_access_output_iterator.h │ │ ├── Subcurves_visitor.h │ │ ├── Surface_sweep_2_debug.h │ │ ├── Surface_sweep_2_impl.h │ │ └── Surface_sweep_2_utils.h │ │ ├── Surface_sweep_2_algorithms.h │ │ ├── Sweep_line_2_algorithms.h │ │ ├── TDS_2 │ │ └── internal │ │ │ ├── Edge_hash_function.h │ │ │ └── edge_list.h │ │ ├── TDS_3 │ │ └── internal │ │ │ ├── Dummy_tds_3.h │ │ │ ├── Triangulation_ds_circulators_3.h │ │ │ └── Triangulation_ds_iterators_3.h │ │ ├── TDS_full_cell_default_storage_policy.h │ │ ├── TDS_full_cell_mirror_storage_policy.h │ │ ├── Tetrahedral_remeshing │ │ ├── Remeshing_cell_base_3.h │ │ ├── Remeshing_triangulation_3.h │ │ ├── Remeshing_vertex_base_3.h │ │ ├── Sizing_field.h │ │ ├── Uniform_sizing_field.h │ │ ├── internal │ │ │ ├── FMLS.h │ │ │ ├── collapse_short_edges.h │ │ │ ├── compute_c3t3_statistics.h │ │ │ ├── flip_edges.h │ │ │ ├── smooth_vertices.h │ │ │ ├── split_long_edges.h │ │ │ ├── tetrahedral_adaptive_remeshing_impl.h │ │ │ └── tetrahedral_remeshing_helpers.h │ │ └── tetrahedral_remeshing_io.h │ │ ├── Tetrahedron_3.h │ │ ├── Three │ │ ├── Buffer_objects.h │ │ ├── Edge_container.h │ │ ├── Point_container.h │ │ ├── Polyhedron_demo_io_plugin_interface.h │ │ ├── Polyhedron_demo_plugin_helper.h │ │ ├── Polyhedron_demo_plugin_interface.h │ │ ├── Primitive_container.h │ │ ├── Scene_draw_interface.h │ │ ├── Scene_group_item.h │ │ ├── Scene_interface.h │ │ ├── Scene_item.h │ │ ├── Scene_item_config.h │ │ ├── Scene_item_rendering_helper.h │ │ ├── Scene_item_with_properties.h │ │ ├── Scene_print_item_interface.h │ │ ├── Scene_transparent_interface.h │ │ ├── Scene_zoomable_item_interface.h │ │ ├── TextRenderer.h │ │ ├── Three.h │ │ ├── Triangle_container.h │ │ ├── Viewer_config.h │ │ ├── Viewer_interface.h │ │ └── exceptions.h │ │ ├── Threetuple.h │ │ ├── Time_stamper.h │ │ ├── Timer.h │ │ ├── Timer_impl.h │ │ ├── Transform_iterator.h │ │ ├── Tree_base.h │ │ ├── Tree_traits.h │ │ ├── Triangle_2.h │ │ ├── Triangle_3.h │ │ ├── Triangle_accessor_3.h │ │ ├── Triangular_expansion_visibility_2.h │ │ ├── Triangular_field_2.h │ │ ├── Triangulated_mixed_complex_observer_3.h │ │ ├── Triangulation.h │ │ ├── Triangulation │ │ └── internal │ │ │ ├── Combination_enumerator.h │ │ │ ├── Dummy_TDS.h │ │ │ ├── Static_or_dynamic_array.h │ │ │ ├── Triangulation_ds_iterators.h │ │ │ └── utilities.h │ │ ├── Triangulation_2.h │ │ ├── Triangulation_2 │ │ ├── insert_constraints.h │ │ └── internal │ │ │ ├── CTP2_subconstraint_graph.h │ │ │ ├── Constraint_hierarchy_2.h │ │ │ ├── In_domain.h │ │ │ ├── Polyline_constraint_hierarchy_2.h │ │ │ └── Triangulation_line_face_circulator_2.h │ │ ├── Triangulation_2_projection_traits_3.h │ │ ├── Triangulation_2_to_lcc.h │ │ ├── Triangulation_2_traits_3.h │ │ ├── Triangulation_3.h │ │ ├── Triangulation_3 │ │ └── internal │ │ │ ├── Delaunay_triangulation_hierarchy_3.h │ │ │ └── Triangulation_segment_traverser_3_impl.h │ │ ├── Triangulation_3_to_lcc.h │ │ ├── Triangulation_cell_base_3.h │ │ ├── Triangulation_cell_base_with_info_3.h │ │ ├── Triangulation_conformer_2.h │ │ ├── Triangulation_data_structure.h │ │ ├── Triangulation_data_structure_2.h │ │ ├── Triangulation_data_structure_3.h │ │ ├── Triangulation_data_structure_using_list_2.h │ │ ├── Triangulation_default_data_structure_2.h │ │ ├── Triangulation_ds_cell_base_3.h │ │ ├── Triangulation_ds_circulators_2.h │ │ ├── Triangulation_ds_face_2.h │ │ ├── Triangulation_ds_face_base_2.h │ │ ├── Triangulation_ds_full_cell.h │ │ ├── Triangulation_ds_iterators_2.h │ │ ├── Triangulation_ds_vertex.h │ │ ├── Triangulation_ds_vertex_2.h │ │ ├── Triangulation_ds_vertex_base_2.h │ │ ├── Triangulation_ds_vertex_base_3.h │ │ ├── Triangulation_face.h │ │ ├── Triangulation_face_base_2.h │ │ ├── Triangulation_face_base_with_id_2.h │ │ ├── Triangulation_face_base_with_info_2.h │ │ ├── Triangulation_full_cell.h │ │ ├── Triangulation_geom_traits_3.h │ │ ├── Triangulation_hierarchy_2.h │ │ ├── Triangulation_hierarchy_3.h │ │ ├── Triangulation_hierarchy_vertex_base_2.h │ │ ├── Triangulation_hierarchy_vertex_base_3.h │ │ ├── Triangulation_incremental_builder_3.h │ │ ├── Triangulation_on_sphere_2.h │ │ ├── Triangulation_on_sphere_2 │ │ ├── IO │ │ │ └── OFF.h │ │ └── internal │ │ │ ├── arc_on_sphere_2_subsampling.h │ │ │ └── get_precision_bounds.h │ │ ├── Triangulation_on_sphere_face_base_2.h │ │ ├── Triangulation_on_sphere_vertex_base_2.h │ │ ├── Triangulation_segment_traverser_3.h │ │ ├── Triangulation_simplex_3.h │ │ ├── Triangulation_sphere_line_face_circulator_2.h │ │ ├── Triangulation_structural_filtering_traits.h │ │ ├── Triangulation_utils_2.h │ │ ├── Triangulation_utils_3.h │ │ ├── Triangulation_vertex.h │ │ ├── Triangulation_vertex_base_2.h │ │ ├── Triangulation_vertex_base_3.h │ │ ├── Triangulation_vertex_base_with_id_2.h │ │ ├── Triangulation_vertex_base_with_info_2.h │ │ ├── Triangulation_vertex_base_with_info_3.h │ │ ├── Trisegment_2.h │ │ ├── Twotuple.h │ │ ├── Umbilics.h │ │ ├── Uncertain.h │ │ ├── Unfiltered_predicate_adaptor.h │ │ ├── Union_find.h │ │ ├── Union_of_balls_3.h │ │ ├── Unique_hash_map.h │ │ ├── Variational_shape_approximation.h │ │ ├── Vector_2.h │ │ ├── Vector_3.h │ │ ├── Vertex2Data_Property_Map_with_std_map.h │ │ ├── Visibility_2 │ │ └── visibility_utils.h │ │ ├── Voronoi_diagram_2.h │ │ ├── Voronoi_diagram_2 │ │ ├── Accessor.h │ │ ├── Adaptation_traits_base_2.h │ │ ├── Adaptation_traits_functors.h │ │ ├── Apollonius_graph_degeneracy_testers.h │ │ ├── Apollonius_graph_nearest_site_2.h │ │ ├── Cached_degeneracy_testers.h │ │ ├── Circulator_adaptors.h │ │ ├── Connected_components.h │ │ ├── Construct_dual_points.h │ │ ├── Default_site_inserters.h │ │ ├── Default_site_removers.h │ │ ├── Degeneracy_tester_binders.h │ │ ├── Delaunay_triangulation_degeneracy_testers.h │ │ ├── Delaunay_triangulation_nearest_site_2.h │ │ ├── Delaunay_triangulation_on_sphere_degeneracy_testers.h │ │ ├── Dummy_iterator.h │ │ ├── Edge_less.h │ │ ├── Face.h │ │ ├── Finder_classes.h │ │ ├── Halfedge.h │ │ ├── Handle_adaptor.h │ │ ├── Identity_rejectors.h │ │ ├── Iterator_adaptors.h │ │ ├── Policy_base.h │ │ ├── Regular_triangulation_degeneracy_testers.h │ │ ├── Regular_triangulation_nearest_site_2.h │ │ ├── Segment_Delaunay_graph_degeneracy_testers.h │ │ ├── Segment_Delaunay_graph_nearest_site_2.h │ │ ├── Site_accessors.h │ │ ├── Unbounded_edges.h │ │ ├── Unbounded_faces.h │ │ ├── Validity_testers.h │ │ ├── Vertex.h │ │ └── basic.h │ │ ├── Voronoi_intersection_2_traits_3.h │ │ ├── Weighted_Minkowski_distance.h │ │ ├── Weighted_point_2.h │ │ ├── Weighted_point_3.h │ │ ├── Weights.h │ │ ├── Weights │ │ ├── authalic_weights.h │ │ ├── barycentric_region_weights.h │ │ ├── cotangent_weights.h │ │ ├── discrete_harmonic_weights.h │ │ ├── internal │ │ │ ├── pmp_weights_deprecated.h │ │ │ ├── polygon_utils_2.h │ │ │ └── utils.h │ │ ├── inverse_distance_weights.h │ │ ├── mean_value_weights.h │ │ ├── mixed_voronoi_region_weights.h │ │ ├── shepard_weights.h │ │ ├── tangent_weights.h │ │ ├── three_point_family_weights.h │ │ ├── triangular_region_weights.h │ │ ├── uniform_region_weights.h │ │ ├── uniform_weights.h │ │ ├── utils.h │ │ ├── voronoi_region_weights.h │ │ └── wachspress_weights.h │ │ ├── Width_3.h │ │ ├── Width_default_traits_3.h │ │ ├── Width_polyhedron_3.h │ │ ├── aff_transformation_tags.h │ │ ├── aff_transformation_tags_impl.h │ │ ├── algorithm.h │ │ ├── all_furthest_neighbors_2.h │ │ ├── alpha_wrap_3.h │ │ ├── apply_to_range.h │ │ ├── approximated_offset_2.h │ │ ├── argument_swaps.h │ │ ├── arrange_offset_polygons_2.h │ │ ├── array.h │ │ ├── assertions.h │ │ ├── assertions_behaviour.h │ │ ├── assertions_impl.h │ │ ├── atomic.h │ │ ├── auto_link │ │ ├── CGAL.h │ │ ├── CORE.h │ │ ├── ImageIO.h │ │ ├── Qt.h │ │ └── auto_link.h │ │ ├── barycenter.h │ │ ├── basic.h │ │ ├── basic_classes.h │ │ ├── basic_constructions_2.h │ │ ├── basic_constructions_3.h │ │ ├── bilateral_smooth_point_set.h │ │ ├── boost │ │ ├── bimap.hpp │ │ ├── bimap │ │ │ └── multiset_of.hpp │ │ ├── graph │ │ │ ├── Alpha_expansion_MaxFlow_tag.h │ │ │ ├── Dual.h │ │ │ ├── Euler_operations.h │ │ │ ├── Face_filtered_graph.h │ │ │ ├── Graph_with_descriptor_with_graph.h │ │ │ ├── Graph_with_descriptor_with_graph_fwd.h │ │ │ ├── IO │ │ │ │ ├── 3MF.h │ │ │ │ ├── GOCAD.h │ │ │ │ ├── Generic_facegraph_builder.h │ │ │ │ ├── Generic_facegraph_printer.h │ │ │ │ ├── INP.h │ │ │ │ ├── OBJ.h │ │ │ │ ├── OFF.h │ │ │ │ ├── PLY.h │ │ │ │ ├── STL.h │ │ │ │ ├── Tds_2_off.h │ │ │ │ ├── VTK.h │ │ │ │ ├── WRL.h │ │ │ │ └── polygon_mesh_io.h │ │ │ ├── METIS │ │ │ │ ├── partition_dual_graph.h │ │ │ │ └── partition_graph.h │ │ │ ├── Seam_mesh.h │ │ │ ├── alpha_expansion_graphcut.h │ │ │ ├── backward_compatibility_functions.h │ │ │ ├── breadth_first_search.h │ │ │ ├── convert_nef_polyhedron_to_polygon_mesh.h │ │ │ ├── copy_face_graph.h │ │ │ ├── generators.h │ │ │ ├── graph_concepts.h │ │ │ ├── graph_traits_Arrangement_2.h │ │ │ ├── graph_traits_Constrained_Delaunay_triangulation_2.h │ │ │ ├── graph_traits_Constrained_triangulation_2.h │ │ │ ├── graph_traits_Constrained_triangulation_plus_2.h │ │ │ ├── graph_traits_Delaunay_triangulation_2.h │ │ │ ├── graph_traits_Dual_Arrangement_2.h │ │ │ ├── graph_traits_HalfedgeDS.h │ │ │ ├── graph_traits_HalfedgeDS_default.h │ │ │ ├── graph_traits_Linear_cell_complex_for_combinatorial_map.h │ │ │ ├── graph_traits_OpenMesh.h │ │ │ ├── graph_traits_PolyMesh_ArrayKernelT.h │ │ │ ├── graph_traits_Polyhedron_3.h │ │ │ ├── graph_traits_Regular_triangulation_2.h │ │ │ ├── graph_traits_Seam_mesh.h │ │ │ ├── graph_traits_Surface_mesh.h │ │ │ ├── graph_traits_TriMesh_ArrayKernelT.h │ │ │ ├── graph_traits_Triangulation_2.h │ │ │ ├── graph_traits_Triangulation_data_structure_2.h │ │ │ ├── graph_traits_Triangulation_hierarchy_2.h │ │ │ ├── graph_traits_inheritance_macros.h │ │ │ ├── halfedge_graph_traits.h │ │ │ ├── halfedge_graph_traits_HalfedgeDS.h │ │ │ ├── halfedge_graph_traits_Polyhedron_3.h │ │ │ ├── helpers.h │ │ │ ├── internal │ │ │ │ ├── Has_member_clear.h │ │ │ │ ├── Has_member_id.h │ │ │ │ ├── OM_iterator_from_circulator.h │ │ │ │ ├── graph_traits_2D_TDS_helper.h │ │ │ │ ├── graph_traits_2D_triangulation.h │ │ │ │ ├── graph_traits_2D_triangulation_helper.h │ │ │ │ ├── helpers.h │ │ │ │ ├── initialized_index_maps_helpers.h │ │ │ │ └── properties_2D_triangulation.h │ │ │ ├── io.h │ │ │ ├── iterator.h │ │ │ ├── kruskal_min_spanning_tree.h │ │ │ ├── named_params_helper.h │ │ │ ├── partition.h │ │ │ ├── prim_minimum_spanning_tree.h │ │ │ ├── properties.h │ │ │ ├── properties_Constrained_Delaunay_triangulation_2.h │ │ │ ├── properties_Constrained_triangulation_2.h │ │ │ ├── properties_Constrained_triangulation_plus_2.h │ │ │ ├── properties_Delaunay_triangulation_2.h │ │ │ ├── properties_HalfedgeDS_base.h │ │ │ ├── properties_HalfedgeDS_default.h │ │ │ ├── properties_Linear_cell_complex_for_combinatorial_map.h │ │ │ ├── properties_OpenMesh.h │ │ │ ├── properties_PolyMesh_ArrayKernelT.h │ │ │ ├── properties_Polyhedron_3.h │ │ │ ├── properties_Polyhedron_3_features.h │ │ │ ├── properties_Polyhedron_3_time_stamp.h │ │ │ ├── properties_Regular_triangulation_2.h │ │ │ ├── properties_Seam_mesh.h │ │ │ ├── properties_Surface_mesh.h │ │ │ ├── properties_Surface_mesh_features.h │ │ │ ├── properties_Surface_mesh_time_stamp.h │ │ │ ├── properties_TriMesh_ArrayKernelT.h │ │ │ ├── properties_Triangulation_2.h │ │ │ ├── properties_Triangulation_data_structure_2.h │ │ │ ├── properties_Triangulation_hierarchy_2.h │ │ │ ├── property_maps.h │ │ │ ├── selection.h │ │ │ ├── split_graph_into_polylines.h │ │ │ └── visitor.h │ │ └── iterator │ │ │ ├── counting_iterator.hpp │ │ │ └── transform_iterator.hpp │ │ ├── boost_mp.h │ │ ├── bounding_box.h │ │ ├── box_intersection_d.h │ │ ├── cartesian_homogeneous_conversion.h │ │ ├── centroid.h │ │ ├── certified_numeric_predicates.h │ │ ├── certified_quotient_predicates.h │ │ ├── ch_akl_toussaint.h │ │ ├── ch_bykat.h │ │ ├── ch_eddy.h │ │ ├── ch_graham_andrew.h │ │ ├── ch_jarvis.h │ │ ├── ch_melkman.h │ │ ├── ch_selected_extreme_points_2.h │ │ ├── circulator.h │ │ ├── circulator_bases.h │ │ ├── cluster_point_set.h │ │ ├── compare_vertices.h │ │ ├── compute_average_spacing.h │ │ ├── compute_outer_frame_margin.h │ │ ├── config.h │ │ ├── connect_holes.h │ │ ├── constant.h │ │ ├── constructions │ │ ├── Polygon_offset_cons_ftC2.h │ │ ├── Straight_skeleton_cons_ftC2.h │ │ ├── constructions_for_voronoi_intersection_cartesian_2_3.h │ │ ├── kernel_ftC2.h │ │ └── kernel_ftC3.h │ │ ├── constructions_d.h │ │ ├── convert_to_bfi.h │ │ ├── convex_decomposition_3.h │ │ ├── convex_hull_2.h │ │ ├── convex_hull_3.h │ │ ├── convex_hull_3_to_face_graph.h │ │ ├── convex_hull_constructive_traits_2.h │ │ ├── convex_hull_traits_2.h │ │ ├── convexity_check_2.h │ │ ├── convexity_check_3.h │ │ ├── copy_n.h │ │ ├── cpp_float.h │ │ ├── create_offset_polygons_2.h │ │ ├── create_offset_polygons_from_polygon_with_holes_2.h │ │ ├── create_straight_skeleton_2.h │ │ ├── create_straight_skeleton_from_polygon_with_holes_2.h │ │ ├── create_weighted_offset_polygons_2.h │ │ ├── create_weighted_offset_polygons_from_polygon_with_holes_2.h │ │ ├── create_weighted_straight_skeleton_2.h │ │ ├── create_weighted_straight_skeleton_from_polygon_with_holes_2.h │ │ ├── demangle.h │ │ ├── determinant.h │ │ ├── determinant_of_vectors.h │ │ ├── disable_warnings.h │ │ ├── distance_predicates_2.h │ │ ├── distance_predicates_3.h │ │ ├── double.h │ │ ├── draw_arrangement_2.h │ │ ├── draw_constrained_triangulation_2.h │ │ ├── draw_face_graph.h │ │ ├── draw_face_graph_with_paths.h │ │ ├── draw_linear_cell_complex.h │ │ ├── draw_nef_3.h │ │ ├── draw_periodic_2_triangulation_2.h │ │ ├── draw_point_set_3.h │ │ ├── draw_polygon_2.h │ │ ├── draw_polygon_set_2.h │ │ ├── draw_polygon_with_holes_2.h │ │ ├── draw_polyhedron.h │ │ ├── draw_straight_skeleton_2.h │ │ ├── draw_surface_mesh.h │ │ ├── draw_triangulation_2.h │ │ ├── draw_triangulation_3.h │ │ ├── draw_voronoi_diagram_2.h │ │ ├── edge_aware_upsample_point_set.h │ │ ├── enable_warnings.h │ │ ├── enum.h │ │ ├── envelope_2.h │ │ ├── envelope_3.h │ │ ├── estimate_scale.h │ │ ├── exceptions.h │ │ ├── export │ │ ├── CGAL.h │ │ ├── CORE.h │ │ ├── ImageIO.h │ │ ├── Qt.h │ │ └── helpers.h │ │ ├── extended_euclidean_algorithm.h │ │ ├── extract_mean_curvature_flow_skeleton.h │ │ ├── extremal_polygon_2.h │ │ ├── extrude_skeleton.h │ │ ├── exude_mesh_3.h │ │ ├── facets_in_complex_3_to_triangle_mesh.h │ │ ├── float.h │ │ ├── for_each.h │ │ ├── function_objects.h │ │ ├── functional.h │ │ ├── functions_on_enums.h │ │ ├── functions_on_signs.h │ │ ├── generators.h │ │ ├── generic_sweep.h │ │ ├── gl.h │ │ ├── global_functions_circular_kernel_2.h │ │ ├── global_functions_on_root_for_sphere_2_3.h │ │ ├── global_functions_on_roots_and_polynomials_1_3.h │ │ ├── global_functions_on_roots_and_polynomials_2_3.h │ │ ├── global_functions_spherical_kernel_3.h │ │ ├── glu.h │ │ ├── gmp.h │ │ ├── gmpxx.h │ │ ├── gmpxx_coercion_traits.h │ │ ├── gnuplot_output_2.h │ │ ├── grabbers.h │ │ ├── graph_traits_Arrangement_2.h │ │ ├── graph_traits_dual_arrangement_2.h │ │ ├── graph_traits_dual_arrangement_on_surface_2.h │ │ ├── graph_traits_dual_arrangement_on_surface_with_history_2.h │ │ ├── graph_traits_dual_arrangement_with_history_2.h │ │ ├── grid_simplify_point_set.h │ │ ├── halfedgeDS_cut_component.h │ │ ├── halfedgeds_connected_components.h │ │ ├── hash_openmesh.h │ │ ├── hierarchy_simplify_point_set.h │ │ ├── hilbert_sort.h │ │ ├── hilbert_sort_on_sphere.h │ │ ├── in_place_edge_list.h │ │ ├── int.h │ │ ├── interpolation_functions.h │ │ ├── intersection_2.h │ │ ├── intersection_3.h │ │ ├── intersections.h │ │ ├── intersections_d.h │ │ ├── ipower.h │ │ ├── is_convertible.h │ │ ├── is_streamable.h │ │ ├── is_y_monotone_2.h │ │ ├── iterator.h │ │ ├── iterator_from_indices.h │ │ ├── jet_estimate_normals.h │ │ ├── jet_smooth_point_set.h │ │ ├── kernel_assertions.h │ │ ├── kernel_basic.h │ │ ├── kernel_config.h │ │ ├── kernel_to_kernel.h │ │ ├── known_bit_size_integers.h │ │ ├── leda_bigfloat.h │ │ ├── leda_bigfloat_interval.h │ │ ├── leda_coercion_traits.h │ │ ├── leda_integer.h │ │ ├── leda_rational.h │ │ ├── leda_real.h │ │ ├── license.h │ │ ├── license │ │ ├── AABB_tree.h │ │ ├── Advancing_front_surface_reconstruction.h │ │ ├── Alpha_shapes_2.h │ │ ├── Alpha_shapes_3.h │ │ ├── Alpha_wrap_3.h │ │ ├── Apollonius_graph_2.h │ │ ├── Arrangement_on_surface_2.h │ │ ├── Barycentric_coordinates_2.h │ │ ├── Boolean_set_operations_2.h │ │ ├── Bounding_volumes.h │ │ ├── Box_intersection_d.h │ │ ├── Circular_kernel_2.h │ │ ├── Circular_kernel_3.h │ │ ├── Classification.h │ │ ├── Cone_spanners_2.h │ │ ├── Convex_decomposition_3.h │ │ ├── Convex_hull_2.h │ │ ├── Convex_hull_3.h │ │ ├── Convex_hull_d.h │ │ ├── Envelope_2.h │ │ ├── Envelope_3.h │ │ ├── GraphicsView.h │ │ ├── Heat_method_3.h │ │ ├── Hyperbolic_triangulation_2.h │ │ ├── Inscribed_areas.h │ │ ├── Interpolation.h │ │ ├── Interval_skip_list.h │ │ ├── Jet_fitting_3.h │ │ ├── Matrix_search.h │ │ ├── Mesh_2.h │ │ ├── Mesh_3.h │ │ ├── Minkowski_sum_2.h │ │ ├── Minkowski_sum_3.h │ │ ├── Nef_2.h │ │ ├── Nef_3.h │ │ ├── Nef_S2.h │ │ ├── Optimal_bounding_box.h │ │ ├── Optimal_transportation_reconstruction_2.h │ │ ├── Orthtree.h │ │ ├── Partition_2.h │ │ ├── Periodic_2_triangulation_2.h │ │ ├── Periodic_3_mesh_3.h │ │ ├── Periodic_3_triangulation_3.h │ │ ├── Periodic_4_hyperbolic_triangulation_2.h │ │ ├── Point_set_2.h │ │ ├── Point_set_3.h │ │ ├── Point_set_processing_3.h │ │ ├── Poisson_surface_reconstruction_3.h │ │ ├── Polygon_mesh_processing.h │ │ ├── Polygon_mesh_processing │ │ │ ├── Compute_normal.h │ │ │ ├── Polyhedral_envelope.h │ │ │ ├── collision_detection.h │ │ │ ├── combinatorial_repair.h │ │ │ ├── connected_components.h │ │ │ ├── core.h │ │ │ ├── corefinement.h │ │ │ ├── detect_features.h │ │ │ ├── distance.h │ │ │ ├── geometric_repair.h │ │ │ ├── locate.h │ │ │ ├── measure.h │ │ │ ├── meshing_hole_filling.h │ │ │ ├── miscellaneous.h │ │ │ ├── orientation.h │ │ │ └── predicate.h │ │ ├── Polygonal_surface_reconstruction.h │ │ ├── Polyhedron.h │ │ ├── Polyline_simplification_2.h │ │ ├── Polytope_distance_d.h │ │ ├── Principal_component_analysis.h │ │ ├── QP_solver.h │ │ ├── Ridges_3.h │ │ ├── SMDS_3.h │ │ ├── Scale_space_reconstruction_3.h │ │ ├── SearchStructures.h │ │ ├── Segment_Delaunay_graph_2.h │ │ ├── Segment_Delaunay_graph_Linf_2.h │ │ ├── Set_movable_separability_2.h │ │ ├── Shape_detection.h │ │ ├── Shape_regularization.h │ │ ├── Skin_surface_3.h │ │ ├── Snap_rounding_2.h │ │ ├── Spatial_searching.h │ │ ├── Straight_skeleton_2.h │ │ ├── Straight_skeleton_extrusion_2.h │ │ ├── Stream_lines_2.h │ │ ├── Surface_mesh.h │ │ ├── Surface_mesh_approximation.h │ │ ├── Surface_mesh_deformation.h │ │ ├── Surface_mesh_parameterization.h │ │ ├── Surface_mesh_segmentation.h │ │ ├── Surface_mesh_shortest_path.h │ │ ├── Surface_mesh_simplification.h │ │ ├── Surface_mesh_skeletonization.h │ │ ├── Surface_mesh_topology.h │ │ ├── Surface_mesher.h │ │ ├── Surface_sweep_2.h │ │ ├── TDS_2.h │ │ ├── TDS_3.h │ │ ├── Tetrahedral_remeshing.h │ │ ├── Three.h │ │ ├── Triangulation.h │ │ ├── Triangulation_2.h │ │ ├── Triangulation_3.h │ │ ├── Triangulation_on_sphere_2.h │ │ ├── Visibility_2.h │ │ ├── Voronoi_diagram_2.h │ │ ├── gpl_package_list.txt │ │ └── lgpl.h │ │ ├── linear_least_squares_fitting_2.h │ │ ├── linear_least_squares_fitting_3.h │ │ ├── linear_least_squares_fitting_circles_2.h │ │ ├── linear_least_squares_fitting_cuboids_3.h │ │ ├── linear_least_squares_fitting_points_2.h │ │ ├── linear_least_squares_fitting_points_3.h │ │ ├── linear_least_squares_fitting_rectangles_2.h │ │ ├── linear_least_squares_fitting_segments_2.h │ │ ├── linear_least_squares_fitting_segments_3.h │ │ ├── linear_least_squares_fitting_spheres_3.h │ │ ├── linear_least_squares_fitting_tetrahedra_3.h │ │ ├── linear_least_squares_fitting_triangles_2.h │ │ ├── linear_least_squares_fitting_triangles_3.h │ │ ├── link_to_face_graph.h │ │ ├── lloyd_optimize_mesh_2.h │ │ ├── lloyd_optimize_mesh_3.h │ │ ├── long_double.h │ │ ├── long_long.h │ │ ├── make_mesh_3.h │ │ ├── make_periodic_3_mesh_3.h │ │ ├── make_piecewise_smooth_surface_mesh.h │ │ ├── make_skin_surface_mesh_3.h │ │ ├── make_surface_mesh.h │ │ ├── make_union_of_balls_3.h │ │ ├── marching_tetrahedra_3.h │ │ ├── mark_domain_in_triangulation.h │ │ ├── memory.h │ │ ├── mesh_segmentation.h │ │ ├── mesh_skin_surface_3.h │ │ ├── mesh_union_of_balls_3.h │ │ ├── min_max_n.h │ │ ├── min_quadrilateral_2.h │ │ ├── minimum_enclosing_quadrilateral_2.h │ │ ├── minkowski_sum_2.h │ │ ├── minkowski_sum_3.h │ │ ├── monotone_matrix_search.h │ │ ├── more_functions_on_signs.h │ │ ├── mpfi_coercion_traits.h │ │ ├── mpfr_coercion_traits.h │ │ ├── mpq_class.h │ │ ├── mpz_class.h │ │ ├── mst_orient_normals.h │ │ ├── mutex.h │ │ ├── natural_neighbor_coordinates_2.h │ │ ├── natural_neighbor_coordinates_3.h │ │ ├── nearest_neighbor_delaunay_2.h │ │ ├── normal_vector_newell_3.h │ │ ├── number_type_basic.h │ │ ├── number_type_config.h │ │ ├── number_utils.h │ │ ├── number_utils_classes.h │ │ ├── odt_optimize_mesh_3.h │ │ ├── offset_polygon_2.h │ │ ├── optimal_bounding_box.h │ │ ├── optimize_mesh_3.h │ │ ├── optimize_periodic_3_mesh_3.h │ │ ├── partition_2.h │ │ ├── partition_is_valid_2.h │ │ ├── pca_estimate_normals.h │ │ ├── periodic_3_triangulation_3_io.h │ │ ├── perturb_mesh_3.h │ │ ├── pierce_rectangles_2.h │ │ ├── point_generators_2.h │ │ ├── point_generators_3.h │ │ ├── point_generators_d.h │ │ ├── pointmatcher │ │ ├── compute_registration_transformation.h │ │ └── register_point_sets.h │ │ ├── poisson_refine_triangulation.h │ │ ├── poisson_surface_reconstruction.h │ │ ├── polygon_function_objects.h │ │ ├── polygon_mesh_processing.h │ │ ├── polyhedron_cut_plane_3.h │ │ ├── polynomial_utils.h │ │ ├── predicates │ │ ├── Polygon_offset_pred_ftC2.h │ │ ├── Straight_skeleton_pred_ftC2.h │ │ ├── kernel_ftC2.h │ │ ├── kernel_ftC3.h │ │ ├── predicates_for_mixed_complex_3.h │ │ ├── predicates_for_voronoi_intersection_cartesian_2_3.h │ │ └── sign_of_determinant.h │ │ ├── predicates_d.h │ │ ├── predicates_on_lines_2.h │ │ ├── predicates_on_points_2.h │ │ ├── predicates_on_points_3.h │ │ ├── primes.h │ │ ├── property_map.h │ │ ├── radial_orient_normals.h │ │ ├── random_convex_hull_in_disc_2.h │ │ ├── random_convex_set_2.h │ │ ├── random_polygon_2.h │ │ ├── random_selection.h │ │ ├── random_simplify_point_set.h │ │ ├── range_search_delaunay_2.h │ │ ├── rank.h │ │ ├── rational_rotation.h │ │ ├── read_vtk_image_data.h │ │ ├── rectangular_3_center_2.h │ │ ├── rectangular_p_center_2.h │ │ ├── refine_mesh_3.h │ │ ├── refine_periodic_3_mesh_3.h │ │ ├── regular_neighbor_coordinates_2.h │ │ ├── remove_far_points_in_mesh_3.h │ │ ├── remove_outliers.h │ │ ├── representation_tags.h │ │ ├── result_of.h │ │ ├── scanline_orient_normals.h │ │ ├── segment_intersection_points_2.h │ │ ├── sibson_gradient_fitting.h │ │ ├── simple_transformations_d.h │ │ ├── simplest_rational_in_interval.h │ │ ├── sorted_matrix_search.h │ │ ├── spatial_sort.h │ │ ├── spatial_sort_on_sphere.h │ │ ├── squared_distance_2.h │ │ ├── squared_distance_3.h │ │ ├── sse2.h │ │ ├── stddef.h │ │ ├── structure_point_set.h │ │ ├── subdivide_skin_surface_mesh_3.h │ │ ├── subdivide_union_of_balls_mesh_3.h │ │ ├── subdivision_method_3.h │ │ ├── surface_mesh_parameterization.h │ │ ├── surface_neighbor_coordinates_3.h │ │ ├── surface_neighbors_3.h │ │ ├── sweep_observer.h │ │ ├── tags.h │ │ ├── test_FPU_rounding_mode_impl.h │ │ ├── tetrahedral_remeshing.h │ │ ├── tetrahedron_soup_to_triangulation_3.h │ │ ├── thread.h │ │ ├── to_rational.h │ │ ├── transforming_iterator.h │ │ ├── transforming_pair_iterator.h │ │ ├── triangulate_mixed_complex_3.h │ │ ├── triangulate_power_diagram_3.h │ │ ├── tss.h │ │ ├── tuple.h │ │ ├── type_traits.h │ │ ├── type_traits │ │ └── is_iterator.h │ │ ├── typeset.h │ │ ├── use.h │ │ ├── user_classes.h │ │ ├── utility.h │ │ ├── utils.h │ │ ├── utils_classes.h │ │ ├── value_type_traits.h │ │ ├── vcm_estimate_edges.h │ │ ├── vcm_estimate_normals.h │ │ ├── vector.h │ │ ├── version.h │ │ ├── version_macros.h │ │ ├── vtkSurfaceMesherContourFilter.h │ │ ├── width_assertions.h │ │ ├── wlop_simplify_and_regularize_point_set.h │ │ └── wmult.h │ ├── lib │ └── cmake │ │ └── CGAL │ │ ├── CGALConfig-installation-dirs.cmake.in │ │ ├── CGALConfig.cmake │ │ ├── CGALConfigBuildVersion.cmake │ │ └── CGALConfigVersion.cmake │ └── scripts │ ├── cgal_create_CMakeLists │ ├── cgal_create_assertions.sh │ ├── cgal_create_cmake_script │ └── cgal_make_macosx_app ├── dev_log ├── img │ ├── synth_dataset.jpg │ └── workflow.jpg └── log.md ├── doc ├── README.md ├── _autosummary │ └── .gitkeep ├── _static │ ├── correct_install_check.png │ ├── example_files │ │ ├── additive_gh_logs_v1.gh │ │ ├── additive_gh_robotic_v1.gh │ │ ├── additive_gh_roof_v1.gh │ │ ├── additive_rh_logs_v1.3dm │ │ ├── additive_rh_robotic_v1.3dm │ │ ├── additive_rh_roof_v1.3dm │ │ ├── subtractive_gh_v1.gh │ │ └── subtractive_rh_v1.3dm │ ├── fig_scheme_softarch.png │ ├── fron_log.png │ ├── front_bothroundsquare.png │ ├── front_square.png │ ├── gh_components │ │ ├── gh_DFVizSettings_example.png │ │ └── img_overview_dfareas.png │ ├── logo_favicon.ico │ ├── logo_sphinx.png │ ├── style.css │ └── tutorials │ │ ├── fig_additive_error.png │ │ ├── fig_additive_logs_DFAssembly.png │ │ ├── fig_additive_robotic.png │ │ ├── fig_additive_robotic_DFassembly.png │ │ ├── fig_additive_robotic_Error.png │ │ ├── fig_additive_robotic_Seg.png │ │ ├── fig_additive_robotic_Viz.png │ │ ├── fig_additive_robotic_export.png │ │ ├── fig_additive_robotic_graph_viz.png │ │ ├── fig_additive_robotic_prep.png │ │ ├── fig_additive_robotic_results1.png │ │ ├── fig_additive_robotic_start.png │ │ ├── fig_additive_roof.png │ │ ├── fig_additive_roof_DFassembly.png │ │ ├── fig_additive_roof_VizGH.png │ │ ├── fig_additive_roof_error.png │ │ ├── fig_additive_roof_export.png │ │ ├── fig_additive_roof_inputs.png │ │ ├── fig_additive_roof_legend.png │ │ ├── fig_additive_roof_reg.png │ │ ├── fig_additive_roof_seg.png │ │ ├── fig_additive_roof_viz.png │ │ ├── fig_subtractive_detail_viz.png │ │ ├── fig_subtractive_graph_viz.png │ │ ├── fig_subtractive_high_res_overview.png │ │ ├── fig_subtractive_log.png │ │ ├── fig_subtractive_square.png │ │ ├── fig_subtractive_start.png │ │ ├── fig_subtrative_high_res_2.png │ │ ├── fig_subtrative_high_res_3.png │ │ ├── fig_subtrative_high_res_4.png │ │ ├── fig_subtrative_high_res_5.png │ │ ├── fig_subtrative_high_res_6.png │ │ ├── fig_subtrative_high_res_7.png │ │ └── help.png ├── _templates │ └── layout.html ├── assembly-evaluation.rst ├── conf.py ├── contribute.md ├── dev_documentation.rst ├── development_env.md ├── df_architecture.md ├── diffCheck.df-b_geometries.rst ├── diffCheck.df_cvt_bindings.rst ├── diffCheck.df_error_estimation.rst ├── diffCheck.df_joint_detector.rst ├── diffCheck.df_transformations.rst ├── diffCheck.df_util.rst ├── diffCheck.df_visualization.rst ├── diffCheck.dfb_registrations.rst ├── diffCheck.dfb_segmentation.rst ├── diffCheck_PythonAPI.rst ├── documentation.md ├── gh_DFBrepToCloud.rst ├── gh_DFBuildAssembly.rst ├── gh_DFCADSegmentator.rst ├── gh_DFCloudMeshDistance.rst ├── gh_DFCloudNormalEstimator.rst ├── gh_DFCloudNormalSegmentator.rst ├── gh_DFCloudSizeDownsample.rst ├── gh_DFCloudUniformDownsample.rst ├── gh_DFCloudVoxelDownsample.rst ├── gh_DFColorizeCloud.rst ├── gh_DFCsvExporter.rst ├── gh_DFDeconstructAssembly.rst ├── gh_DFDeconstructBeam.rst ├── gh_DFExportCloudToFile.rst ├── gh_DFExportResults.rst ├── gh_DFFastGlobalRegistration.rst ├── gh_DFICPRegistration.rst ├── gh_DFImportResults.rst ├── gh_DFInspectResults.rst ├── gh_DFJointSegmentator.rst ├── gh_DFLoadCloudFromFile.rst ├── gh_DFLoadMeshFromFile.rst ├── gh_DFMergeAssemblies.rst ├── gh_DFMeshToCloud.rst ├── gh_DFPreviewAssembly.rst ├── gh_DFRANSACGlobalRegistration.rst ├── gh_DFRemoveBeam.rst ├── gh_DFRemoveStatisticalOutliers.rst ├── gh_DFTester.rst ├── gh_DFVisualization.rst ├── gh_DFVisualizationSettings.rst ├── gh_DFXMLExporter.rst ├── gh_components.rst ├── glossary.md ├── image.png ├── index.rst ├── joints-evaluation.md ├── key-concepts.md ├── manual-assembly.md ├── quickstart.md ├── robotic-assembly.md ├── sphinx_ghcomponent_parser │ ├── __init__.py │ └── metadata_parser.py ├── style.md ├── test_pybind_dll_smoke.py ├── testing.rst └── tutorials.rst ├── environment.yml ├── favicon.ico ├── invokes ├── flagerize.py ├── ghcomponentize │ ├── ghcomponentizer.py │ └── ghio │ │ └── GH_IO.dll ├── pypireize.py ├── versionize.py ├── yaker │ ├── exec │ │ ├── DocoptNet.dll │ │ ├── Newtonsoft.Json.Rhino.dll │ │ ├── Yak.Core.dll │ │ ├── Yak.exe │ │ └── YamlDotNet.dll │ └── ghio │ │ ├── GH_IO.dll │ │ └── Grasshopper.dll └── yakerize.py ├── logo.png ├── manifest.yml ├── pyproject.toml ├── src ├── diffCheck.hh ├── diffCheck │ ├── IOManager.cc │ ├── IOManager.hh │ ├── benchmark │ │ └── .gitkeep │ ├── geometry │ │ ├── DFMesh.cc │ │ ├── DFMesh.hh │ │ ├── DFPointCloud.cc │ │ └── DFPointCloud.hh │ ├── log.cc │ ├── log.hh │ ├── registrations │ │ ├── .gitkeep │ │ ├── DFGlobalRegistrations.cc │ │ ├── DFGlobalRegistrations.hh │ │ ├── DFRefinedRegistration.cc │ │ └── DFRefinedRegistration.hh │ ├── segmentation │ │ ├── .gitkeep │ │ ├── DFSegmentation.cc │ │ └── DFSegmentation.hh │ ├── transformation │ │ ├── DFTransformation.cc │ │ └── DFTransformation.hh │ ├── visualizer.cc │ └── visualizer.hh ├── diffCheckApp.cc ├── diffCheckBindings.cc └── gh │ ├── components │ ├── DF_CAD_segmentator │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_brep_to_cloud │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_build_assembly │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_cloud_mesh_distance │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_cloud_normal_estimator │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_cloud_size_downsample │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_cloud_uniform_downsample │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_cloud_voxel_downsample │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_colorize_cloud │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_csv_exporter │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_deconstruct_assembly │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_deconstruct_beam │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_export_cloud_to_file │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_export_results │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_fast_global_registration │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_icp_registration │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_import_results │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_inspect_results │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_joint_segmentator │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_load_cloud_from_file │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_load_mesh_from_file │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_merge_assemblies │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_mesh_to_cloud │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_normal_segmentator │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_preview_assembly │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_ransac_global_registration │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_remove_beam │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_remove_statistical_outliers │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_tester │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_visualization │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── DF_visualization_settings │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ └── DF_xml_exporter │ │ ├── code.py │ │ ├── icon.png │ │ └── metadata.json │ ├── diffCheck │ ├── MANIFEST.in │ ├── README.md │ ├── diffCheck.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── requires.txt │ │ └── top_level.txt │ ├── diffCheck │ │ ├── __init__.py │ │ ├── df_cvt_bindings.py │ │ ├── df_error_estimation.py │ │ ├── df_geometries.py │ │ ├── df_joint_detector.py │ │ ├── df_transformations.py │ │ ├── df_util.py │ │ ├── df_visualization.py │ │ └── dlls │ │ │ └── .gitkeep │ └── setup.py │ └── examples │ ├── assembly_beam_system.ghx │ ├── compute_distance.ghx │ ├── error_viz_tester.ghx │ ├── error_viz_tester_components.ghx │ ├── normal_estimation.ghx │ └── tester.ghx ├── tasks.py ├── test_save.ply └── tests ├── allCppTests.cc ├── integration_tests ├── ghcomponents_tests │ ├── .gitkeep │ └── __init__.py ├── package_tests │ ├── .gitkeep │ └── __init__.py └── pybinds_tests │ ├── __init__.py │ ├── test_pybind_dll_smoke.py │ ├── test_pybind_pyver.py │ └── test_pybind_units.py ├── test_data ├── .gitkeep ├── cube_mesh.ply ├── roof_quarter.ply ├── sphere_5kpts_with_normals.ply ├── stanford_bunny_50kpts_with_normals.ply ├── test_pc_for_SOR_101pts_with_1_outlier.ply ├── two_connected_planes_with_normals.ply └── two_separate_planes_with_normals.ply └── unit_tests ├── DFLog.cc └── DFPointCloudTest.cc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/cpp-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.github/workflows/cpp-build.yml -------------------------------------------------------------------------------- /.github/workflows/doc-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.github/workflows/doc-build.yml -------------------------------------------------------------------------------- /.github/workflows/gh-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.github/workflows/gh-build.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/py-sanity-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.github/workflows/py-sanity-check.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.github/workflows/pypi-build.yml -------------------------------------------------------------------------------- /.github/workflows/test-pass.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.github/workflows/test-pass.yml -------------------------------------------------------------------------------- /.github/workflows/yak-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.github/workflows/yak-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/README.md -------------------------------------------------------------------------------- /assets/dataset/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/dataset/02_Helpers/240412_DS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/dataset/02_Helpers/240412_DS.pdf -------------------------------------------------------------------------------- /assets/diagram/rhdfexporter.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/diagram/rhdfexporter.drawio -------------------------------------------------------------------------------- /assets/icon_pool/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon.xcf -------------------------------------------------------------------------------- /assets/icon_pool/icon_assemblypreview.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_assemblypreview.xcf -------------------------------------------------------------------------------- /assets/icon_pool/icon_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_base.png -------------------------------------------------------------------------------- /assets/icon_pool/icon_blu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_blu.png -------------------------------------------------------------------------------- /assets/icon_pool/icon_downsample_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_downsample_size.png -------------------------------------------------------------------------------- /assets/icon_pool/icon_downsample_voxel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_downsample_voxel.png -------------------------------------------------------------------------------- /assets/icon_pool/icon_export_ply.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_export_ply.xcf -------------------------------------------------------------------------------- /assets/icon_pool/icon_fastreg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_fastreg.png -------------------------------------------------------------------------------- /assets/icon_pool/icon_fastreg.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_fastreg.xcf -------------------------------------------------------------------------------- /assets/icon_pool/icon_icpreg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_icpreg.png -------------------------------------------------------------------------------- /assets/icon_pool/icon_inspect_results.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_inspect_results.xcf -------------------------------------------------------------------------------- /assets/icon_pool/icon_ransactreg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_ransactreg.png -------------------------------------------------------------------------------- /assets/icon_pool/icon_removebeam.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_removebeam.xcf -------------------------------------------------------------------------------- /assets/icon_pool/icon_results.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_results.xcf -------------------------------------------------------------------------------- /assets/icon_pool/icon_small_xmlexport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/icon_small_xmlexport.png -------------------------------------------------------------------------------- /assets/icon_pool/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/normal.png -------------------------------------------------------------------------------- /assets/icon_pool/normal_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/normal_cloud.png -------------------------------------------------------------------------------- /assets/icon_pool/normal_cloud.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/normal_cloud.xcf -------------------------------------------------------------------------------- /assets/icon_pool/normal_segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/normal_segment.png -------------------------------------------------------------------------------- /assets/icon_pool/normal_segmenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/normal_segmenter.png -------------------------------------------------------------------------------- /assets/icon_pool/normal_segmenter.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/normal_segmenter.xcf -------------------------------------------------------------------------------- /assets/icon_pool/normal_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/normal_v1.png -------------------------------------------------------------------------------- /assets/icon_pool/scan_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/icon_pool/scan_segmentation.png -------------------------------------------------------------------------------- /assets/img/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/img/demo.png -------------------------------------------------------------------------------- /assets/img/fig_scheme_softarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/img/fig_scheme_softarch.png -------------------------------------------------------------------------------- /assets/img/gif_meshvisual.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/img/gif_meshvisual.gif -------------------------------------------------------------------------------- /assets/img/placeholder_additive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/img/placeholder_additive.png -------------------------------------------------------------------------------- /assets/img/placeholder_subtractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/img/placeholder_subtractive.png -------------------------------------------------------------------------------- /assets/img/visualizer_diffCheck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/img/visualizer_diffCheck.gif -------------------------------------------------------------------------------- /assets/logo/ViewCapture20240412_103050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/ViewCapture20240412_103050.png -------------------------------------------------------------------------------- /assets/logo/logo_backblack.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_backblack.xcf -------------------------------------------------------------------------------- /assets/logo/logo_pixelized.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized.xcf -------------------------------------------------------------------------------- /assets/logo/logo_pixelized_596_618.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized_596_618.png -------------------------------------------------------------------------------- /assets/logo/logo_pixelized_64_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized_64_64.png -------------------------------------------------------------------------------- /assets/logo/logo_pixelized_64_64.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized_64_64.xcf -------------------------------------------------------------------------------- /assets/logo/logo_pixelized_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized_b.png -------------------------------------------------------------------------------- /assets/logo/logo_pixelized_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized_bw.png -------------------------------------------------------------------------------- /assets/logo/logo_pixelized_bw.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized_bw.xcf -------------------------------------------------------------------------------- /assets/logo/logo_pixelized_bwg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized_bwg.png -------------------------------------------------------------------------------- /assets/logo/logo_pixelized_bwg.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized_bwg.xcf -------------------------------------------------------------------------------- /assets/logo/logo_pixelized_bwvioelt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized_bwvioelt.png -------------------------------------------------------------------------------- /assets/logo/logo_pixelized_extracolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized_extracolor.png -------------------------------------------------------------------------------- /assets/logo/logo_pixelized_extracolor.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_pixelized_extracolor.xcf -------------------------------------------------------------------------------- /assets/logo/logo_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logo_raw.png -------------------------------------------------------------------------------- /assets/logo/logotests.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logotests.3dm -------------------------------------------------------------------------------- /assets/logo/logotests.3dmbak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/assets/logo/logotests.3dmbak -------------------------------------------------------------------------------- /cmake/__noenv__config.bat: -------------------------------------------------------------------------------- 1 | REM configure the project 2 | cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -------------------------------------------------------------------------------- /cmake/activate_conda.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/cmake/activate_conda.bat -------------------------------------------------------------------------------- /cmake/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/cmake/build.bat -------------------------------------------------------------------------------- /cmake/build_run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/cmake/build_run.bat -------------------------------------------------------------------------------- /cmake/clean_config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/cmake/clean_config.bat -------------------------------------------------------------------------------- /cmake/config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/cmake/config.bat -------------------------------------------------------------------------------- /cmake/external_tools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/cmake/external_tools.cmake -------------------------------------------------------------------------------- /cmake/options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/cmake/options.cmake -------------------------------------------------------------------------------- /cmake/tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/cmake/tests.cmake -------------------------------------------------------------------------------- /deps/cgal/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/AUTHORS -------------------------------------------------------------------------------- /deps/cgal/CGALConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/CGALConfig.cmake -------------------------------------------------------------------------------- /deps/cgal/CGALConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/CGALConfigVersion.cmake -------------------------------------------------------------------------------- /deps/cgal/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/CHANGES.md -------------------------------------------------------------------------------- /deps/cgal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/CMakeLists.txt -------------------------------------------------------------------------------- /deps/cgal/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/INSTALL.md -------------------------------------------------------------------------------- /deps/cgal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/LICENSE -------------------------------------------------------------------------------- /deps/cgal/LICENSE.BSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/LICENSE.BSL -------------------------------------------------------------------------------- /deps/cgal/LICENSE.COMMERCIAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/LICENSE.COMMERCIAL -------------------------------------------------------------------------------- /deps/cgal/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/LICENSE.GPL -------------------------------------------------------------------------------- /deps/cgal/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/LICENSE.LGPL -------------------------------------------------------------------------------- /deps/cgal/LICENSE.RFL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/LICENSE.RFL -------------------------------------------------------------------------------- /deps/cgal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/README -------------------------------------------------------------------------------- /deps/cgal/VERSION: -------------------------------------------------------------------------------- 1 | 5.6.1 -------------------------------------------------------------------------------- /deps/cgal/auxiliary/cgal_app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/auxiliary/cgal_app.icns -------------------------------------------------------------------------------- /deps/cgal/auxiliary/gdb/python/CGAL/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/cgal/auxiliary/gdb/test-gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/auxiliary/gdb/test-gdb.py -------------------------------------------------------------------------------- /deps/cgal/auxiliary/gdb/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/auxiliary/gdb/test.cpp -------------------------------------------------------------------------------- /deps/cgal/auxiliary/gmp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/auxiliary/gmp/README -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/CGAL_Common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/CGAL_Common.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/CGAL_Macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/CGAL_Macros.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/CGAL_SCM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/CGAL_SCM.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/CGAL_UseLEDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/CGAL_UseLEDA.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/CGAL_UseMKL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/CGAL_UseMKL.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/CGAL_UseMPFI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/CGAL_UseMPFI.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/CGAL_UseRS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/CGAL_UseRS.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/CGAL_UseRS3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/CGAL_UseRS3.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindCORE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindCORE.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindESBTL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindESBTL.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindEigen3.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindF2C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindF2C.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindGLPK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindGLPK.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindGMP.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindGMPXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindGMPXX.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindIPE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindIPE.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindITT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindITT.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindLASLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindLASLIB.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindLEDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindLEDA.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindLibSSH.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindLibSSH.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindMETIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindMETIS.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindMKL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindMKL.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindMPFI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindMPFI.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindMPFR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindMPFR.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindNTL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindNTL.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindOSQP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindOSQP.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindOpenMesh.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindOpenMesh.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindRS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindRS.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindRS3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindRS3.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/FindTBB.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/Help/cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/Help/cmake.py -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/Help/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/Help/conf.py -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/Help/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/Help/index.rst -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/UseCGAL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/UseCGAL.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/UseESBTL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/UseESBTL.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/UseEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/UseEigen3.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/UseLASLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/UseLASLIB.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/UseOpenMesh.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/UseOpenMesh.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/UseTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/UseTBB.cmake -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/config/support/test_syntaxonly.cpp: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /deps/cgal/cmake/modules/test_MPFI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/cmake/modules/test_MPFI.cpp -------------------------------------------------------------------------------- /deps/cgal/doc_html/Manual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/doc_html/Manual/index.html -------------------------------------------------------------------------------- /deps/cgal/doc_html/Manual/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/doc_html/Manual/packages.html -------------------------------------------------------------------------------- /deps/cgal/doc_html/cgal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/doc_html/cgal.css -------------------------------------------------------------------------------- /deps/cgal/doc_html/cgal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/doc_html/cgal.ico -------------------------------------------------------------------------------- /deps/cgal/doc_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/doc_html/index.html -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/AABB_primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/AABB_primitive.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/AABB_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/AABB_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/AABB_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/AABB_tree.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Alpha_shape_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Alpha_shape_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Alpha_shape_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Alpha_shape_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Apollonius_site_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Apollonius_site_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arithmetic_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arithmetic_kernel.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_accessor.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_dcel_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_dcel_base.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_default_dcel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_default_dcel.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_enums.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_extended_dcel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_extended_dcel.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_face_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_face_map.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_observer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_overlay.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_overlay_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_overlay_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_rat_arc/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_rat_arc/Cache.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_tags.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arr_vertex_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arr_vertex_map.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Arrangement_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Arrangement_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Basic_shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Basic_shaders.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Bbox_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Bbox_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Bbox_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Bbox_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Bounded_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Bounded_kernel.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Buffer_for_vao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Buffer_for_vao.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CC_safe_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CC_safe_handle.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CGAL_Ipelet_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CGAL_Ipelet_base.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/BigFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/BigFloat.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/BigFloatRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/BigFloatRep.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/BigInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/BigInt.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/BigRat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/BigRat.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/CORE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/CORE.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/Config.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/CoreAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/CoreAux.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/CoreAux_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/CoreAux_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/CoreDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/CoreDefs.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/CoreIO_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/CoreIO_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/Expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/Expr.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/ExprRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/ExprRep.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/Expr_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/Expr_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/Filter.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/Gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/Gmp.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/Gmp_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/Gmp_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/Impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/MemoryPool.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/Promote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/Promote.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/Real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/Real.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/RealRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/RealRep.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/Real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/Real_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/RefCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/RefCount.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/Timer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/extLong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/extLong.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/extLong_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/extLong_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/poly/Curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/poly/Curves.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/poly/Poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/poly/Poly.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/poly/Poly.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/poly/Poly.tcc -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE/poly/Sturm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE/poly/Sturm.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE_BigFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE_BigFloat.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE_BigInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE_BigInt.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE_BigRat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE_BigRat.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/CORE_Expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/CORE_Expr.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cache.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cartesian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cartesian.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cartesian/Line_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cartesian/Line_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cartesian/Line_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cartesian/Line_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cartesian/Plane_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cartesian/Plane_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cartesian/Point_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cartesian/Point_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cartesian/Point_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cartesian/Point_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cartesian/Ray_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cartesian/Ray_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cartesian/Ray_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cartesian/Ray_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cartesian/solve_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cartesian/solve_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cartesian_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cartesian_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cartesian_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cartesian_matrix.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cell_attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cell_attribute.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Cell_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Cell_iterators.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Circle_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Circle_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Circle_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Circle_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Circle_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Circle_type.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Circular_arc_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Circular_arc_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Circular_arc_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Circular_arc_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Circular_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Circular_kernel_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Classification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Classification.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Coercion_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Coercion_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Combinatorial_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Combinatorial_map.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Compact_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Compact_container.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Complexity_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Complexity_tags.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Compute_anchor_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Compute_anchor_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Conic_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Conic_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Container_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Container_helper.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Convex_hull_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Convex_hull_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Counted_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Counted_number.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Counting_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Counting_iterator.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Dart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Dart.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Dart_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Dart_iterators.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Default.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Delaunay_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Delaunay_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Delaunay_mesher_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Delaunay_mesher_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Dimension.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Direction_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Direction_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Direction_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Direction_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Double_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Double_map.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Dummy_tds_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Dummy_tds_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Dynamic_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Dynamic_matrix.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Eigen_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Eigen_matrix.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Eigen_svd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Eigen_svd.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Eigen_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Eigen_vector.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Enum_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Enum_converter.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Epeck_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Epeck_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Epic_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Epic_converter.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Epick_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Epick_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Exact_algebraic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Exact_algebraic.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Exact_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Exact_integer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Exact_rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Exact_rational.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Exponent_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Exponent_vector.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/FPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/FPU.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/FPU_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/FPU_extension.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/FPU_gcc_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/FPU_gcc_i386.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/FPU_gcc_i386_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/FPU_gcc_i386_sse2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/FPU_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/FPU_msvc.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Filter_circulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Filter_circulator.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Filtered_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Filtered_kernel.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Filtered_kernel_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Filtered_kernel_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Fourtuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Fourtuple.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Fraction_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Fraction_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Fuzzy_iso_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Fuzzy_iso_box.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Fuzzy_sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Fuzzy_sphere.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/GMP/Gmpfi_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/GMP/Gmpfi_type.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/GMP/Gmpfr_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/GMP/Gmpfr_type.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/GMP/Gmpq_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/GMP/Gmpq_type.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/GMP/Gmpz_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/GMP/Gmpz_type.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/GMP/Gmpzf_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/GMP/Gmpzf_type.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/General_polygon_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/General_polygon_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Generalized_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Generalized_map.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Gmpfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Gmpfi.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Gmpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Gmpfr.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Gmpq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Gmpq.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Gmpz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Gmpz.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Gmpzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Gmpzf.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Gps_traits_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Gps_traits_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/HalfedgeDS_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/HalfedgeDS_list.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/HalfedgeDS_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/HalfedgeDS_vector.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Handle.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Handle_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Handle_for.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Has_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Has_conversion.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Has_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Has_member.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Has_timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Has_timestamp.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Hilbert_sort_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Hilbert_sort_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Hilbert_sort_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Hilbert_sort_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Hilbert_sort_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Hilbert_sort_base.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Hilbert_sort_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Hilbert_sort_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Homogeneous.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Homogeneous/RayH3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Homogeneous/RayH3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Homogeneous_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Homogeneous_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Hyperbola_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Hyperbola_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Hyperbola_ray_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Hyperbola_ray_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IEEE_754_unions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IEEE_754_unions.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/3MF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/3MF.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/3MF/read_3mf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/3MF/read_3mf.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/3MF/write_3mf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/3MF/write_3mf.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/Arr_iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/Arr_iostream.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/Color.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/Dxf_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/Dxf_reader.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/Fig_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/Fig_stream.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/File_avizo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/File_avizo.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/File_maya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/File_maya.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/File_medit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/File_medit.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/File_poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/File_poly.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/File_tetgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/File_tetgen.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/GOCAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/GOCAD.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/Generic_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/Generic_writer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/Gps_iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/Gps_iostream.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/OBJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/OBJ.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/OFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/OFF.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/OI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/OI.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/PLY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/PLY.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/PLY/PLY_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/PLY/PLY_reader.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/PLY/PLY_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/PLY/PLY_writer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/STL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/STL.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/STL/STL_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/STL/STL_reader.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/VRML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/VRML.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/VTK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/VTK.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/VTK/VTK_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/VTK/VTK_reader.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/VTK/VTK_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/VTK/VTK_writer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/WKT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/WKT.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/binary_file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/binary_file_io.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/helpers.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/io.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/io_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/io_tags.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/output_to_vtu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/output_to_vtu.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/print_OFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/print_OFF.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/read_points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/read_points.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/scan_OFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/scan_OFF.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/trace.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/write_VTU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/write_VTU.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/IO/write_points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/IO/write_points.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Identity_policy_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Identity_policy_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/analyze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/analyze.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/bmp.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/bmp_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/bmp_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/bmpendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/bmpendian.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/bmpread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/bmpread.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/bmptypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/bmptypes.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/convert.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/fgetns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/fgetns.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/gif.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/gif_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/gif_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/gis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/gis.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/inr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/inr.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/iris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/iris.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/mincio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/mincio.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/pnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/pnm.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO/recline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO/recline.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ImageIO_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ImageIO_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Image_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Image_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Image_3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Image_3_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/In_place_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/In_place_list.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Interval_nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Interval_nt.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Interval_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Interval_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Inverse_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Inverse_index.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Is_a_predicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Is_a_predicate.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Iso_cuboid_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Iso_cuboid_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Iso_rectangle_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Iso_rectangle_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Iso_rectangle_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Iso_rectangle_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Iterator_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Iterator_range.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kd_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kd_tree.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kd_tree_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kd_tree_node.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kernel/Wutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kernel/Wutils.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kernel/mpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kernel/mpl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kernel/solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kernel/solve.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kernel_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kernel_checker.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kernel_d/Line_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kernel_d/Line_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kernel_d/Pair_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kernel_d/Pair_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kernel_d/Ray_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kernel_d/Ray_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kernel_d/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kernel_d/debug.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kernel_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kernel_profiler.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Kernel_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Kernel_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/LEDA_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/LEDA_basic.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Lazy.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Lazy_exact_nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Lazy_exact_nt.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Lazy_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Lazy_kernel.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Level_interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Level_interval.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Line_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Line_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Line_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Line_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Line_arc_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Line_arc_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Line_arc_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Line_arc_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Location_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Location_policy.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/MP_Float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/MP_Float.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/MP_Float_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/MP_Float_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Memory_sizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Memory_sizer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Mesh_2/Clusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Mesh_2/Clusters.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Mesh_3/Mesher_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Mesh_3/Mesher_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Mesh_3/Odt_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Mesh_3/Odt_move.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Mesh_3/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Mesh_3/config.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Mesh_criteria_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Mesh_criteria_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Mesh_error_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Mesh_error_code.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Mesher_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Mesher_level.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Min_annulus_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Min_annulus_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Min_circle_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Min_circle_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Min_ellipse_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Min_ellipse_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Min_sphere_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Min_sphere_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Modifier_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Modifier_base.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Modular_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Modular_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Mpzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Mpzf.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Multi_surface_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Multi_surface_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Multiscale_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Multiscale_sort.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Multiset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Multiset.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/NT_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/NT_converter.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/N_step_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/N_step_adaptor.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_2/HDS_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_2/HDS_items.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_2/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_2/debug.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_2/geninfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_2/geninfo.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_3/Halfedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_3/Halfedge.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_3/Halffacet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_3/Halffacet.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_3/K3_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_3/K3_tree.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_3/Nef_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_3/Nef_box.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_3/SFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_3/SFace.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_3/SHalfedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_3/SHalfedge.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_3/SHalfloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_3/SHalfloop.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_3/SNC_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_3/SNC_items.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_3/SNC_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_3/SNC_list.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_3/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_3/Vertex.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_3/Volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_3/Volume.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_S2/SM_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_S2/SM_items.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_S2/SM_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_S2/SM_list.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nef_polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nef_polynomial.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Nested_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Nested_iterator.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Null_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Null_matrix.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/OFF_to_nef_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/OFF_to_nef_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/OTR_2/Cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/OTR_2/Cost.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/OTR_2/Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/OTR_2/Sample.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Object.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Octree.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/OpenNL/bicgstab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/OpenNL/bicgstab.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/OpenNL/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/OpenNL/blas.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Origin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Origin.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Origin_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Origin_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Orthtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Orthtree.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Orthtree/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Orthtree/IO.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Orthtree/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Orthtree/Node.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/PCA_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/PCA_util.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/PCA_util_Eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/PCA_util_Eigen.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Parabola_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Parabola_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Path_on_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Path_on_surface.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Plane_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Plane_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Plane_separator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Plane_separator.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Point_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Point_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Point_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Point_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Point_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Point_container.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Point_set_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Point_set_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Point_set_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Point_set_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Point_set_3/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Point_set_3/IO.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Point_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Point_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Polychain_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Polychain_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Polygon_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Polygon_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Polygon_set_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Polygon_set_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Polyhedron_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Polyhedron_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Polynomial.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Polynomial/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Polynomial/fwd.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Polynomial/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Polynomial/misc.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Polynomials_1_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Polynomials_1_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Polynomials_1_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Polynomials_1_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Polynomials_2_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Polynomials_2_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Polynomials_2_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Polynomials_2_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Profile_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Profile_counter.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Profile_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Profile_timer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/QP_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/QP_functions.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/QP_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/QP_models.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/QP_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/QP_options.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/QP_solution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/QP_solution.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/QP_solver/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/QP_solver/basic.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/QP_solver/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/QP_solver/debug.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/Converter.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/GraphicsItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/GraphicsItem.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/camera.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/camera_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/camera_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/constraint.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/debug.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/debug_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/debug_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/frame.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/frame_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/frame_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/mouseGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/mouseGrabber.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/qglviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/qglviewer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/quaternion.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/resources.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/utility.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/utility_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/utility_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/vec.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Qt/vec_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Qt/vec_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Quadtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Quadtree.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Quotient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Quotient.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Quotient_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Quotient_fwd.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/RS/ak_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/RS/ak_1.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/RS/ak_z_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/RS/ak_z_1.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/RS/algebraic_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/RS/algebraic_1.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/RS/comparator_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/RS/comparator_1.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/RS/dyadic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/RS/dyadic.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/RS/functors_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/RS/functors_1.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/RS/functors_z_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/RS/functors_z_1.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/RS/rs2_calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/RS/rs2_calls.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/RS/signat_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/RS/signat_1.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Random.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Random_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Random_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Range_tree_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Range_tree_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Range_tree_k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Range_tree_k.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Rational_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Rational_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Ray_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Ray_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Ray_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Ray_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Real_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Real_timer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Real_timer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Real_timer_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Regular_grid_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Regular_grid_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Residue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Residue.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Ridges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Ridges.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Root_of_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Root_of_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/SEP_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/SEP_header.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/SEP_to_ImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/SEP_to_ImageIO.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Search_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Search_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Search_traits_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Search_traits_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Search_traits_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Search_traits_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Search_traits_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Search_traits_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Segment_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Segment_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Segment_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Segment_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Segment_tree_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Segment_tree_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Segment_tree_k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Segment_tree_k.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Shape_detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Shape_detection.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Single.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Sixtuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Sixtuple.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Skin_surface_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Skin_surface_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Skiplist.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Snap_rounding_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Snap_rounding_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Sphere_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Sphere_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Splitters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Splitters.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Sqrt_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Sqrt_extension.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Stream_lines_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Stream_lines_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Subiterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Subiterator.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Surface_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Surface_mesh.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Surface_mesh/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Surface_mesh/IO.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Surface_sweep_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Surface_sweep_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Tetrahedron_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Tetrahedron_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Three/Three.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Three/Three.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Threetuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Threetuple.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Time_stamper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Time_stamper.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Timer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Timer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Timer_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Tree_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Tree_base.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Tree_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Tree_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Triangle_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Triangle_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Triangle_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Triangle_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Triangulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Triangulation.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Triangulation_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Triangulation_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Triangulation_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Triangulation_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Trisegment_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Trisegment_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Twotuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Twotuple.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Umbilics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Umbilics.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Uncertain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Uncertain.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Union_find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Union_find.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Unique_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Unique_hash_map.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Vector_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Vector_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Vector_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Vector_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Weights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Weights.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Weights/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Weights/utils.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/Width_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/Width_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/algorithm.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/alpha_wrap_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/alpha_wrap_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/apply_to_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/apply_to_range.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/argument_swaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/argument_swaps.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/array.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/assertions.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/assertions_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/assertions_impl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/atomic.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/auto_link/CGAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/auto_link/CGAL.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/auto_link/CORE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/auto_link/CORE.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/auto_link/Qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/auto_link/Qt.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/barycenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/barycenter.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/basic.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/basic_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/basic_classes.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/boost/bimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/boost/bimap.hpp -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/boost/graph/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/boost/graph/io.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/boost_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/boost_mp.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/bounding_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/bounding_box.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/centroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/centroid.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ch_bykat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ch_bykat.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ch_eddy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ch_eddy.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ch_jarvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ch_jarvis.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ch_melkman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ch_melkman.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/circulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/circulator.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/config.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/connect_holes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/connect_holes.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/constant.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/constructions_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/constructions_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/convert_to_bfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/convert_to_bfi.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/convex_hull_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/convex_hull_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/convex_hull_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/convex_hull_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/copy_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/copy_n.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/cpp_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/cpp_float.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/demangle.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/determinant.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/double.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/draw_face_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/draw_face_graph.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/draw_nef_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/draw_nef_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/draw_polygon_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/draw_polygon_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/draw_polyhedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/draw_polyhedron.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/enable_warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/enable_warnings.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/enum.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/envelope_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/envelope_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/envelope_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/envelope_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/estimate_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/estimate_scale.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/exceptions.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/export/CGAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/export/CGAL.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/export/CORE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/export/CORE.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/export/ImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/export/ImageIO.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/export/Qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/export/Qt.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/export/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/export/helpers.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/exude_mesh_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/exude_mesh_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/float.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/for_each.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/functional.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/generators.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/generic_sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/generic_sweep.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/gl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/glu.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/gmp.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/gmpxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/gmpxx.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/grabbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/grabbers.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/hash_openmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/hash_openmesh.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/hilbert_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/hilbert_sort.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/int.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/intersection_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/intersection_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/intersection_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/intersection_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/intersections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/intersections.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/intersections_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/intersections_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/ipower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/ipower.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/is_convertible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/is_convertible.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/is_streamable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/is_streamable.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/is_y_monotone_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/is_y_monotone_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/iterator.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/kernel_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/kernel_basic.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/kernel_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/kernel_config.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/leda_bigfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/leda_bigfloat.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/leda_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/leda_integer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/leda_rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/leda_rational.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/leda_real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/leda_real.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/license.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/license/Mesh_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/license/Mesh_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/license/Mesh_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/license/Mesh_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/license/Nef_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/license/Nef_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/license/Nef_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/license/Nef_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/license/Nef_S2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/license/Nef_S2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/license/SMDS_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/license/SMDS_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/license/TDS_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/license/TDS_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/license/TDS_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/license/TDS_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/license/Three.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/license/Three.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/license/lgpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/license/lgpl.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/long_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/long_double.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/long_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/long_long.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/make_mesh_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/make_mesh_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/memory.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/min_max_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/min_max_n.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/minkowski_sum_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/minkowski_sum_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/minkowski_sum_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/minkowski_sum_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/mpq_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/mpq_class.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/mpz_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/mpz_class.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/mutex.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/number_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/number_utils.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/optimize_mesh_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/optimize_mesh_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/partition_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/partition_2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/perturb_mesh_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/perturb_mesh_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/predicates_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/predicates_d.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/primes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/primes.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/property_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/property_map.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/rank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/rank.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/refine_mesh_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/refine_mesh_3.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/remove_outliers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/remove_outliers.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/result_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/result_of.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/spatial_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/spatial_sort.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/sse2.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/stddef.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/sweep_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/sweep_observer.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/tags.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/thread.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/to_rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/to_rational.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/tss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/tss.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/tuple.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/type_traits.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/typeset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/typeset.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/use.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/user_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/user_classes.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/utility.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/utils.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/utils_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/utils_classes.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/vector.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/version.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/version_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/version_macros.h -------------------------------------------------------------------------------- /deps/cgal/include/CGAL/wmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/include/CGAL/wmult.h -------------------------------------------------------------------------------- /deps/cgal/lib/cmake/CGAL/CGALConfig-installation-dirs.cmake.in: -------------------------------------------------------------------------------- 1 | set(CGAL_ROOT @CMAKE_INSTALL_PREFIX@) 2 | -------------------------------------------------------------------------------- /deps/cgal/lib/cmake/CGAL/CGALConfigBuildVersion.cmake: -------------------------------------------------------------------------------- 1 | set(CGAL_BUILD_VERSION 1000) -------------------------------------------------------------------------------- /deps/cgal/scripts/cgal_create_CMakeLists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/scripts/cgal_create_CMakeLists -------------------------------------------------------------------------------- /deps/cgal/scripts/cgal_make_macosx_app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/deps/cgal/scripts/cgal_make_macosx_app -------------------------------------------------------------------------------- /dev_log/img/synth_dataset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/dev_log/img/synth_dataset.jpg -------------------------------------------------------------------------------- /dev_log/img/workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/dev_log/img/workflow.jpg -------------------------------------------------------------------------------- /dev_log/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/dev_log/log.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/_autosummary/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/_static/correct_install_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/_static/correct_install_check.png -------------------------------------------------------------------------------- /doc/_static/fig_scheme_softarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/_static/fig_scheme_softarch.png -------------------------------------------------------------------------------- /doc/_static/fron_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/_static/fron_log.png -------------------------------------------------------------------------------- /doc/_static/front_bothroundsquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/_static/front_bothroundsquare.png -------------------------------------------------------------------------------- /doc/_static/front_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/_static/front_square.png -------------------------------------------------------------------------------- /doc/_static/logo_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/_static/logo_favicon.ico -------------------------------------------------------------------------------- /doc/_static/logo_sphinx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/_static/logo_sphinx.png -------------------------------------------------------------------------------- /doc/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/_static/style.css -------------------------------------------------------------------------------- /doc/_static/tutorials/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/_static/tutorials/help.png -------------------------------------------------------------------------------- /doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/_templates/layout.html -------------------------------------------------------------------------------- /doc/assembly-evaluation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/assembly-evaluation.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/contribute.md -------------------------------------------------------------------------------- /doc/dev_documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/dev_documentation.rst -------------------------------------------------------------------------------- /doc/development_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/development_env.md -------------------------------------------------------------------------------- /doc/df_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/df_architecture.md -------------------------------------------------------------------------------- /doc/diffCheck.df-b_geometries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/diffCheck.df-b_geometries.rst -------------------------------------------------------------------------------- /doc/diffCheck.df_cvt_bindings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/diffCheck.df_cvt_bindings.rst -------------------------------------------------------------------------------- /doc/diffCheck.df_error_estimation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/diffCheck.df_error_estimation.rst -------------------------------------------------------------------------------- /doc/diffCheck.df_joint_detector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/diffCheck.df_joint_detector.rst -------------------------------------------------------------------------------- /doc/diffCheck.df_transformations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/diffCheck.df_transformations.rst -------------------------------------------------------------------------------- /doc/diffCheck.df_util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/diffCheck.df_util.rst -------------------------------------------------------------------------------- /doc/diffCheck.df_visualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/diffCheck.df_visualization.rst -------------------------------------------------------------------------------- /doc/diffCheck.dfb_registrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/diffCheck.dfb_registrations.rst -------------------------------------------------------------------------------- /doc/diffCheck.dfb_segmentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/diffCheck.dfb_segmentation.rst -------------------------------------------------------------------------------- /doc/diffCheck_PythonAPI.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/diffCheck_PythonAPI.rst -------------------------------------------------------------------------------- /doc/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/documentation.md -------------------------------------------------------------------------------- /doc/gh_DFBrepToCloud.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFBrepToCloud.rst -------------------------------------------------------------------------------- /doc/gh_DFBuildAssembly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFBuildAssembly.rst -------------------------------------------------------------------------------- /doc/gh_DFCADSegmentator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFCADSegmentator.rst -------------------------------------------------------------------------------- /doc/gh_DFCloudMeshDistance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFCloudMeshDistance.rst -------------------------------------------------------------------------------- /doc/gh_DFCloudNormalEstimator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFCloudNormalEstimator.rst -------------------------------------------------------------------------------- /doc/gh_DFCloudNormalSegmentator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFCloudNormalSegmentator.rst -------------------------------------------------------------------------------- /doc/gh_DFCloudSizeDownsample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFCloudSizeDownsample.rst -------------------------------------------------------------------------------- /doc/gh_DFCloudUniformDownsample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFCloudUniformDownsample.rst -------------------------------------------------------------------------------- /doc/gh_DFCloudVoxelDownsample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFCloudVoxelDownsample.rst -------------------------------------------------------------------------------- /doc/gh_DFColorizeCloud.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFColorizeCloud.rst -------------------------------------------------------------------------------- /doc/gh_DFCsvExporter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFCsvExporter.rst -------------------------------------------------------------------------------- /doc/gh_DFDeconstructAssembly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFDeconstructAssembly.rst -------------------------------------------------------------------------------- /doc/gh_DFDeconstructBeam.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFDeconstructBeam.rst -------------------------------------------------------------------------------- /doc/gh_DFExportCloudToFile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFExportCloudToFile.rst -------------------------------------------------------------------------------- /doc/gh_DFExportResults.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFExportResults.rst -------------------------------------------------------------------------------- /doc/gh_DFFastGlobalRegistration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFFastGlobalRegistration.rst -------------------------------------------------------------------------------- /doc/gh_DFICPRegistration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFICPRegistration.rst -------------------------------------------------------------------------------- /doc/gh_DFImportResults.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFImportResults.rst -------------------------------------------------------------------------------- /doc/gh_DFInspectResults.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFInspectResults.rst -------------------------------------------------------------------------------- /doc/gh_DFJointSegmentator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFJointSegmentator.rst -------------------------------------------------------------------------------- /doc/gh_DFLoadCloudFromFile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFLoadCloudFromFile.rst -------------------------------------------------------------------------------- /doc/gh_DFLoadMeshFromFile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFLoadMeshFromFile.rst -------------------------------------------------------------------------------- /doc/gh_DFMergeAssemblies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFMergeAssemblies.rst -------------------------------------------------------------------------------- /doc/gh_DFMeshToCloud.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFMeshToCloud.rst -------------------------------------------------------------------------------- /doc/gh_DFPreviewAssembly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFPreviewAssembly.rst -------------------------------------------------------------------------------- /doc/gh_DFRANSACGlobalRegistration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFRANSACGlobalRegistration.rst -------------------------------------------------------------------------------- /doc/gh_DFRemoveBeam.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFRemoveBeam.rst -------------------------------------------------------------------------------- /doc/gh_DFRemoveStatisticalOutliers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFRemoveStatisticalOutliers.rst -------------------------------------------------------------------------------- /doc/gh_DFTester.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFTester.rst -------------------------------------------------------------------------------- /doc/gh_DFVisualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFVisualization.rst -------------------------------------------------------------------------------- /doc/gh_DFVisualizationSettings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFVisualizationSettings.rst -------------------------------------------------------------------------------- /doc/gh_DFXMLExporter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_DFXMLExporter.rst -------------------------------------------------------------------------------- /doc/gh_components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/gh_components.rst -------------------------------------------------------------------------------- /doc/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/glossary.md -------------------------------------------------------------------------------- /doc/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/image.png -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/joints-evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/joints-evaluation.md -------------------------------------------------------------------------------- /doc/key-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/key-concepts.md -------------------------------------------------------------------------------- /doc/manual-assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/manual-assembly.md -------------------------------------------------------------------------------- /doc/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/quickstart.md -------------------------------------------------------------------------------- /doc/robotic-assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/robotic-assembly.md -------------------------------------------------------------------------------- /doc/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/style.md -------------------------------------------------------------------------------- /doc/test_pybind_dll_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/test_pybind_dll_smoke.py -------------------------------------------------------------------------------- /doc/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/testing.rst -------------------------------------------------------------------------------- /doc/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/doc/tutorials.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/environment.yml -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/favicon.ico -------------------------------------------------------------------------------- /invokes/flagerize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/invokes/flagerize.py -------------------------------------------------------------------------------- /invokes/ghcomponentize/ghio/GH_IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/invokes/ghcomponentize/ghio/GH_IO.dll -------------------------------------------------------------------------------- /invokes/pypireize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/invokes/pypireize.py -------------------------------------------------------------------------------- /invokes/versionize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/invokes/versionize.py -------------------------------------------------------------------------------- /invokes/yaker/exec/DocoptNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/invokes/yaker/exec/DocoptNet.dll -------------------------------------------------------------------------------- /invokes/yaker/exec/Yak.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/invokes/yaker/exec/Yak.Core.dll -------------------------------------------------------------------------------- /invokes/yaker/exec/Yak.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/invokes/yaker/exec/Yak.exe -------------------------------------------------------------------------------- /invokes/yaker/exec/YamlDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/invokes/yaker/exec/YamlDotNet.dll -------------------------------------------------------------------------------- /invokes/yaker/ghio/GH_IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/invokes/yaker/ghio/GH_IO.dll -------------------------------------------------------------------------------- /invokes/yaker/ghio/Grasshopper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/invokes/yaker/ghio/Grasshopper.dll -------------------------------------------------------------------------------- /invokes/yakerize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/invokes/yakerize.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/logo.png -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/manifest.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/diffCheck.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheck.hh -------------------------------------------------------------------------------- /src/diffCheck/IOManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheck/IOManager.cc -------------------------------------------------------------------------------- /src/diffCheck/IOManager.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheck/IOManager.hh -------------------------------------------------------------------------------- /src/diffCheck/benchmark/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/diffCheck/geometry/DFMesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheck/geometry/DFMesh.cc -------------------------------------------------------------------------------- /src/diffCheck/geometry/DFMesh.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheck/geometry/DFMesh.hh -------------------------------------------------------------------------------- /src/diffCheck/geometry/DFPointCloud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheck/geometry/DFPointCloud.cc -------------------------------------------------------------------------------- /src/diffCheck/geometry/DFPointCloud.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheck/geometry/DFPointCloud.hh -------------------------------------------------------------------------------- /src/diffCheck/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheck/log.cc -------------------------------------------------------------------------------- /src/diffCheck/log.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheck/log.hh -------------------------------------------------------------------------------- /src/diffCheck/registrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/diffCheck/segmentation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/diffCheck/visualizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheck/visualizer.cc -------------------------------------------------------------------------------- /src/diffCheck/visualizer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheck/visualizer.hh -------------------------------------------------------------------------------- /src/diffCheckApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheckApp.cc -------------------------------------------------------------------------------- /src/diffCheckBindings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/diffCheckBindings.cc -------------------------------------------------------------------------------- /src/gh/components/DF_remove_beam/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/components/DF_remove_beam/code.py -------------------------------------------------------------------------------- /src/gh/components/DF_tester/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/components/DF_tester/code.py -------------------------------------------------------------------------------- /src/gh/components/DF_tester/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/components/DF_tester/icon.png -------------------------------------------------------------------------------- /src/gh/diffCheck/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/diffCheck/MANIFEST.in -------------------------------------------------------------------------------- /src/gh/diffCheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/diffCheck/README.md -------------------------------------------------------------------------------- /src/gh/diffCheck/diffCheck.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/gh/diffCheck/diffCheck.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pybind11>=2.5.0 3 | -------------------------------------------------------------------------------- /src/gh/diffCheck/diffCheck.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | diffCheck 2 | -------------------------------------------------------------------------------- /src/gh/diffCheck/diffCheck/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/diffCheck/diffCheck/__init__.py -------------------------------------------------------------------------------- /src/gh/diffCheck/diffCheck/df_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/diffCheck/diffCheck/df_util.py -------------------------------------------------------------------------------- /src/gh/diffCheck/diffCheck/dlls/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gh/diffCheck/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/diffCheck/setup.py -------------------------------------------------------------------------------- /src/gh/examples/assembly_beam_system.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/examples/assembly_beam_system.ghx -------------------------------------------------------------------------------- /src/gh/examples/compute_distance.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/examples/compute_distance.ghx -------------------------------------------------------------------------------- /src/gh/examples/error_viz_tester.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/examples/error_viz_tester.ghx -------------------------------------------------------------------------------- /src/gh/examples/normal_estimation.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/examples/normal_estimation.ghx -------------------------------------------------------------------------------- /src/gh/examples/tester.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/src/gh/examples/tester.ghx -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/tasks.py -------------------------------------------------------------------------------- /test_save.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/test_save.ply -------------------------------------------------------------------------------- /tests/allCppTests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/tests/allCppTests.cc -------------------------------------------------------------------------------- /tests/integration_tests/ghcomponents_tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/ghcomponents_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/package_tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/package_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/pybinds_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data/cube_mesh.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/tests/test_data/cube_mesh.ply -------------------------------------------------------------------------------- /tests/test_data/roof_quarter.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/tests/test_data/roof_quarter.ply -------------------------------------------------------------------------------- /tests/unit_tests/DFLog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/tests/unit_tests/DFLog.cc -------------------------------------------------------------------------------- /tests/unit_tests/DFPointCloudTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffCheckOrg/diffCheck/HEAD/tests/unit_tests/DFPointCloudTest.cc --------------------------------------------------------------------------------