├── .gitignore ├── CGAL ├── AUTHORS ├── CGALConfig.cmake ├── CHANGES.md ├── CMakeLists.txt ├── INSTALL.md ├── LICENSE ├── LICENSE.FREE_USE ├── LICENSE.GPL ├── LICENSE.LGPL ├── VERSION ├── auxiliary │ ├── cgal_app.icns │ ├── cgal_create_cmake_script.1 │ └── gdb │ │ ├── python │ │ └── CGAL │ │ │ ├── __init__.py │ │ │ └── printers.py │ │ ├── test-gdb.py │ │ └── test.cpp ├── cgal.ico ├── cmake │ └── modules │ │ ├── CGALConfig_binary.cmake.in │ │ ├── CGALConfig_binary_header_only.cmake.in │ │ ├── CGALConfig_install.cmake.in │ │ ├── CGALLibConfig.cmake.in │ │ ├── CGAL_CheckCXXFileRuns.cmake │ │ ├── CGAL_Common.cmake │ │ ├── CGAL_CreateSingleSourceCGALProgram.cmake │ │ ├── CGAL_GeneratorSpecificSettings.cmake │ │ ├── CGAL_Locate_CGAL_TAUCS.cmake │ │ ├── CGAL_Macros.cmake │ │ ├── CGAL_Qt5_moc_and_resource_files.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_TweakFindBoost.cmake │ │ ├── CGAL_UseBLAS.cmake │ │ ├── CGAL_UseLAPACK.cmake │ │ ├── CGAL_UseLEDA.cmake │ │ ├── CGAL_UseMKL.cmake │ │ ├── CGAL_UseMPFI.cmake │ │ ├── CGAL_UseRS.cmake │ │ ├── CGAL_UseRS3.cmake │ │ ├── CGAL_UseTAUCS.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_setup_target_dependencies.cmake │ │ ├── CGAL_target_use_TBB.cmake │ │ ├── FindBLAS.cmake │ │ ├── FindCORE.cmake │ │ ├── FindESBTL.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindF2C.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGMPXX.cmake │ │ ├── FindIPE.cmake │ │ ├── FindLAPACK.cmake │ │ ├── FindLASLIB.cmake │ │ ├── FindLEDA.cmake │ │ ├── FindMETIS.cmake │ │ ├── FindMKL.cmake │ │ ├── FindMPFI.cmake │ │ ├── FindMPFR.cmake │ │ ├── FindNTL.cmake │ │ ├── FindOpenMesh.cmake │ │ ├── FindRS.cmake │ │ ├── FindRS3.cmake │ │ ├── FindSuiteSparse.cmake │ │ ├── FindTAUCS.cmake │ │ ├── FindTBB.cmake │ │ ├── FindTensorFlow.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 │ │ ├── Makefile │ │ ├── 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_ATLAS.cpp │ │ │ ├── test_BLAS.cpp │ │ │ ├── test_BOOST.cpp │ │ │ ├── test_BOOST_PROGRAM_OPTIONS.cpp │ │ │ ├── test_BOOST_THREAD.cpp │ │ │ ├── test_GMP.cpp │ │ │ ├── test_GMPXX.cpp │ │ │ ├── test_LAPACK.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 │ │ ├── list_of_whitelisted_headers.cmake │ │ ├── process_dependencies.cmake │ │ ├── run_cmd_redirection_cerr.cmake │ │ ├── run_test_with_cin.cmake │ │ └── test_MPFI.cpp ├── demo │ ├── AABB_tree │ │ ├── AABB_demo.cpp │ │ ├── AABB_demo.pdf │ │ ├── AABB_demo.qrc │ │ ├── CMakeLists.txt │ │ ├── Color_ramp.h │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── MainWindow.ui │ │ ├── Refiner.h │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── Viewer.cpp │ │ ├── Viewer.h │ │ ├── benchmarks.cpp │ │ ├── resources │ │ │ ├── about.html │ │ │ └── cgal_logo.xpm │ │ └── types.h │ ├── Alpha_shapes_2 │ │ ├── Alpha_shapes_2.cpp │ │ ├── Alpha_shapes_2.qrc │ │ ├── Alpha_shapes_2.ui │ │ ├── CMakeLists.txt │ │ └── about_Alpha_shapes_2.html │ ├── Alpha_shapes_3 │ │ ├── Alpha_shape_3.cpp │ │ ├── Alpha_shape_3.qrc │ │ ├── CMakeLists.txt │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── MainWindow.ui │ │ ├── Viewer.cpp │ │ ├── Viewer.h │ │ ├── about_Alpha_shapes_3.html │ │ └── typedefs.h │ ├── Apollonius_graph_2 │ │ ├── Apollonius_graph_2.cpp │ │ ├── Apollonius_graph_2.qrc │ │ ├── Apollonius_graph_2.ui │ │ ├── CMakeLists.txt │ │ └── about_Apollonius_graph_2.html │ ├── Arrangement_on_surface_2 │ │ ├── ArrangementCurveInputCallback.h │ │ ├── ArrangementDemoGraphicsView.cpp │ │ ├── ArrangementDemoGraphicsView.h │ │ ├── ArrangementDemoPropertiesDialog.cpp │ │ ├── ArrangementDemoPropertiesDialog.h │ │ ├── ArrangementDemoPropertiesDialog.ui │ │ ├── ArrangementDemoTab.cpp │ │ ├── ArrangementDemoTab.h │ │ ├── ArrangementDemoWindow.cpp │ │ ├── ArrangementDemoWindow.h │ │ ├── ArrangementDemoWindow.qrc │ │ ├── ArrangementDemoWindow.ui │ │ ├── ArrangementGraphicsItem.cpp │ │ ├── ArrangementGraphicsItem.h │ │ ├── ArrangementPainterOstream.h │ │ ├── ArrangementSegmentInputCallback.h │ │ ├── ArrangementTypes.h │ │ ├── CMakeLists.txt │ │ ├── Callback.cpp │ │ ├── Callback.h │ │ ├── ColorItemEditor.cpp │ │ ├── ColorItemEditor.h │ │ ├── Conic_reader.h │ │ ├── CurveGraphicsItem.h │ │ ├── DeleteCurveCallback.h │ │ ├── DeleteCurveMode.cpp │ │ ├── DeleteCurveMode.h │ │ ├── DeleteCurveModeItemEditor.cpp │ │ ├── DeleteCurveModeItemEditor.h │ │ ├── EnvelopeCallback.cpp │ │ ├── EnvelopeCallback.h │ │ ├── FillFaceCallback.cpp │ │ ├── FillFaceCallback.h │ │ ├── GraphicsViewCurveInput.cpp │ │ ├── GraphicsViewCurveInput.h │ │ ├── GraphicsViewSegmentInput.cpp │ │ ├── GraphicsViewSegmentInput.h │ │ ├── ISnappable.h │ │ ├── MergeEdgeCallback.h │ │ ├── NewTabDialog.cpp │ │ ├── NewTabDialog.h │ │ ├── NewTabDialog.ui │ │ ├── OverlayDialog.cpp │ │ ├── OverlayDialog.h │ │ ├── OverlayDialog.ui │ │ ├── PointLocationCallback.h │ │ ├── PointsGraphicsItem.cpp │ │ ├── PointsGraphicsItem.h │ │ ├── PropertyValueDelegate.cpp │ │ ├── PropertyValueDelegate.h │ │ ├── SplitEdgeCallback.cpp │ │ ├── SplitEdgeCallback.h │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ ├── VerticalRayGraphicsItem.cpp │ │ ├── VerticalRayGraphicsItem.h │ │ ├── VerticalRayShootCallback.cpp │ │ ├── VerticalRayShootCallback.h │ │ ├── arrangement_2.cpp │ │ ├── help │ │ │ ├── about.html │ │ │ └── index.html │ │ ├── icons │ │ │ ├── blue_icon.xpm │ │ │ ├── conic.xpm │ │ │ ├── conic_types.xpm │ │ │ ├── delete.xpm │ │ │ ├── demo_arrow_down.xpm │ │ │ ├── demo_arrow_up.xpm │ │ │ ├── demo_colors.xpm │ │ │ ├── demo_conic_3points.xpm │ │ │ ├── demo_conic_5points.xpm │ │ │ ├── demo_conic_circle.xpm │ │ │ ├── demo_conic_ellipse.xpm │ │ │ ├── demo_conic_line.xpm │ │ │ ├── demo_conic_ray.xpm │ │ │ ├── demo_conic_segment.xpm │ │ │ ├── demo_delete.bmp │ │ │ ├── demo_delete.xpm │ │ │ ├── demo_fill.xpm │ │ │ ├── demo_insert.bmp │ │ │ ├── demo_insert.xpm │ │ │ ├── demo_merge.bmp │ │ │ ├── demo_merge.xpm │ │ │ ├── demo_pointlocation.bmp │ │ │ ├── demo_pointlocation.xpm │ │ │ ├── demo_rayshoot.bmp │ │ │ ├── demo_rayshoot.xpm │ │ │ ├── demo_rayshoot_down.xpm │ │ │ ├── demo_rayshoot_up.xpm │ │ │ ├── demo_snapgrid.bmp │ │ │ ├── demo_snapgrid.xpm │ │ │ ├── demo_snapvertex.bmp │ │ │ ├── demo_snapvertex.xpm │ │ │ ├── demo_split.bmp │ │ │ ├── demo_split.xpm │ │ │ ├── demo_zoomin.bmp │ │ │ ├── demo_zoomin.xpm │ │ │ ├── demo_zoomout.bmp │ │ │ ├── demo_zoomout.xpm │ │ │ ├── draw.xpm │ │ │ ├── green_icon.xpm │ │ │ ├── grid.xpm │ │ │ ├── hand.xpm │ │ │ ├── insert.xpm │ │ │ ├── lower_env_xpm.bmp │ │ │ ├── lower_env_xpm.xpm │ │ │ ├── merge.xpm │ │ │ ├── none.xpm │ │ │ ├── po.xpm │ │ │ ├── points.xpm │ │ │ ├── polyline.xpm │ │ │ ├── ray_shooting.xpm │ │ │ ├── ray_shooting2.xpm │ │ │ ├── red_icon.xpm │ │ │ ├── snap.xpm │ │ │ ├── split.xpm │ │ │ ├── upper_env_xpm.bmp │ │ │ ├── upper_env_xpm.xpm │ │ │ ├── voronoi.xpm │ │ │ └── yellow_icon.xpm │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── Test.cpp │ │ │ ├── TestAlgebraic.cpp │ │ │ └── TestRayPL.cpp │ ├── Bounding_volumes │ │ ├── Bounding_volumes.cpp │ │ ├── Bounding_volumes.qrc │ │ ├── Bounding_volumes.ui │ │ ├── CMakeLists.txt │ │ ├── Ellipse.h │ │ ├── about_Bounding_volumes.html │ │ └── icons │ │ │ ├── convex_hull.png │ │ │ ├── min_circle.pdf │ │ │ ├── min_circle.png │ │ │ ├── min_ellipse.png │ │ │ ├── min_parallelogram.png │ │ │ ├── min_quadrilateral.png │ │ │ └── p_center.png │ ├── CGAL_ipelets │ │ ├── CMakeLists.txt │ │ ├── alpha_shapes.cpp │ │ ├── arrangement.cpp │ │ ├── bbox_restriction.cpp │ │ ├── circle_pencils.cpp │ │ ├── cone_spanners.cpp │ │ ├── diagrams.cpp │ │ ├── distance.cpp │ │ ├── generator.cpp │ │ ├── hilbert_sort.cpp │ │ ├── hull.cpp │ │ ├── hyperbolic.cpp │ │ ├── include │ │ │ └── CGAL_ipelets │ │ │ │ ├── k_delaunay.h │ │ │ │ └── pencils.h │ │ ├── lua │ │ │ ├── libCGAL_alpha_shapes.lua │ │ │ ├── libCGAL_arrangement.lua │ │ │ ├── libCGAL_bbox_restriction.lua │ │ │ ├── libCGAL_circle_pencils.lua │ │ │ ├── libCGAL_cone_spanners.lua │ │ │ ├── libCGAL_diagrams.lua │ │ │ ├── libCGAL_distance.lua │ │ │ ├── libCGAL_generator.lua │ │ │ ├── libCGAL_hilbert_sort.lua │ │ │ ├── libCGAL_hull.lua │ │ │ ├── libCGAL_hyperbolic.lua │ │ │ ├── libCGAL_mesh_2.lua │ │ │ ├── libCGAL_minkowski.lua │ │ │ ├── libCGAL_mst.lua │ │ │ ├── libCGAL_multi_delaunay.lua │ │ │ ├── libCGAL_multi_regular.lua │ │ │ ├── libCGAL_partition.lua │ │ │ ├── libCGAL_pca.lua │ │ │ ├── libCGAL_simple_triangulation.lua │ │ │ ├── libCGAL_skeleton.lua │ │ │ ├── libCGAL_svdlinf.lua │ │ │ └── libCGAL_triangulation.lua │ │ ├── mesh_2.cpp │ │ ├── minkowski.cpp │ │ ├── mst.cpp │ │ ├── multi_delaunay.cpp │ │ ├── multi_regular.cpp │ │ ├── partition.cpp │ │ ├── pca.cpp │ │ ├── simple_triangulation.cpp │ │ ├── skeleton.cpp │ │ ├── svdlinf.cpp │ │ └── triangulation.cpp │ ├── CMakeLists.txt │ ├── Circular_kernel_2 │ │ ├── ArcsGraphicsItem.h │ │ ├── CMakeLists.txt │ │ ├── Circular_kernel_2.cpp │ │ ├── Circular_kernel_2.qrc │ │ ├── Circular_kernel_2.ui │ │ ├── about_Circular_kernel_2.html │ │ └── arcs.arc │ ├── Circular_kernel_3 │ │ ├── CMakeLists.txt │ │ ├── Circular_kernel_3.cpp │ │ ├── Viewer.cpp │ │ └── Viewer.h │ ├── Convex_hull_3 │ │ ├── CMakeLists.txt │ │ ├── README │ │ └── quickhull_3_demo.cpp │ ├── Generator │ │ ├── CMakeLists.txt │ │ ├── Generator_2.cpp │ │ ├── Generator_2.qrc │ │ ├── Generator_2.ui │ │ └── about_Generator_2.html │ ├── Geomview │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── gv_terrain.cpp │ │ ├── input.cpp │ │ └── kernel.cpp │ ├── GraphicsView │ │ ├── CMakeLists.txt │ │ └── min.cpp │ ├── Hyperbolic_triangulation_2 │ │ ├── CMakeLists.txt │ │ ├── HDT2.cpp │ │ ├── HDT2.ui │ │ ├── include │ │ │ └── internal │ │ │ │ └── Qt │ │ │ │ ├── HyperbolicPainterOstream.h │ │ │ │ ├── HyperbolicPainterOstreamCK.h │ │ │ │ ├── HyperbolicVoronoiGraphicsItem.h │ │ │ │ ├── TriangulationCircumcircle.h │ │ │ │ ├── TriangulationConflictZone.h │ │ │ │ ├── TriangulationGraphicsItem.h │ │ │ │ ├── TriangulationGraphicsItemWithColorInfo.h │ │ │ │ ├── TriangulationMovingPoint.h │ │ │ │ ├── TriangulationPointInputAndConflictZone.h │ │ │ │ └── TriangulationRemoveVertex.h │ │ └── resources │ │ │ ├── Delaunay_triangulation_2.qrc │ │ │ ├── about_CGAL.html │ │ │ ├── about_Hyperbolic_Delaunay_triangulation_2.html │ │ │ └── icons │ │ │ ├── circumcenter.pdf │ │ │ ├── circumcenter.png │ │ │ ├── conflict_zone.pdf │ │ │ ├── conflict_zone.png │ │ │ ├── moving_point.pdf │ │ │ ├── moving_point.png │ │ │ ├── triangulation.pdf │ │ │ └── triangulation.png │ ├── Interpolation │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── interpolation_2_demo.cpp │ │ └── surface_voronoi.cpp │ ├── L1_Voronoi_diagram_2 │ │ ├── CMakeLists.txt │ │ ├── L1_voronoi_diagram_2.cpp │ │ ├── L1_voronoi_diagram_2.qrc │ │ ├── L1_voronoi_diagram_2.ui │ │ ├── about_L1_voronoi_diagram_2.html │ │ └── include │ │ │ └── CGAL │ │ │ ├── L1_voronoi_traits_2.h │ │ │ └── Qt │ │ │ ├── ArrangementGraphicsItem.h │ │ │ ├── ArrangementPointInput.h │ │ │ └── SetGraphicsItem.h │ ├── Largest_empty_rect_2 │ │ ├── CMakeLists.txt │ │ ├── Largest_empty_rectangle_2.cpp │ │ ├── Largest_empty_rectangle_2.qrc │ │ ├── Largest_empty_rectangle_2.ui │ │ └── about_Largest_empty_rectangle_2.html │ ├── Linear_cell_complex │ │ ├── CMakeLists.txt │ │ ├── CreateMenger.ui │ │ ├── CreateMesh.ui │ │ ├── CreateSierpinskiCarpet.ui │ │ ├── CreateSierpinskiTriangle.ui │ │ ├── Linear_cell_complex_3.qrc │ │ ├── Linear_cell_complex_3_demo.cpp │ │ ├── Linear_cell_complex_3_subdivision.cpp │ │ ├── Linear_cell_complex_pqq_subdivision.cpp │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── MainWindow.ui │ │ ├── Viewer.cpp │ │ ├── Viewer.h │ │ ├── about_Linear_cell_complex_3.html │ │ ├── import_moka.h │ │ └── typedefs.h │ ├── Mesh_2 │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── conform.cpp │ │ └── mesh.cpp │ ├── Optimal_transportation_reconstruction_2 │ │ ├── CMakeLists.txt │ │ ├── Otr2_demo.cpp │ │ ├── Otr2_kerneled.h │ │ ├── dialog_options.h │ │ ├── glviewer.cpp │ │ ├── glviewer.h │ │ ├── icons │ │ │ ├── Voronoi_diagram_2.png │ │ │ ├── fileNew.png │ │ │ ├── fileOpen.png │ │ │ ├── fileSave.png │ │ │ ├── fit-page-32.png │ │ │ ├── inputPoint.png │ │ │ ├── snapshot.png │ │ │ ├── triangulation.png │ │ │ ├── until.png │ │ │ └── vertex.png │ │ ├── options.ui │ │ ├── pwsrec.qrc │ │ ├── pwsrec.ui │ │ ├── render.cpp │ │ ├── scene.cpp │ │ ├── scene.h │ │ ├── window.cpp │ │ └── window.h │ ├── Periodic_2_triangulation_2 │ │ ├── CMakeLists.txt │ │ ├── Periodic_2_Delaunay_triangulation_2.cpp │ │ ├── Periodic_2_triangulation_2.qrc │ │ ├── Periodic_2_triangulation_2.ui │ │ ├── TriangulationCircumcircle.h │ │ ├── TriangulationConflictZone.h │ │ ├── TriangulationMovingPoint.h │ │ ├── TriangulationPointInputAndConflictZone.h │ │ ├── TriangulationRemoveVertex.h │ │ ├── about_Periodic_2_triangulation_2.html │ │ ├── icons │ │ │ ├── circumcenter.pdf │ │ │ ├── circumcenter.png │ │ │ ├── conflict_zone.pdf │ │ │ ├── conflict_zone.png │ │ │ ├── constrained_triangulation.pdf │ │ │ ├── constrained_triangulation.png │ │ │ ├── constrained_triangulation_show_constraints.pdf │ │ │ ├── constrained_triangulation_show_constraints.png │ │ │ ├── constrained_triangulation_show_in_domain.pdf │ │ │ ├── constrained_triangulation_show_in_domain.png │ │ │ ├── fit-page-32.png │ │ │ ├── inputPoint.png │ │ │ ├── moving_point.pdf │ │ │ ├── moving_point.png │ │ │ ├── triangulation.pdf │ │ │ └── triangulation.png │ │ └── include │ │ │ └── CGAL │ │ │ └── Qt │ │ │ ├── PeriodicTriangulationGraphicsItem.h │ │ │ └── PeriodicVoronoiGraphicsItem.h │ ├── Periodic_3_triangulation_3 │ │ ├── CMakeLists.txt │ │ ├── MainWindow.h │ │ ├── MainWindow.ui │ │ ├── Periodic_3_triangulation_3.qch │ │ ├── Periodic_3_triangulation_3.qhcp │ │ ├── Periodic_3_triangulation_3.qhp │ │ ├── Periodic_3_triangulation_3.qrc │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── Scene_utils.h │ │ ├── Viewer.cpp │ │ ├── Viewer.h │ │ ├── documentation │ │ │ ├── images │ │ │ │ └── mainwindow.png │ │ │ ├── index.html │ │ │ ├── introduction.html │ │ │ └── menu.html │ │ ├── icons │ │ │ ├── ball.png │ │ │ ├── camera.png │ │ │ ├── clipping.png │ │ │ ├── clippingOff.png │ │ │ ├── conflict.png │ │ │ ├── cover1.png │ │ │ ├── cover27.png │ │ │ ├── fileOpen.png │ │ │ ├── init0.png │ │ │ ├── init1.png │ │ │ ├── initGrid.png │ │ │ ├── initRand.png │ │ │ ├── initRandPlanar.png │ │ │ ├── inputPointBall.png │ │ │ ├── inputPointRandom.png │ │ │ ├── license.txt │ │ │ ├── locate.png │ │ │ ├── multiple.png │ │ │ ├── multipleOff.png │ │ │ ├── pause.png │ │ │ ├── planar.png │ │ │ ├── play.png │ │ │ ├── twoColorClipping.png │ │ │ ├── wireframe.png │ │ │ └── wireframeOff.png │ │ ├── periodic_3_triangulation_3_demo.cpp │ │ └── resources │ │ │ ├── about.html │ │ │ └── about_CGAL.html │ ├── Periodic_4_hyperbolic_triangulation_2 │ │ ├── CMakeLists.txt │ │ ├── Main_resources.qrc │ │ ├── P4HDT2.cpp │ │ ├── P4HDT2.ui │ │ ├── icons │ │ │ ├── CGAL.qrc │ │ │ ├── Voronoi_diagram_2.png │ │ │ ├── about_CGAL.html │ │ │ ├── about_P4HD_Triangulation_2.html │ │ │ ├── bgd.png │ │ │ ├── cgal_logo.xpm │ │ │ ├── circumcenter.png │ │ │ ├── conflict_zone.png │ │ │ ├── fileNew.png │ │ │ ├── fileOpen.png │ │ │ ├── fileSave.png │ │ │ ├── fit-page-32.png │ │ │ ├── inputPoint.png │ │ │ ├── octagon.png │ │ │ ├── play.png │ │ │ └── triangulation.png │ │ └── include │ │ │ └── internal │ │ │ ├── Qt │ │ │ ├── HyperbolicPainterOstream.h │ │ │ ├── TriangulationCircumcircle.h │ │ │ ├── TriangulationConflictZone.h │ │ │ ├── TriangulationGraphicsItem.h │ │ │ ├── TriangulationPointInput.h │ │ │ └── VoronoiGraphicsItem.h │ │ │ └── hyperbolic_free_motion_animation.h │ ├── Periodic_Lloyd_3 │ │ ├── CMakeLists.txt │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── MainWindow.ui │ │ ├── Periodic_Lloyd_3.cpp │ │ ├── Periodic_Lloyd_3.qch │ │ ├── Periodic_Lloyd_3.qhcp │ │ ├── Periodic_Lloyd_3.qhp │ │ ├── Periodic_Lloyd_3.qrc │ │ ├── Scene.h │ │ ├── Viewer.cpp │ │ ├── Viewer.h │ │ ├── about_CGAL.html │ │ ├── about_Periodic_Lloyd_3.html │ │ ├── documentation │ │ │ ├── images │ │ │ │ └── mainwindow.png │ │ │ ├── index.html │ │ │ ├── introduction.html │ │ │ └── menu.html │ │ ├── icons │ │ │ ├── cp8.png │ │ │ ├── fileNew.png │ │ │ ├── fileOpen.png │ │ │ ├── fileSave.png │ │ │ ├── pause.png │ │ │ ├── planar.png │ │ │ ├── play.png │ │ │ └── step.png │ │ └── typedefs.h │ ├── Polygon │ │ ├── CMakeLists.txt │ │ ├── Polygon_2.cpp │ │ ├── Polygon_2.qrc │ │ ├── Polygon_2.ui │ │ ├── about_Polygon_2.html │ │ ├── unweighted_polygon.poly │ │ └── weighted_polygon.wsl │ ├── Polyhedron │ │ ├── C2t3_type.h │ │ ├── C3t3_type.h │ │ ├── CGAL_polyhedron_demoConfig.cmake.in │ │ ├── CMakeLists.txt │ │ ├── Callback_signaler.cpp │ │ ├── Callback_signaler.h │ │ ├── Classification.cpp │ │ ├── Color_map.h │ │ ├── Color_ramp.cpp │ │ ├── Color_ramp.h │ │ ├── Details.ui │ │ ├── Edge_container.cpp │ │ ├── FileLoaderDialog.ui │ │ ├── File_loader_dialog.h │ │ ├── Image_type.h │ │ ├── Image_type_fwd.h │ │ ├── Kernel_type.h │ │ ├── LightingDialog.ui │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── MainWindow.ui │ │ ├── MainWindow_config.h │ │ ├── Mainpage.md │ │ ├── Mesh_3.cpp │ │ ├── Messages_interface.h │ │ ├── Nef_type.h │ │ ├── Nef_type_fwd.h │ │ ├── One_ring_iterators.h │ │ ├── Plugins │ │ │ ├── AABB_tree │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Cut_plugin.cpp │ │ │ │ ├── Do_trees_intersect_plugin.cpp │ │ │ │ ├── Scene_movable_sm_item.cpp │ │ │ │ └── Scene_movable_sm_item.h │ │ │ ├── Camera_position │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Camera_positions_list.cpp │ │ │ │ ├── Camera_positions_list.h │ │ │ │ ├── Camera_positions_list.ui │ │ │ │ └── Camera_positions_plugin.cpp │ │ │ ├── Classification │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Classification_advanced_widget.ui │ │ │ │ ├── Classification_plugin.cpp │ │ │ │ ├── Classification_widget.ui │ │ │ │ ├── Cluster_classification.cpp │ │ │ │ ├── Cluster_classification.h │ │ │ │ ├── Item_classification_base.h │ │ │ │ ├── Point_set_item_classification.cpp │ │ │ │ ├── Point_set_item_classification.h │ │ │ │ ├── Surface_mesh_item_classification.cpp │ │ │ │ └── Surface_mesh_item_classification.h │ │ │ ├── Convex_decomposition │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Nef_plugin.cpp │ │ │ ├── Convex_hull │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Convex_hull_plugin.cpp │ │ │ │ └── Kernel_plugin.cpp │ │ │ ├── Display │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Display_property.ui │ │ │ │ └── Display_property_plugin.cpp │ │ │ ├── IO │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Function_dialog.ui │ │ │ │ ├── GOCAD_io_plugin.cpp │ │ │ │ ├── Implicit_function_io_plugin.cpp │ │ │ │ ├── LAS_io_plugin.cpp │ │ │ │ ├── Nef_io_plugin.cpp │ │ │ │ ├── OFF_io_plugin.cpp │ │ │ │ ├── OFF_to_nef_io_plugin.cpp │ │ │ │ ├── PLY_io_plugin.cpp │ │ │ │ ├── Polylines_io_plugin.cpp │ │ │ │ ├── STL_io_plugin.cpp │ │ │ │ ├── Surf_io_plugin.cpp │ │ │ │ ├── VTK_io_plugin.cpp │ │ │ │ └── XYZ_io_plugin.cpp │ │ │ ├── Mesh_2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Mesh_2_plugin.cpp │ │ │ │ └── mesh_2_dialog.ui │ │ │ ├── Mesh_3 │ │ │ │ ├── C3t3_io_plugin.cpp │ │ │ │ ├── C3t3_rib_exporter_plugin.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Facet_extra_criterion.h │ │ │ │ ├── Image_res_dialog.ui │ │ │ │ ├── Io_image_plugin.cpp │ │ │ │ ├── Io_implicit_function_plugin.cpp │ │ │ │ ├── Local_optimizers_dialog.ui │ │ │ │ ├── Mesh_3_plugin.cpp │ │ │ │ ├── Mesh_3_plugin_cgal_code.cpp │ │ │ │ ├── Mesh_3_plugin_cgal_code.h │ │ │ │ ├── Mesh_function.h │ │ │ │ ├── Meshing_dialog.ui │ │ │ │ ├── Meshing_thread.cpp │ │ │ │ ├── Meshing_thread.h │ │ │ │ ├── Optimization_plugin.cpp │ │ │ │ ├── Optimization_plugin_cgal_code.cpp │ │ │ │ ├── Optimizer_thread.cpp │ │ │ │ ├── Optimizer_thread.h │ │ │ │ ├── Raw_image_dialog.cpp │ │ │ │ ├── Raw_image_dialog.h │ │ │ │ ├── Rib_dialog.ui │ │ │ │ ├── Smoother_dialog.ui │ │ │ │ ├── Volume_plane.h │ │ │ │ ├── Volume_plane_interface.h │ │ │ │ ├── Volume_plane_intersection.cpp │ │ │ │ ├── Volume_plane_intersection.h │ │ │ │ ├── Volume_plane_thread.h │ │ │ │ ├── config_mesh_3.h │ │ │ │ ├── raw_image.ui │ │ │ │ ├── split_polylines.cpp │ │ │ │ └── split_polylines.h │ │ │ ├── Operations_on_polyhedra │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Clip_polyhedron_plugin.cpp │ │ │ │ ├── Clip_polyhedron_plugin.ui │ │ │ │ ├── PartitionDialog.ui │ │ │ │ ├── Partition_graph_plugin.cpp │ │ │ │ └── Point_set_from_vertices_plugin.cpp │ │ │ ├── PCA │ │ │ │ ├── Affine_transform_plugin.cpp │ │ │ │ ├── Basic_generator_plugin.cpp │ │ │ │ ├── Basic_generator_widget.ui │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Clipping_box_plugin.cpp │ │ │ │ ├── Clipping_box_widget.ui │ │ │ │ ├── Create_bbox_mesh_plugin.cpp │ │ │ │ ├── Edit_box_plugin.cpp │ │ │ │ ├── MeshOnGrid_dialog.ui │ │ │ │ ├── Pca_plugin.cpp │ │ │ │ ├── Scene_edit_box_item.cpp │ │ │ │ ├── Scene_edit_box_item.h │ │ │ │ ├── Scene_edit_box_item_config.h │ │ │ │ ├── Scene_facegraph_transform_item.cpp │ │ │ │ ├── Scene_facegraph_transform_item.h │ │ │ │ └── Transformation_widget.ui │ │ │ ├── PMP │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Corefinement_plugin.cpp │ │ │ │ ├── Degenerated_faces_plugin.cpp │ │ │ │ ├── Detect_sharp_edges_plugin.cpp │ │ │ │ ├── Distance_plugin.cpp │ │ │ │ ├── Engrave_dock_widget.ui │ │ │ │ ├── Engrave_text_plugin.cpp │ │ │ │ ├── Extrude_plugin.cpp │ │ │ │ ├── Fairing_plugin.cpp │ │ │ │ ├── Fairing_widget.ui │ │ │ │ ├── Hole_filling_plugin.cpp │ │ │ │ ├── Hole_filling_polyline_plugin.cpp │ │ │ │ ├── Hole_filling_widget.ui │ │ │ │ ├── Inside_out_plugin.cpp │ │ │ │ ├── Isotropic_remeshing_dialog.ui │ │ │ │ ├── Isotropic_remeshing_plugin.cpp │ │ │ │ ├── Jet_fitting_plugin.cpp │ │ │ │ ├── Join_and_split_polyhedra_plugin.cpp │ │ │ │ ├── Mean_curvature_flow_skeleton_plugin.cpp │ │ │ │ ├── Mean_curvature_flow_skeleton_plugin.ui │ │ │ │ ├── Orient_soup_plugin.cpp │ │ │ │ ├── Point_inside_polyhedron_plugin.cpp │ │ │ │ ├── Point_inside_polyhedron_widget.ui │ │ │ │ ├── Polyhedron_slicer_plugin.cpp │ │ │ │ ├── Polyhedron_slicer_widget.ui │ │ │ │ ├── Polyhedron_stitching_plugin.cpp │ │ │ │ ├── Random_perturbation_dialog.ui │ │ │ │ ├── Random_perturbation_plugin.cpp │ │ │ │ ├── Repair_polyhedron_plugin.cpp │ │ │ │ ├── Scene_facegraph_item_k_ring_selection.cpp │ │ │ │ ├── Scene_facegraph_item_k_ring_selection.h │ │ │ │ ├── Scene_facegraph_item_k_ring_selection_config.h │ │ │ │ ├── Scene_mcf_item.cpp │ │ │ │ ├── Scene_mcf_item.h │ │ │ │ ├── Selection_plugin.cpp │ │ │ │ ├── Selection_widget.ui │ │ │ │ ├── Self_intersection_plugin.cpp │ │ │ │ ├── Surface_intersection_plugin.cpp │ │ │ │ └── Triangulate_facets_plugin.cpp │ │ │ ├── Point_set │ │ │ │ ├── Alpha_shape_plugin.cpp │ │ │ │ ├── Alpha_shape_widget.ui │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Features_detection_plugin.cpp │ │ │ │ ├── Features_detection_plugin.ui │ │ │ │ ├── Merge_point_sets_plugin.cpp │ │ │ │ ├── Point_set_average_spacing_plugin.cpp │ │ │ │ ├── Point_set_bilateral_smoothing_plugin.cpp │ │ │ │ ├── Point_set_bilateral_smoothing_plugin.ui │ │ │ │ ├── Point_set_interference_plugin.cpp │ │ │ │ ├── Point_set_normal_estimation_plugin.cpp │ │ │ │ ├── Point_set_normal_estimation_plugin.ui │ │ │ │ ├── Point_set_outliers_removal_plugin.cpp │ │ │ │ ├── Point_set_outliers_removal_plugin.ui │ │ │ │ ├── Point_set_selection_plugin.cpp │ │ │ │ ├── Point_set_selection_widget.ui │ │ │ │ ├── Point_set_shape_detection_plugin.cpp │ │ │ │ ├── Point_set_shape_detection_plugin.ui │ │ │ │ ├── Point_set_simplification_plugin.cpp │ │ │ │ ├── Point_set_simplification_plugin.ui │ │ │ │ ├── Point_set_smoothing_plugin.cpp │ │ │ │ ├── Point_set_to_mesh_distance_plugin.cpp │ │ │ │ ├── Point_set_to_mesh_distance_widget.ui │ │ │ │ ├── Point_set_upsampling_plugin.cpp │ │ │ │ ├── Point_set_upsampling_plugin.ui │ │ │ │ ├── Point_set_wlop_plugin.cpp │ │ │ │ ├── Point_set_wlop_plugin.ui │ │ │ │ ├── Surface_reconstruction_plugin.cpp │ │ │ │ ├── Surface_reconstruction_plugin.ui │ │ │ │ └── Surface_reconstruction_plugin_impl.cpp │ │ │ ├── Subdivision_methods │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Subdivision_methods_plugin.cpp │ │ │ ├── Surface_mesh │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Color_cheat_sheet.cpp │ │ │ │ ├── Color_cheat_sheet.h │ │ │ │ ├── Mesh_plane_detection_dialog.ui │ │ │ │ ├── Mesh_plane_detection_plugin.cpp │ │ │ │ ├── Mesh_segmentation_plugin.cpp │ │ │ │ ├── Mesh_segmentation_widget.ui │ │ │ │ ├── Mesh_simplification_dialog.ui │ │ │ │ ├── Mesh_simplification_plugin.cpp │ │ │ │ ├── OTE_dialog.ui │ │ │ │ ├── Offset_meshing_plugin.cpp │ │ │ │ ├── Parameterization_plugin.cpp │ │ │ │ ├── Parameterization_widget.ui │ │ │ │ ├── Remeshing_dialog.ui │ │ │ │ ├── Scene_polyhedron_shortest_path_item.cpp │ │ │ │ ├── Scene_polyhedron_shortest_path_item.h │ │ │ │ ├── Shortest_path_plugin.cpp │ │ │ │ ├── Shortest_path_widget.ui │ │ │ │ ├── Surface_mesh_approximation_dockwidget.ui │ │ │ │ ├── Surface_mesh_approximation_plugin.cpp │ │ │ │ ├── UVProjector.h │ │ │ │ ├── VSA_wrapper.cpp │ │ │ │ └── VSA_wrapper.h │ │ │ └── Surface_mesh_deformation │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Deform_mesh.ui │ │ │ │ ├── Edit_polyhedron_plugin.cpp │ │ │ │ ├── Scene_edit_polyhedron_item.cpp │ │ │ │ ├── Scene_edit_polyhedron_item.h │ │ │ │ └── Scene_edit_polyhedron_item_config.h │ │ ├── Point_container.cpp │ │ ├── Point_dialog_config.h │ │ ├── Polyhedron_3.cpp │ │ ├── Polyhedron_3.qrc │ │ ├── Polyhedron_demo.cpp │ │ ├── Polyhedron_demo.h │ │ ├── Polyhedron_demo_config.h │ │ ├── Polyhedron_demo_detect_sharp_edges.h │ │ ├── Polyhedron_demo_plugin_helper.cpp │ │ ├── Preferences.ui │ │ ├── Primitive_container.cpp │ │ ├── SMesh_type.h │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── Scene_basic_objects_config.h │ │ ├── Scene_c3t3_item.cpp │ │ ├── Scene_c3t3_item.h │ │ ├── Scene_c3t3_item_config.h │ │ ├── Scene_config.h │ │ ├── Scene_facegraph_transform_item_config.h │ │ ├── Scene_find_items.h │ │ ├── Scene_group_item.cpp │ │ ├── Scene_image_item.cpp │ │ ├── Scene_image_item.h │ │ ├── Scene_image_item_config.h │ │ ├── Scene_implicit_function_item.cpp │ │ ├── Scene_implicit_function_item.h │ │ ├── Scene_implicit_function_item_config.h │ │ ├── Scene_item.cpp │ │ ├── Scene_item_rendering_helper.cpp │ │ ├── Scene_nef_polyhedron_item.cpp │ │ ├── Scene_nef_polyhedron_item.h │ │ ├── Scene_nef_polyhedron_item_config.h │ │ ├── Scene_plane_item.cpp │ │ ├── Scene_plane_item.h │ │ ├── Scene_points_with_normal_item.cpp │ │ ├── Scene_points_with_normal_item.h │ │ ├── Scene_points_with_normal_item_config.h │ │ ├── Scene_polygon_soup_item.cpp │ │ ├── Scene_polygon_soup_item.h │ │ ├── Scene_polygon_soup_item_config.h │ │ ├── Scene_polyhedron_item_decorator.cpp │ │ ├── Scene_polyhedron_item_decorator.h │ │ ├── Scene_polyhedron_item_decorator_config.h │ │ ├── Scene_polyhedron_selection_item.cpp │ │ ├── Scene_polyhedron_selection_item.h │ │ ├── Scene_polyhedron_selection_item_config.h │ │ ├── Scene_polyhedron_shortest_path_item_config.h │ │ ├── Scene_polylines_item.cpp │ │ ├── Scene_polylines_item.h │ │ ├── Scene_polylines_item_config.h │ │ ├── Scene_spheres_item.cpp │ │ ├── Scene_spheres_item.h │ │ ├── Scene_surface_mesh_item.cpp │ │ ├── Scene_surface_mesh_item.h │ │ ├── Scene_surface_mesh_item_config.h │ │ ├── Scene_textured_polyhedron_item.cpp │ │ ├── Scene_textured_surface_mesh_item.cpp │ │ ├── Scene_textured_surface_mesh_item.h │ │ ├── Selection_visualizer.h │ │ ├── Show_point_dialog.cpp │ │ ├── Show_point_dialog.h │ │ ├── Show_point_dialog.ui │ │ ├── Statistics_on_item_dialog.ui │ │ ├── TextRenderer.cpp │ │ ├── Three.cpp │ │ ├── Travel_isolated_components.h │ │ ├── Triangle_container.cpp │ │ ├── UseCGAL_polyhedron_demo.cmake │ │ ├── Viewer.cpp │ │ ├── Viewer.h │ │ ├── concurrent_mesher_config.cfg │ │ ├── config.h │ │ ├── create_sphere.h │ │ ├── implicit_functions │ │ │ ├── CMakeLists.txt │ │ │ ├── Implicit_function_interface.h │ │ │ ├── Klein_implicit_function.cpp │ │ │ ├── Sphere_implicit_function.cpp │ │ │ └── Tanglecube_implicit_function.cpp │ │ ├── include │ │ │ ├── CGAL │ │ │ │ ├── Dualizer.h │ │ │ │ ├── Facet_with_id_pmap.h │ │ │ │ ├── IO │ │ │ │ │ └── read_surf_trianglemesh.h │ │ │ │ ├── Make_bar.h │ │ │ │ ├── Make_quad_soup.h │ │ │ │ ├── Make_triangle_soup.h │ │ │ │ ├── Polyhedron_kernel.h │ │ │ │ ├── Textured_polyhedron_builder.h │ │ │ │ ├── Triangulation_file_input.h │ │ │ │ ├── gocad_io.h │ │ │ │ ├── statistics_helpers.h │ │ │ │ ├── textured_polyhedron.h │ │ │ │ └── translate.h │ │ │ ├── Point_set_3.h │ │ │ ├── Progress_bar_callback.h │ │ │ ├── QMultipleInputDialog.h │ │ │ ├── Qt_progress_bar_callback.h │ │ │ ├── UI_point_3.h │ │ │ ├── id_printing.h │ │ │ └── run_with_qprogressdialog.h │ │ ├── javascript │ │ │ ├── lib.js │ │ │ └── tests │ │ │ │ ├── bad │ │ │ │ ├── catch_and_retrow_cpp_exception.js │ │ │ │ ├── include_missing_file.js │ │ │ │ ├── syntax_error.js │ │ │ │ ├── throw_error.js │ │ │ │ ├── uncaught_cpp_exception.js │ │ │ │ └── uncaught_cpp_exception_in_an_include.js │ │ │ │ ├── good │ │ │ │ ├── catch_missing_file.js │ │ │ │ ├── caught_cpp_exception_in_an_include.js │ │ │ │ ├── cpp_exception.js │ │ │ │ ├── cpp_exception_from_a_function.js │ │ │ │ └── cpp_exception_in_an_include.js │ │ │ │ └── run-tests.sh │ │ ├── polyhedron_demo_macros.cmake │ │ ├── properties.h │ │ ├── resources │ │ │ ├── about.html │ │ │ ├── add_facet1.png │ │ │ ├── add_facet2.png │ │ │ ├── back.png │ │ │ ├── boolean-diff.png │ │ │ ├── boolean-intersection.png │ │ │ ├── boolean-union.png │ │ │ ├── bot.png │ │ │ ├── cgal_logo.xpm │ │ │ ├── check-off.png │ │ │ ├── check-off.svg │ │ │ ├── check-on.png │ │ │ ├── check.svg │ │ │ ├── compatibility_shaders │ │ │ │ ├── heat_intensity_shader.frag │ │ │ │ ├── heat_intensity_shader.vert │ │ │ │ ├── shader_c3t3.frag │ │ │ │ ├── shader_c3t3.vert │ │ │ │ ├── shader_c3t3_edges.frag │ │ │ │ ├── shader_c3t3_edges.vert │ │ │ │ ├── shader_c3t3_spheres.vert │ │ │ │ ├── shader_instanced.vert │ │ │ │ ├── shader_no_light_no_selection.frag │ │ │ │ ├── shader_old_flat.frag │ │ │ │ ├── shader_plane_two_faces.frag │ │ │ │ ├── shader_spheres.vert │ │ │ │ ├── shader_with_light.frag │ │ │ │ ├── shader_with_light.vert │ │ │ │ ├── shader_with_texture.frag │ │ │ │ ├── shader_with_texture.vert │ │ │ │ ├── shader_with_textured_edges.frag │ │ │ │ ├── shader_with_textured_edges.vert │ │ │ │ ├── shader_without_light.frag │ │ │ │ └── shader_without_light.vert │ │ │ ├── convex-hull.png │ │ │ ├── down.png │ │ │ ├── editcopy.png │ │ │ ├── euler_center.png │ │ │ ├── euler_facet.png │ │ │ ├── euler_vertex.png │ │ │ ├── front.png │ │ │ ├── general_collapse.png │ │ │ ├── grid.png │ │ │ ├── heat_intensity_shader.frag │ │ │ ├── heat_intensity_shader.vert │ │ │ ├── help_button.png │ │ │ ├── hexahedron.png │ │ │ ├── icosphere.png │ │ │ ├── kernel.png │ │ │ ├── left.png │ │ │ ├── left_arrow.png │ │ │ ├── minus.png │ │ │ ├── no_interpolation_shader.frag │ │ │ ├── no_interpolation_shader.geom │ │ │ ├── no_interpolation_shader.vert │ │ │ ├── plus.png │ │ │ ├── prism-open.png │ │ │ ├── prism.png │ │ │ ├── pss_box.png │ │ │ ├── pss_diff.png │ │ │ ├── pss_freeform.png │ │ │ ├── pss_inter.png │ │ │ ├── pss_new.png │ │ │ ├── pss_rectangle.png │ │ │ ├── pss_region.png │ │ │ ├── pss_union.png │ │ │ ├── pyramid-open.png │ │ │ ├── pyramid.png │ │ │ ├── right.png │ │ │ ├── right_arrow.png │ │ │ ├── rotate_around_cursor.png │ │ │ ├── shader_c3t3.frag │ │ │ ├── shader_c3t3.vert │ │ │ ├── shader_c3t3_edges.frag │ │ │ ├── shader_c3t3_edges.vert │ │ │ ├── shader_c3t3_spheres.vert │ │ │ ├── shader_flat.frag │ │ │ ├── shader_flat.geom │ │ │ ├── shader_flat.vert │ │ │ ├── shader_instanced.vert │ │ │ ├── shader_no_light_no_selection.frag │ │ │ ├── shader_old_flat.frag │ │ │ ├── shader_plane_two_faces.frag │ │ │ ├── shader_spheres.vert │ │ │ ├── shader_with_light.frag │ │ │ ├── shader_with_light.vert │ │ │ ├── shader_with_texture.frag │ │ │ ├── shader_with_texture.vert │ │ │ ├── shader_with_textured_edges.frag │ │ │ ├── shader_with_textured_edges.vert │ │ │ ├── shader_without_light.frag │ │ │ ├── shader_without_light.vert │ │ │ ├── simplification.png │ │ │ ├── solid_wireframe_shader.frag │ │ │ ├── solid_wireframe_shader.geom │ │ │ ├── solid_wireframe_shader.vert │ │ │ ├── tetrahedron.png │ │ │ ├── top.png │ │ │ └── up.png │ │ ├── texture.cpp │ │ ├── texture.h │ │ └── triangulate_primitive.h │ ├── Polyhedron_IO │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── geomview_demo.cpp │ │ └── viewpoint2off.cpp │ ├── Polyline_simplification_2 │ │ ├── CMakeLists.txt │ │ ├── Polyline_simplification_2.cpp │ │ ├── Polyline_simplification_2.qrc │ │ ├── Polyline_simplification_2.ui │ │ ├── about_Polyline_simplification_2.html │ │ ├── icons │ │ │ ├── triangulation.pdf │ │ │ └── triangulation.png │ │ └── include │ │ │ └── CGAL │ │ │ └── Qt │ │ │ ├── Polyline_simplification_2_graphics_item.h │ │ │ └── TriangulationArrangementGraphicsItem.h │ ├── Principal_component_analysis │ │ ├── CMakeLists.txt │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── MainWindow.ui │ │ ├── PCA_demo.cpp │ │ ├── PCA_demo.qrc │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── Viewer.cpp │ │ ├── Viewer.h │ │ ├── resources │ │ │ ├── about.html │ │ │ └── cgal_logo.xpm │ │ └── types.h │ ├── Segment_Delaunay_graph_2 │ │ ├── CMakeLists.txt │ │ ├── Segment_voronoi_2.cpp │ │ ├── Segment_voronoi_2.qrc │ │ ├── Segment_voronoi_2.ui │ │ ├── about_Segment_voronoi_2.html │ │ ├── icons │ │ │ ├── circumcenter.pdf │ │ │ ├── circumcenter.png │ │ │ ├── conflict_zone.pdf │ │ │ ├── conflict_zone.png │ │ │ ├── constrained_triangulation.pdf │ │ │ ├── constrained_triangulation.png │ │ │ ├── constrained_triangulation_show_constraints.pdf │ │ │ ├── constrained_triangulation_show_constraints.png │ │ │ ├── constrained_triangulation_show_in_domain.pdf │ │ │ ├── constrained_triangulation_show_in_domain.png │ │ │ ├── moving_point.pdf │ │ │ ├── moving_point.png │ │ │ ├── triangulation.pdf │ │ │ └── triangulation.png │ │ ├── include │ │ │ └── CGAL │ │ │ │ └── Constraints_loader.h │ │ └── svd-typedefs.h │ ├── Segment_Delaunay_graph_Linf_2 │ │ ├── CMakeLists.txt │ │ ├── Segment_voronoi_2.qrc │ │ ├── Segment_voronoi_2.ui │ │ ├── Segment_voronoi_linf_2.cpp │ │ ├── about_Segment_voronoi_2.html │ │ ├── icons │ │ │ ├── circumcenter.pdf │ │ │ ├── circumcenter.png │ │ │ ├── conflict_zone.pdf │ │ │ ├── conflict_zone.png │ │ │ ├── constrained_triangulation.pdf │ │ │ ├── constrained_triangulation.png │ │ │ ├── constrained_triangulation_show_constraints.pdf │ │ │ ├── constrained_triangulation_show_constraints.png │ │ │ ├── constrained_triangulation_show_in_domain.pdf │ │ │ ├── constrained_triangulation_show_in_domain.png │ │ │ ├── moving_point.pdf │ │ │ ├── moving_point.png │ │ │ ├── triangulation.pdf │ │ │ └── triangulation.png │ │ ├── include │ │ │ └── CGAL │ │ │ │ └── Constraints_loader.h │ │ └── svd-typedefs.h │ ├── Snap_rounding_2 │ │ ├── CMakeLists.txt │ │ ├── Snap_rounding_2.cpp │ │ ├── Snap_rounding_2.qrc │ │ ├── Snap_rounding_2.ui │ │ ├── about_Snap_rounding_2.html │ │ └── icons │ │ │ ├── grid.png │ │ │ ├── snapped.png │ │ │ └── unsnapped.png │ ├── Spatial_searching_2 │ │ ├── CMakeLists.txt │ │ ├── NearestNeighbor.h │ │ ├── Spatial_searching_2.cpp │ │ ├── Spatial_searching_2.qrc │ │ ├── Spatial_searching_2.ui │ │ └── about_Spatial_searching_2.html │ ├── Stream_lines_2 │ │ ├── CMakeLists.txt │ │ ├── Stream_lines_2.cpp │ │ ├── Stream_lines_2.qrc │ │ ├── Stream_lines_2.ui │ │ └── about_Stream_lines_2.html │ ├── Surface_mesh_deformation │ │ ├── CMakeLists.txt │ │ └── deform_mesh_for_botsch08_format.cpp │ ├── Surface_mesher │ │ ├── CMakeLists.txt │ │ ├── File_XT.h │ │ ├── Raw_image_dialog.cpp │ │ ├── Raw_image_dialog.h │ │ ├── Surface_mesher.cpp │ │ ├── binary_image.h │ │ ├── colorlisteditor.cpp │ │ ├── colorlisteditor.h │ │ ├── get_polyhedral_surface.h │ │ ├── icons │ │ │ ├── bbox-red.png │ │ │ ├── bbox-red.svg │ │ │ ├── bbox.png │ │ │ ├── bbox.svg │ │ │ ├── cgal_logo.xpm │ │ │ ├── fileopen.png │ │ │ ├── filesave.png │ │ │ ├── flip.png │ │ │ ├── flip.svg │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── resize.png │ │ │ ├── resize.svg │ │ │ ├── surface.png │ │ │ ├── surface.svg │ │ │ ├── twosides.png │ │ │ └── twosides.svg │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── polyhedral_surface.cpp │ │ ├── polyhedral_surface.h │ │ ├── surface.h │ │ ├── surface_mesher.qrc │ │ ├── ui │ │ │ ├── mainwindow.ui │ │ │ ├── optionsdialog.ui │ │ │ ├── raw_image.ui │ │ │ └── values_list.ui │ │ ├── values_list.cpp │ │ ├── values_list.h │ │ ├── values_list.qrc │ │ ├── viewer.cpp │ │ ├── viewer.h │ │ ├── volume.cpp │ │ └── volume.h │ ├── Three │ │ ├── CMakeLists.txt │ │ └── Example_plugin │ │ │ ├── Basic_dialog.ui │ │ │ ├── Basic_dock_widget.ui │ │ │ ├── Basic_item_plugin.cpp │ │ │ ├── Basic_plugin.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Dock_widget_plugin.cpp │ │ │ ├── Example_plugin.cpp │ │ │ └── Group_item_plugin.cpp │ ├── Triangulation_2 │ │ ├── CMakeLists.txt │ │ ├── Constrained_Delaunay_triangulation_2.cpp │ │ ├── Constrained_Delaunay_triangulation_2.qrc │ │ ├── Constrained_Delaunay_triangulation_2.ui │ │ ├── DelaunayMeshInsertSeeds.h │ │ ├── Delaunay_triangulation_2.cpp │ │ ├── Delaunay_triangulation_2.qrc │ │ ├── Delaunay_triangulation_2.ui │ │ ├── RegularTriangulationRemoveVertex.h │ │ ├── Regular_triangulation_2.cpp │ │ ├── Regular_triangulation_2.qrc │ │ ├── Regular_triangulation_2.ui │ │ ├── TriangulationCircumcircle.h │ │ ├── TriangulationConflictZone.h │ │ ├── TriangulationMovingPoint.h │ │ ├── TriangulationPointInputAndConflictZone.h │ │ ├── TriangulationRemoveVertex.h │ │ ├── about_Constrained_Delaunay_triangulation_2.html │ │ ├── about_Delaunay_triangulation_2.html │ │ ├── about_Regular_triangulation_2.html │ │ ├── icons │ │ │ ├── circumcenter.pdf │ │ │ ├── circumcenter.png │ │ │ ├── conflict_zone.pdf │ │ │ ├── conflict_zone.png │ │ │ ├── constrained_triangulation.pdf │ │ │ ├── constrained_triangulation.png │ │ │ ├── constrained_triangulation_show_constraints.pdf │ │ │ ├── constrained_triangulation_show_constraints.png │ │ │ ├── constrained_triangulation_show_in_domain.pdf │ │ │ ├── constrained_triangulation_show_in_domain.png │ │ │ ├── moving_point.pdf │ │ │ ├── moving_point.png │ │ │ ├── triangulation.pdf │ │ │ └── triangulation.png │ │ └── include │ │ │ └── CGAL │ │ │ └── Lipschitz_sizing_field_criteria_2.h │ ├── Triangulation_3 │ │ ├── CMakeLists.txt │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── MainWindow.ui │ │ ├── PreferenceDlg.cpp │ │ ├── PreferenceDlg.h │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── T3_demo.cpp │ │ ├── T3_demo.qrc │ │ ├── Viewer.cpp │ │ ├── Viewer.h │ │ ├── documentation │ │ │ ├── about.html │ │ │ └── about_CGAL.html │ │ ├── icons │ │ │ ├── about_CGAL.html │ │ │ ├── cgal_logo.xpm │ │ │ ├── clear.jpeg │ │ │ ├── coordinates.jpeg │ │ │ ├── empty_sphere.jpeg │ │ │ ├── fileOpen.png │ │ │ ├── fileSave.png │ │ │ ├── flat.png │ │ │ ├── grid.jpeg │ │ │ ├── insert.jpeg │ │ │ ├── insert_point.jpg │ │ │ ├── move_1.jpeg │ │ │ ├── nearest_nb.png │ │ │ ├── normal_view.jpeg │ │ │ ├── pause.jpeg │ │ │ ├── play.jpeg │ │ │ ├── pointRandom.png │ │ │ ├── preferences.jpeg │ │ │ ├── quit.jpeg │ │ │ ├── select_hand.jpeg │ │ │ ├── show_delaunay.jpeg │ │ │ ├── show_facet.jpeg │ │ │ ├── show_point.jpeg │ │ │ ├── show_voronoi.jpeg │ │ │ ├── stereo.png │ │ │ └── stop.jpeg │ │ └── typedefs.h │ ├── Triangulation_3_Geomview_demos │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── Triangulation_3_color_demo.cpp │ │ ├── Triangulation_3_demo.cpp │ │ ├── Triangulation_3_remove_demo.cpp │ │ └── Triangulation_3_voronoi_demo.cpp │ ├── 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 ├── examples │ ├── AABB_tree │ │ ├── AABB_cached_bbox_example.cpp │ │ ├── AABB_custom_example.cpp │ │ ├── AABB_custom_indexed_triangle_set_array_example.cpp │ │ ├── AABB_custom_indexed_triangle_set_example.cpp │ │ ├── AABB_custom_triangle_soup_example.cpp │ │ ├── AABB_face_graph_triangle_example.cpp │ │ ├── AABB_halfedge_graph_edge_example.cpp │ │ ├── AABB_insertion_example.cpp │ │ ├── AABB_polyhedron_edge_example.cpp │ │ ├── AABB_polyhedron_facet_distance_example.cpp │ │ ├── AABB_polyhedron_facet_intersection_example.cpp │ │ ├── AABB_ray_shooting_example.cpp │ │ ├── AABB_segment_3_example.cpp │ │ ├── AABB_triangle_3_example.cpp │ │ └── CMakeLists.txt │ ├── Advancing_front_surface_reconstruction │ │ ├── CMakeLists.txt │ │ ├── boundaries.cpp │ │ ├── reconstruction_class.cpp │ │ ├── reconstruction_fct.cpp │ │ ├── reconstruction_structured.cpp │ │ └── reconstruction_surface_mesh.cpp │ ├── Algebraic_foundations │ │ ├── CMakeLists.txt │ │ ├── algebraic_structure_dispatch.cpp │ │ ├── fraction_traits.cpp │ │ ├── implicit_interoperable_dispatch.cpp │ │ ├── integralize.cpp │ │ └── interoperable.cpp │ ├── Algebraic_kernel_d │ │ ├── CMakeLists.txt │ │ ├── Compare_1.cpp │ │ ├── Construct_algebraic_real_1.cpp │ │ ├── Isolate_1.cpp │ │ ├── Sign_at_1.cpp │ │ └── Solve_1.cpp │ ├── Alpha_shapes_2 │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── ex_alpha_projection_traits.cpp │ │ ├── ex_alpha_shapes_2.cpp │ │ ├── ex_periodic_alpha_shapes_2.cpp │ │ └── ex_weighted_alpha_shapes_2.cpp │ ├── Alpha_shapes_3 │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── ex_alpha_shapes_3.cpp │ │ ├── ex_alpha_shapes_exact_alpha.cpp │ │ ├── ex_alpha_shapes_with_fast_location_3.cpp │ │ ├── ex_fixed_weighted_alpha_shapes_3.cpp │ │ ├── ex_periodic_alpha_shapes_3.cpp │ │ ├── ex_weighted_alpha_shapes_3.cpp │ │ ├── ex_weighted_periodic_alpha_shapes_3.cpp │ │ └── visible_alpha_shape_facets_to_OFF.cpp │ ├── Apollonius_graph_2 │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── ag2_exact_traits.cpp │ │ ├── ag2_exact_traits_sqrt.cpp │ │ ├── ag2_filtered_traits_no_hidden.cpp │ │ └── ag2_hierarchy.cpp │ ├── Approximate_min_ellipsoid_d │ │ ├── CMakeLists.txt │ │ ├── ellipsoid.cpp │ │ └── ellipsoid_for_maple.cpp │ ├── Arrangement_on_surface_2 │ │ ├── Bezier.dat │ │ ├── Bezier_curves.cpp │ │ ├── Bezier_polycurve.dat │ │ ├── CMakeLists.txt │ │ ├── Europe.dat │ │ ├── aggregated_insertion.cpp │ │ ├── algebraic_curves.cpp │ │ ├── algebraic_segments.cpp │ │ ├── arr_inexact_construction_segments.h │ │ ├── arr_print.h │ │ ├── batched_point_location.cpp │ │ ├── bgl_dual_adapter.cpp │ │ ├── bgl_primal_adapter.cpp │ │ ├── bounded_planar_vertical_decomposition.cpp │ │ ├── circles.cpp │ │ ├── circular_arcs.cpp │ │ ├── circular_line_arcs.cpp │ │ ├── coll_points.dat │ │ ├── conic_multiplicities.cpp │ │ ├── conics.cpp │ │ ├── consolidated_curve_data.cpp │ │ ├── curve_history.cpp │ │ ├── dcel_extension.cpp │ │ ├── dcel_extension_io.cpp │ │ ├── dual_lines.cpp │ │ ├── dual_with_data.cpp │ │ ├── edge_insertion.cpp │ │ ├── edge_manipulation.cpp │ │ ├── edge_manipulation_curve_history.cpp │ │ ├── face_extension.cpp │ │ ├── face_extension_overlay.cpp │ │ ├── fan_grids.dat │ │ ├── generic_curve_data.cpp │ │ ├── global_insertion.cpp │ │ ├── global_removal.cpp │ │ ├── incremental_insertion.cpp │ │ ├── io.cpp │ │ ├── io_curve_history.cpp │ │ ├── io_unbounded.cpp │ │ ├── isolated_vertices.cpp │ │ ├── observer.cpp │ │ ├── overlay.cpp │ │ ├── overlay_unbounded.cpp │ │ ├── point_location_example.cpp │ │ ├── point_location_utils.h │ │ ├── points.dat │ │ ├── polycurve_bezier.cpp │ │ ├── polycurve_circular_arc.cpp │ │ ├── polycurve_conic.cpp │ │ ├── polycurve_geodesic.cpp │ │ ├── polycurves_basic.cpp │ │ ├── polylines.cpp │ │ ├── predefined_kernel.cpp │ │ ├── predefined_kernel_non_intersecting.cpp │ │ ├── rational_functions.cpp │ │ ├── rational_functions_rational_coefficients.cpp │ │ ├── special_edge_insertion.cpp │ │ ├── spherical_insert.cpp │ │ ├── tracing_counting.cpp │ │ ├── unb_planar_vertical_decomposition.cpp │ │ ├── unbounded_non_intersecting.cpp │ │ ├── unbounded_rational_functions.cpp │ │ └── vertical_ray_shooting.cpp │ ├── BGL_LCC │ │ ├── CMakeLists.txt │ │ ├── copy_lcc.cpp │ │ ├── cube.off │ │ ├── distance_lcc.cmd │ │ ├── distance_lcc.cpp │ │ ├── incident_vertices_lcc.cmd │ │ ├── incident_vertices_lcc.cpp │ │ ├── kruskal_lcc.cpp │ │ ├── normals_lcc.cmd │ │ ├── normals_lcc.cpp │ │ ├── range_lcc.cmd │ │ ├── range_lcc.cpp │ │ ├── transform_iterator_lcc.cmd │ │ └── transform_iterator_lcc.cpp │ ├── BGL_OpenMesh │ │ ├── CMakeLists.txt │ │ ├── TriMesh.cpp │ │ └── in.off │ ├── BGL_arrangement_2 │ │ ├── CMakeLists.txt │ │ ├── arr_print.h │ │ ├── arr_rational_nt.h │ │ ├── arrangement_dual.cpp │ │ └── primal.cpp │ ├── BGL_polyhedron_3 │ │ ├── CMakeLists.txt │ │ ├── copy_polyhedron.cpp │ │ ├── cube.off │ │ ├── distance.cmd │ │ ├── distance.cpp │ │ ├── incident_vertices.cmd │ │ ├── incident_vertices.cpp │ │ ├── kruskal.cpp │ │ ├── kruskal_with_stored_id.cpp │ │ ├── normals.cmd │ │ ├── normals.cpp │ │ ├── polyhedron_partition.cpp │ │ ├── range.cmd │ │ ├── range.cpp │ │ ├── transform_iterator.cmd │ │ └── transform_iterator.cpp │ ├── BGL_surface_mesh │ │ ├── CMakeLists.txt │ │ ├── connected_components.cpp │ │ ├── gwdwg.cpp │ │ ├── prim.cmd │ │ ├── prim.cpp │ │ ├── seam_mesh.cpp │ │ ├── surface_mesh_dual.cpp │ │ ├── surface_mesh_partition.cpp │ │ └── write_inp.cpp │ ├── BGL_triangulation_2 │ │ ├── CMakeLists.txt │ │ ├── dijkstra.cpp │ │ ├── dijkstra_with_internal_properties.cpp │ │ ├── emst.cpp │ │ ├── emst_cdt_plus_hierarchy.cpp │ │ ├── emst_regular.cpp │ │ └── face_graph.cpp │ ├── Barycentric_coordinates_2 │ │ ├── CMakeLists.txt │ │ ├── Discrete_harmonic_coordinates_example.cpp │ │ ├── Mean_value_coordinates_example.cpp │ │ ├── Segment_coordinates_example.cpp │ │ ├── Terrain_height_modeling.cpp │ │ ├── Triangle_coordinates_example.cpp │ │ ├── Triangle_coordinates_speed_test.cpp │ │ └── Wachspress_coordinates_example.cpp │ ├── Boolean_set_operations_2 │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── amer_a.bps │ │ ├── amer_b.bps │ │ ├── amer_c.bps │ │ ├── amer_d.bps │ │ ├── amer_e.bps │ │ ├── amer_f.bps │ │ ├── amer_g.bps │ │ ├── amer_h.bps │ │ ├── amer_i.bps │ │ ├── amer_j.bps │ │ ├── amer_k.bps │ │ ├── bezier_traits_adapter.cpp │ │ ├── bezier_traits_adapter2.cpp │ │ ├── bso_rational_nt.h │ │ ├── char_g.bps │ │ ├── char_g.dat │ │ ├── char_m.bps │ │ ├── char_m.dat │ │ ├── circle_segment.cpp │ │ ├── conic_traits_adapter.cpp │ │ ├── connect_polygon.cpp │ │ ├── do_intersect.cpp │ │ ├── dxf_union.cpp │ │ ├── input_0.bps │ │ ├── input_1.bps │ │ ├── pgn_holes.dat │ │ ├── print_utils.h │ │ ├── sequence.cpp │ │ ├── set_union.cpp │ │ ├── simple_join_intersect.cpp │ │ ├── symmetric_difference.cpp │ │ └── test.dxf │ ├── Box_intersection_d │ │ ├── CMakeLists.txt │ │ ├── box_grid.cpp │ │ ├── custom_box_grid.cpp │ │ ├── minimal.cpp │ │ ├── minimal_self.cpp │ │ ├── proximity_custom_box_traits.cpp │ │ ├── triangle_self_intersect.cpp │ │ └── triangle_self_intersect_pointers.cpp │ ├── CGAL_ipelets │ │ ├── CMakeLists.txt │ │ └── test_grabbers.cpp │ ├── CGALimageIO │ │ ├── CMakeLists.txt │ │ ├── convert_raw_image_to_inr.cpp │ │ └── test_imageio.cpp │ ├── CMakeLists.txt │ ├── Circular_kernel_2 │ │ ├── CMakeLists.txt │ │ ├── functor_has_on_2.cpp │ │ └── intersecting_arcs.cpp │ ├── Circular_kernel_3 │ │ ├── CMakeLists.txt │ │ ├── functor_compare_theta_3.cpp │ │ ├── functor_has_on_3.cpp │ │ └── intersecting_spheres.cpp │ ├── Circulator │ │ ├── CMakeLists.txt │ │ ├── circulator_prog1.cpp │ │ ├── circulator_prog2.cpp │ │ └── circulator_prog3.cpp │ ├── Classification │ │ ├── CMakeLists.txt │ │ ├── example_classification.cpp │ │ ├── example_cluster_classification.cpp │ │ ├── example_ethz_random_forest.cpp │ │ ├── example_feature.cpp │ │ ├── example_generation_and_training.cpp │ │ ├── example_mesh_classification.cpp │ │ ├── example_opencv_random_forest.cpp │ │ └── example_tensorflow_neural_network.cpp │ ├── Combinatorial_map │ │ ├── CMakeLists.txt │ │ ├── map_3_dynamic_onmerge.cpp │ │ ├── map_3_foreach.cpp │ │ ├── map_3_marks.cpp │ │ ├── map_3_operations.cpp │ │ ├── map_3_simple_example.cpp │ │ ├── map_3_with_colored_facets.cpp │ │ └── map_4_simple_example.cpp │ ├── Cone_spanners_2 │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── compute_cones.cmd │ │ ├── compute_cones.cpp │ │ ├── dijkstra_theta.cmd │ │ ├── dijkstra_theta.cpp │ │ ├── theta_io.cmd │ │ └── theta_io.cpp │ ├── Convex_decomposition_3 │ │ ├── CMakeLists.txt │ │ ├── list_of_convex_parts.cin │ │ └── list_of_convex_parts.cpp │ ├── Convex_hull_2 │ │ ├── CMakeLists.txt │ │ ├── array_convex_hull_2.cpp │ │ ├── ch_from_cin_to_cout.cin │ │ ├── ch_from_cin_to_cout.cpp │ │ ├── ch_graham_anderson.cin │ │ ├── ch_graham_anderson.cpp │ │ ├── ch_timing.cpp │ │ ├── convex_hull_yz.cin │ │ ├── convex_hull_yz.cpp │ │ ├── files │ │ │ └── CD500 │ │ ├── include │ │ │ └── CGAL │ │ │ │ ├── ch_timing_2.h │ │ │ │ └── ch_timing_2_impl.h │ │ ├── iostream_convex_hull_2.cin │ │ ├── iostream_convex_hull_2.cpp │ │ └── vector_convex_hull_2.cpp │ ├── Convex_hull_3 │ │ ├── CMakeLists.txt │ │ ├── dynamic_hull_3.cpp │ │ ├── dynamic_hull_LCC_3.cpp │ │ ├── dynamic_hull_OM_3.cpp │ │ ├── dynamic_hull_SM_3.cpp │ │ ├── extreme_indices_3.cpp │ │ ├── extreme_points_3_sm.cpp │ │ ├── halfspace_intersection_3.cpp │ │ ├── lloyd_algorithm.cpp │ │ ├── quickhull_3.cpp │ │ ├── quickhull_OM_3.cpp │ │ └── quickhull_any_dim_3.cpp │ ├── Core │ │ ├── CMakeLists.txt │ │ └── delaunay.cpp │ ├── Envelope_2 │ │ ├── CMakeLists.txt │ │ ├── ch_points.dat │ │ ├── convex_hull_2.cpp │ │ ├── envelope_circles.cpp │ │ └── envelope_segments.cpp │ ├── Envelope_3 │ │ ├── CMakeLists.txt │ │ ├── envelope_planes.cpp │ │ ├── envelope_spheres.cpp │ │ ├── envelope_triangles.cpp │ │ └── spheres.dat │ ├── Filtered_kernel │ │ ├── CMakeLists.txt │ │ └── Filtered_predicate.cpp │ ├── Generalized_map │ │ ├── CMakeLists.txt │ │ ├── comparison_gmap_cmap.cpp │ │ ├── gmap_2_moebius.cpp │ │ ├── gmap_3_dynamic_onmerge.cpp │ │ ├── gmap_3_marks.cpp │ │ ├── gmap_3_operations.cpp │ │ ├── gmap_3_simple_example.cpp │ │ ├── gmap_3_with_colored_facets.cpp │ │ └── gmap_4_simple_example.cpp │ ├── Generator │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── ball_d.cpp │ │ ├── combination_enumerator.cpp │ │ ├── cube_d.cpp │ │ ├── grid_d.cpp │ │ ├── name_pairs.cpp │ │ ├── random_convex_hull_2.cpp │ │ ├── random_convex_set.cpp │ │ ├── random_degenerate_point_set.cpp │ │ ├── random_grid.cpp │ │ ├── random_points_in_tetrahedral_mesh_3.cpp │ │ ├── random_points_in_triangles_2.cpp │ │ ├── random_points_in_triangles_3.cpp │ │ ├── random_points_on_tetrahedral_mesh_3.cpp │ │ ├── random_points_on_triangle_mesh_2.cpp │ │ ├── random_points_on_triangle_mesh_3.cpp │ │ ├── random_points_tetrahedron_and_triangle_3.cpp │ │ ├── random_points_triangle_2.cpp │ │ ├── random_polygon.cpp │ │ ├── random_polygon2.cpp │ │ ├── random_segments1.cpp │ │ ├── random_segments2.cpp │ │ └── sphere_d.cpp │ ├── HalfedgeDS │ │ ├── CMakeLists.txt │ │ ├── hds_prog_color.cpp │ │ ├── hds_prog_compact.cpp │ │ ├── hds_prog_compact2.cpp │ │ ├── hds_prog_default.cpp │ │ ├── hds_prog_edge_iterator.cpp │ │ ├── hds_prog_graph.cpp │ │ ├── hds_prog_graph2.cpp │ │ ├── hds_prog_halfedge_iterator.cpp │ │ └── hds_prog_vector.cpp │ ├── Heat_method_3 │ │ ├── CMakeLists.txt │ │ ├── heat_method.cpp │ │ ├── heat_method_polyhedron.cpp │ │ ├── heat_method_surface_mesh.cpp │ │ └── heat_method_surface_mesh_direct.cpp │ ├── Hyperbolic_triangulation_2 │ │ ├── CMakeLists.txt │ │ ├── ht2_example.cpp │ │ └── ht2_example_color.cpp │ ├── Inscribed_areas │ │ ├── CMakeLists.txt │ │ ├── extremal_polygon_2_area.cpp │ │ ├── extremal_polygon_2_perimeter.cpp │ │ └── largest_empty_rectangle.cpp │ ├── Interpolation │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── interpolation_2.cpp │ │ ├── interpolation_vertex_with_info_2.cpp │ │ ├── linear_interpolation_2.cpp │ │ ├── linear_interpolation_of_vector_3.cpp │ │ ├── nn_coordinates_2.cpp │ │ ├── nn_coordinates_3.cpp │ │ ├── nn_coordinates_with_info_2.cpp │ │ ├── rn_coordinates_2.cpp │ │ ├── sibson_interpolation_2.cpp │ │ ├── sibson_interpolation_rn_2.cpp │ │ ├── sibson_interpolation_rn_vertex_with_info_2.cpp │ │ ├── sibson_interpolation_vertex_with_info_2.cpp │ │ └── surface_neighbor_coordinates_3.cpp │ ├── Interval_skip_list │ │ ├── CMakeLists.txt │ │ ├── intervals.cpp │ │ ├── isl_terrain.cpp │ │ └── terrain.pts │ ├── Jet_fitting_3 │ │ ├── CMakeLists.txt │ │ ├── Mesh_estimation.cpp │ │ ├── PolyhedralSurf.h │ │ ├── PolyhedralSurf_operations.h │ │ ├── PolyhedralSurf_rings.h │ │ ├── README │ │ └── Single_estimation.cpp │ ├── Kernel_23 │ │ ├── CMakeLists.txt │ │ ├── MyConstruct_bbox_2.h │ │ ├── MyConstruct_coord_iterator.h │ │ ├── MyConstruct_point_2.h │ │ ├── MyKernel.cpp │ │ ├── MyKernel.h │ │ ├── MyPointC2.h │ │ ├── MyPointC2_iostream.h │ │ ├── MySegmentC2.h │ │ ├── cartesian_converter.cpp │ │ ├── exact.cpp │ │ ├── intersection_get.cpp │ │ ├── intersection_visitor.cpp │ │ ├── intersections.cpp │ │ ├── points_and_segment.cpp │ │ └── surprising.cpp │ ├── Linear_cell_complex │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── basic_viewer.h │ │ ├── draw_linear_cell_complex.cpp │ │ ├── gmap_linear_cell_complex_3.cpp │ │ ├── linear_cell_complex_3.cpp │ │ ├── linear_cell_complex_3_attributes_management.cpp │ │ ├── linear_cell_complex_3_operations.cpp │ │ ├── linear_cell_complex_3_with_colored_vertices.cpp │ │ ├── linear_cell_complex_3_with_mypoint.cpp │ │ ├── linear_cell_complex_4.cpp │ │ ├── plane_graph_to_lcc_2.cpp │ │ ├── voronoi_2.cpp │ │ └── voronoi_3.cpp │ ├── Matrix_search │ │ ├── CMakeLists.txt │ │ └── sorted_matrix_search.cpp │ ├── Mesh_2 │ │ ├── CMakeLists.txt │ │ ├── conforming.cpp │ │ ├── mesh_class.cpp │ │ ├── mesh_global.cpp │ │ ├── mesh_optimization.cpp │ │ └── mesh_with_seeds.cpp │ ├── Mesh_3 │ │ ├── CMakeLists.txt │ │ ├── debug.h │ │ ├── implicit_functions.cpp │ │ ├── implicit_functions.h │ │ ├── mesh_3D_gray_image.cpp │ │ ├── mesh_3D_gray_image_multiple_values.cmd │ │ ├── mesh_3D_gray_image_multiple_values.cpp │ │ ├── mesh_3D_gray_vtk_image.cpp │ │ ├── mesh_3D_image.cpp │ │ ├── mesh_3D_image_variable_size.cpp │ │ ├── mesh_3D_image_with_custom_initialization.cpp │ │ ├── mesh_3D_image_with_features.cpp │ │ ├── mesh_cubes_intersection.cpp │ │ ├── mesh_cubes_intersection_with_features.cpp │ │ ├── mesh_hybrid_mesh_domain.cpp │ │ ├── mesh_implicit_domains.cpp │ │ ├── mesh_implicit_domains_2.cpp │ │ ├── mesh_implicit_ellipsoid.cpp │ │ ├── mesh_implicit_sphere.cpp │ │ ├── mesh_implicit_sphere_variable_size.cpp │ │ ├── mesh_optimization_example.cpp │ │ ├── mesh_optimization_lloyd_example.cpp │ │ ├── mesh_polyhedral_complex.cpp │ │ ├── mesh_polyhedral_complex_sm.cpp │ │ ├── mesh_polyhedral_domain.cpp │ │ ├── mesh_polyhedral_domain_sm.cpp │ │ ├── mesh_polyhedral_domain_with_features.cpp │ │ ├── mesh_polyhedral_domain_with_features_sm.cpp │ │ ├── mesh_polyhedral_domain_with_lipschitz_sizing.cpp │ │ ├── mesh_polyhedral_domain_with_surface_inside.cpp │ │ ├── mesh_two_implicit_spheres_with_balls.cpp │ │ ├── random_labeled_image.h │ │ ├── read_polylines.h │ │ ├── remesh_polyhedral_surface.cpp │ │ └── remesh_polyhedral_surface_sm.cpp │ ├── Min_annulus_d │ │ ├── CMakeLists.txt │ │ ├── min_annulus_d.cpp │ │ └── min_annulus_d_fast_exact.cpp │ ├── Min_circle_2 │ │ ├── CMakeLists.txt │ │ └── min_circle_2.cpp │ ├── Min_ellipse_2 │ │ ├── CMakeLists.txt │ │ └── min_ellipse_2.cpp │ ├── Min_quadrilateral_2 │ │ ├── CMakeLists.txt │ │ ├── minimum_enclosing_parallelogram_2.cpp │ │ ├── minimum_enclosing_rectangle_2.cpp │ │ └── minimum_enclosing_strip_2.cpp │ ├── Min_sphere_d │ │ ├── CMakeLists.txt │ │ └── min_sphere_d.cpp │ ├── Min_sphere_of_spheres_d │ │ ├── CMakeLists.txt │ │ ├── benchmark.cpp │ │ ├── min_sphere_of_spheres_d_2.cpp │ │ ├── min_sphere_of_spheres_d_3.cpp │ │ └── min_sphere_of_spheres_d_d.cpp │ ├── Minkowski_sum_2 │ │ ├── CMakeLists.txt │ │ ├── approx_inset.cpp │ │ ├── approx_offset.cpp │ │ ├── arr_conics.h │ │ ├── bops_circular.h │ │ ├── bops_linear.h │ │ ├── exact_inset.cpp │ │ ├── exact_offset.cpp │ │ ├── holes.dat │ │ ├── ms_rational_nt.h │ │ ├── pgn_print.h │ │ ├── print_utils.h │ │ ├── rooms_star.dat │ │ ├── spiked.dat │ │ ├── sum_by_decomposition.cpp │ │ ├── sum_of_holes.cpp │ │ ├── sum_triangle_square.cpp │ │ ├── sum_with_holes.cpp │ │ └── tight.dat │ ├── Minkowski_sum_3 │ │ ├── CMakeLists.txt │ │ ├── cube.nef3 │ │ ├── cube_offset.cin │ │ ├── cube_offset.cpp │ │ ├── glide.cin │ │ └── glide.cpp │ ├── Modular_arithmetic │ │ ├── CMakeLists.txt │ │ └── modular_filter.cpp │ ├── Nef_2 │ │ ├── CMakeLists.txt │ │ ├── nef_2_construction.cpp │ │ ├── nef_2_intersection.cpp │ │ └── nef_2_polylines.cpp │ ├── Nef_3 │ │ ├── CMakeLists.txt │ │ ├── comparison.cpp │ │ ├── complex_construction.cin │ │ ├── complex_construction.cpp │ │ ├── exploration_SM.cin │ │ ├── exploration_SM.cpp │ │ ├── extended_kernel.cin │ │ ├── extended_kernel.cpp │ │ ├── handling_double_coordinates.cin │ │ ├── handling_double_coordinates.cpp │ │ ├── interface_polyhedron.cin │ │ ├── interface_polyhedron.cpp │ │ ├── nefIO.cin │ │ ├── nefIO.cpp │ │ ├── nef_3_construction.cpp │ │ ├── nef_3_point_location.cin │ │ ├── nef_3_point_location.cpp │ │ ├── nef_3_simple.cpp │ │ ├── nef_3_to_surface_mesh.cpp │ │ ├── offIO.cin │ │ ├── offIO.cpp │ │ ├── point_set_operations.cpp │ │ ├── polyline_construction.cpp │ │ ├── set_operations.cpp │ │ ├── shell_exploration.cin │ │ ├── shell_exploration.cpp │ │ ├── surface_mesh_to_nef.cpp │ │ ├── topological_operations.cin │ │ ├── topological_operations.cpp │ │ └── transformation.cpp │ ├── Nef_S2 │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CGAL │ │ │ │ └── Nef_S2 │ │ │ │ └── create_random_Nef_S2.h │ │ ├── nef_s2_construction.cpp │ │ ├── nef_s2_exploration.cpp │ │ ├── nef_s2_point_location.cpp │ │ └── nef_s2_simple.cpp │ ├── Optimal_transportation_reconstruction_2 │ │ ├── CMakeLists.txt │ │ ├── otr2_indexed_output_example.cpp │ │ ├── otr2_list_output_example.cpp │ │ ├── otr2_mass_example.cpp │ │ ├── otr2_simplest_example.cpp │ │ └── otr2_simplest_example_with_tolerance.cpp │ ├── Partition_2 │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── approx_convex_partition_2.cpp │ │ ├── greene_approx_convex_partition_2.cpp │ │ ├── optimal_convex_partition_2.cpp │ │ └── y_monotone_partition_2.cpp │ ├── Periodic_2_triangulation_2 │ │ ├── CMakeLists.txt │ │ ├── p2t2_adding_handles.cpp │ │ ├── p2t2_colored_vertices.cpp │ │ ├── p2t2_covering.cpp │ │ ├── p2t2_find_conflicts.cpp │ │ ├── p2t2_geometric_access.cpp │ │ ├── p2t2_hierarchy.cpp │ │ ├── p2t2_info_insert_with_pair_iterator_2.cpp │ │ ├── p2t2_info_insert_with_transform_iterator_2.cpp │ │ ├── p2t2_info_insert_with_zip_iterator_2.cpp │ │ ├── p2t2_large_point_set.cpp │ │ └── p2t2_simple_example.cpp │ ├── Periodic_3_mesh_3 │ │ ├── CMakeLists.txt │ │ ├── mesh_implicit_multi_domain.cpp │ │ ├── mesh_implicit_shape.cpp │ │ ├── mesh_implicit_shape_with_features.cpp │ │ ├── mesh_implicit_shape_with_optimizers.cpp │ │ └── mesh_implicit_shape_with_subdomains.cpp │ ├── Periodic_3_triangulation_3 │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── colored_vertices.cpp │ │ ├── covering.cpp │ │ ├── find_conflicts.cpp │ │ ├── geometric_access.cpp │ │ ├── large_point_set.cpp │ │ ├── p3rt3_hidden_points.cpp │ │ ├── p3rt3_insert_only.cpp │ │ ├── p3rt3_insert_point_with_bad_weight.cpp │ │ ├── p3rt3_insert_remove.cpp │ │ ├── periodic_adding_handles.cpp │ │ ├── simple_example.cpp │ │ └── simple_regular_example.cpp │ ├── Periodic_4_hyperbolic_triangulation_2 │ │ ├── CMakeLists.txt │ │ └── p4ht2_example_insertion.cpp │ ├── Point_set_2 │ │ ├── CMakeLists.txt │ │ ├── nearest_neighbor.cpp │ │ └── range_search.cpp │ ├── Point_set_3 │ │ ├── CMakeLists.txt │ │ ├── point_set.cpp │ │ ├── point_set_advanced.cpp │ │ ├── point_set_algo.cpp │ │ ├── point_set_property.cpp │ │ ├── point_set_read_ply.cpp │ │ └── point_set_read_xyz.cpp │ ├── Point_set_processing_3 │ │ ├── CMakeLists.txt │ │ ├── average_spacing_example.cpp │ │ ├── bilateral_smooth_point_set_example.cpp │ │ ├── callback_example.cpp │ │ ├── edge_aware_upsample_point_set_example.cpp │ │ ├── edges_example.cpp │ │ ├── grid_simplification_example.cpp │ │ ├── grid_simplify_indices.cpp │ │ ├── hierarchy_simplification_example.cpp │ │ ├── jet_smoothing_example.cpp │ │ ├── normal_estimation.cmd │ │ ├── normal_estimation.cpp │ │ ├── normals_example.cpp │ │ ├── property_map.cpp │ │ ├── random_simplification_example.cpp │ │ ├── read_las_example.cpp │ │ ├── read_ply_points_with_colors_example.cpp │ │ ├── read_write_xyz_point_set_example.cpp │ │ ├── remove_outliers_example.cpp │ │ ├── scale_estimation_2d_example.cpp │ │ ├── scale_estimation_example.cpp │ │ ├── structuring_example.cpp │ │ ├── wlop_simplify_and_regularize_point_set_example.cpp │ │ └── write_ply_points_example.cpp │ ├── Point_set_shape_detection_3 │ │ ├── CMakeLists.txt │ │ ├── efficient_RANSAC_custom_shape.cpp │ │ ├── efficient_RANSAC_custom_shape.h │ │ ├── efficient_RANSAC_parameters.cpp │ │ ├── efficient_RANSAC_point_access.cpp │ │ ├── plane_regularization.cpp │ │ ├── shape_detection_basic.cmd │ │ ├── shape_detection_basic.cpp │ │ ├── shape_detection_with_callback.cmd │ │ └── shape_detection_with_callback.cpp │ ├── Poisson_surface_reconstruction_3 │ │ ├── CMakeLists.txt │ │ ├── poisson_reconstruction.cmd │ │ ├── poisson_reconstruction.cpp │ │ ├── poisson_reconstruction_example.cpp │ │ └── poisson_reconstruction_function.cpp │ ├── Polygon │ │ ├── CMakeLists.txt │ │ ├── Example.cpp │ │ ├── Polygon.cpp │ │ ├── polygon_algorithms.cpp │ │ └── projected_polygon.cpp │ ├── Polygon_mesh_processing │ │ ├── CMakeLists.txt │ │ ├── compute_normals_example.cpp │ │ ├── compute_normals_example_OM.cpp │ │ ├── compute_normals_example_Polyhedron.cpp │ │ ├── connected_components_example.cpp │ │ ├── corefinement_LCC.cpp │ │ ├── corefinement_SM.cpp │ │ ├── corefinement_consecutive_bool_op.cpp │ │ ├── corefinement_difference_remeshed.cpp │ │ ├── corefinement_mesh_union.cpp │ │ ├── corefinement_mesh_union_and_intersection.cpp │ │ ├── corefinement_mesh_union_with_attributes.cpp │ │ ├── corefinement_polyhedron_union.cpp │ │ ├── detect_features_example.cpp │ │ ├── face_filtered_graph_example.cpp │ │ ├── hausdorff_distance_remeshing_example.cpp │ │ ├── hole_filling_example.cpp │ │ ├── hole_filling_example_LCC.cpp │ │ ├── hole_filling_example_OM.cpp │ │ ├── hole_filling_example_SM.cpp │ │ ├── isotropic_remeshing_example.cpp │ │ ├── isotropic_remeshing_of_patch_example.cpp │ │ ├── manifoldness_repair_example.cpp │ │ ├── mesh_slicer_example.cpp │ │ ├── orient_polygon_soup_example.cpp │ │ ├── point_inside_example.cpp │ │ ├── point_inside_example_OM.cpp │ │ ├── random_perturbation_SM_example.cpp │ │ ├── refine_fair_example.cpp │ │ ├── repair_polygon_soup_example.cpp │ │ ├── self_intersections_example.cpp │ │ ├── stitch_borders_example.cpp │ │ ├── stitch_borders_example_OM.cpp │ │ ├── surface_mesh_intersection.cpp │ │ ├── triangulate_faces_example.cpp │ │ ├── triangulate_faces_example_OM.cpp │ │ └── triangulate_polyline_example.cpp │ ├── Polyhedron │ │ ├── CMakeLists.txt │ │ ├── draw_polyhedron.cpp │ │ ├── polyhedron_prog_color.cpp │ │ ├── polyhedron_prog_cube.cpp │ │ ├── polyhedron_prog_cut_cube.cpp │ │ ├── polyhedron_prog_incr_builder.cpp │ │ ├── polyhedron_prog_normals.cpp │ │ ├── polyhedron_prog_off.cpp │ │ ├── polyhedron_prog_planes.cpp │ │ ├── polyhedron_prog_simple.cpp │ │ ├── polyhedron_prog_subdiv.cpp │ │ ├── polyhedron_prog_subdiv_with_boundary.cpp │ │ ├── polyhedron_prog_tetra.cpp │ │ ├── polyhedron_prog_traits.cpp │ │ ├── polyhedron_prog_vector.cpp │ │ ├── polyhedron_prog_vertex_color.cpp │ │ ├── polyhedron_prog_vertex_normal.cpp │ │ └── polyhedron_self_intersection.cpp │ ├── Polyhedron_IO │ │ ├── CMakeLists.txt │ │ ├── iv2off.cin │ │ ├── iv2off.cpp │ │ ├── off2iv.cin │ │ ├── off2iv.cpp │ │ ├── off2off.cin │ │ ├── off2off.cpp │ │ ├── off2stl.cin │ │ ├── off2stl.cpp │ │ ├── off2vrml.cin │ │ ├── off2vrml.cpp │ │ ├── off2wav.cin │ │ ├── off2wav.cpp │ │ ├── off_bbox.cin │ │ ├── off_bbox.cpp │ │ ├── off_glue.cin │ │ ├── off_glue.cpp │ │ ├── off_transform.cin │ │ ├── off_transform.cpp │ │ ├── polyhedron2vrml.cin │ │ ├── polyhedron2vrml.cpp │ │ ├── polyhedron_copy.cin │ │ ├── polyhedron_copy.cpp │ │ ├── terr_trian.cin │ │ ├── terr_trian.cpp │ │ └── triangulation_print_OFF.h │ ├── Polyline_simplification_2 │ │ ├── CMakeLists.txt │ │ ├── points_and_vertices.cin │ │ ├── points_and_vertices.cpp │ │ ├── simplify.cin │ │ ├── simplify.cpp │ │ ├── simplify_polygon.cin │ │ ├── simplify_polygon.cpp │ │ ├── simplify_polyline.cin │ │ ├── simplify_polyline.cpp │ │ ├── simplify_terrain.cin │ │ └── simplify_terrain.cpp │ ├── Polynomial │ │ ├── CMakeLists.txt │ │ ├── coefficient_access.cpp │ │ ├── construction.cpp │ │ ├── degree.cpp │ │ ├── gcd_up_to_constant_factor.cpp │ │ ├── subresultants.cpp │ │ ├── substitute.cpp │ │ └── swap_move.cpp │ ├── Polytope_distance_d │ │ ├── CMakeLists.txt │ │ ├── all_furthest_neighbors_2.cpp │ │ ├── polytope_distance_d.cpp │ │ ├── polytope_distance_d_fast_exact.cpp │ │ └── width_simplex.cpp │ ├── Principal_component_analysis │ │ ├── CMakeLists.txt │ │ ├── barycenter.cpp │ │ ├── bounding_box.cpp │ │ ├── centroid.cpp │ │ ├── linear_least_squares_fitting_points_2.cpp │ │ └── linear_least_squares_fitting_triangles_3.cpp │ ├── Profiling_tools │ │ ├── CMakeLists.txt │ │ ├── Profile_counter.cpp │ │ ├── Profile_histogram_counter.cpp │ │ └── Profile_timer.cpp │ ├── Property_map │ │ ├── CMakeLists.txt │ │ └── dynamic_properties.cpp │ ├── QP_solver │ │ ├── CMakeLists.txt │ │ ├── convex_hull_containment.cpp │ │ ├── convex_hull_containment2.cpp │ │ ├── convex_hull_containment_benchmarks.cpp │ │ ├── cycling.cpp │ │ ├── cycling.mps │ │ ├── double_qp_solver.cin │ │ ├── double_qp_solver.data │ │ ├── first_lp.cpp │ │ ├── first_lp.mps │ │ ├── first_lp_from_iterators.cpp │ │ ├── first_lp_from_mps.cpp │ │ ├── first_nonnegative_lp.cpp │ │ ├── first_nonnegative_lp.mps │ │ ├── first_nonnegative_lp_from_iterators.cpp │ │ ├── first_nonnegative_lp_from_mps.cpp │ │ ├── first_nonnegative_qp.cpp │ │ ├── first_nonnegative_qp.mps │ │ ├── first_nonnegative_qp_from_iterators.cpp │ │ ├── first_nonnegative_qp_from_mps.cpp │ │ ├── first_qp.cpp │ │ ├── first_qp.mps │ │ ├── first_qp_basic_constraints.cpp │ │ ├── first_qp_from_iterators.cpp │ │ ├── first_qp_from_mps.cpp │ │ ├── important_variables.cpp │ │ ├── infeasibility_certificate.cpp │ │ ├── integer_qp_solver.cin │ │ ├── integer_qp_solver.data │ │ ├── invert_matrix.cpp │ │ ├── optimality_certificate.cpp │ │ ├── print_first_lp.cpp │ │ ├── print_first_nonnegative_lp.cpp │ │ ├── print_first_nonnegative_qp.cpp │ │ ├── print_first_qp.cpp │ │ ├── rational_qp_solver.cin │ │ ├── rational_qp_solver.data │ │ ├── solve_convex_hull_containment_lp.h │ │ ├── solve_convex_hull_containment_lp2.h │ │ ├── solve_convex_hull_containment_lp3.h │ │ └── unboundedness_certificate.cpp │ ├── RangeSegmentTrees │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Tree_Traits.h │ │ ├── range_tree_1.cpp │ │ ├── range_tree_2.cpp │ │ ├── range_tree_3.cpp │ │ ├── range_tree_4.cpp │ │ ├── range_tree_map_2.cpp │ │ ├── range_tree_set_2.cpp │ │ ├── segment_tree_1.cpp │ │ ├── segment_tree_2.cpp │ │ ├── segment_tree_3.cpp │ │ ├── segment_tree_4.cpp │ │ ├── segment_tree_map_2.cpp │ │ ├── segment_tree_set_2.cpp │ │ ├── segment_tree_set_3.cpp │ │ └── software_design_rgs.cpp │ ├── Rectangular_p_center_2 │ │ ├── CMakeLists.txt │ │ └── rectangular_p_center_2.cpp │ ├── Ridges_3 │ │ ├── CMakeLists.txt │ │ ├── Compute_Ridges_Umbilics.cpp │ │ ├── PolyhedralSurf.h │ │ ├── PolyhedralSurf_rings.h │ │ ├── README │ │ ├── Ridges_Umbilics_LCC.cpp │ │ ├── Ridges_Umbilics_SM.cpp │ │ ├── compute_normals.h │ │ └── skip_vcproj_auto_generation │ ├── STL_Extension │ │ ├── CMakeLists.txt │ │ ├── Default.cpp │ │ ├── Dispatch_output_iterator.cpp │ │ ├── in_place_list_prog.cpp │ │ ├── min_element_if_example.cpp │ │ ├── min_max_element_example.cpp │ │ └── unordered_map.cpp │ ├── Scale_space_reconstruction_3 │ │ ├── CMakeLists.txt │ │ ├── scale_space.cmd │ │ ├── scale_space.cpp │ │ ├── scale_space_advancing_front.cmd │ │ ├── scale_space_advancing_front.cpp │ │ ├── scale_space_incremental.cmd │ │ ├── scale_space_incremental.cpp │ │ ├── scale_space_manifold.cmd │ │ └── scale_space_manifold.cpp │ ├── Segment_Delaunay_graph_2 │ │ ├── CMakeLists.txt │ │ ├── sdg-count-sites.cpp │ │ ├── sdg-fast-sp-polygon.cpp │ │ ├── sdg-fast-sp.cpp │ │ ├── sdg-filtered-traits.cpp │ │ ├── sdg-info-set.cpp │ │ ├── sdg-red-blue-info.cpp │ │ └── sdg-voronoi-edges.cpp │ ├── Segment_Delaunay_graph_Linf_2 │ │ ├── CMakeLists.txt │ │ ├── print-sdg-linf.cpp │ │ ├── sdg-count-sites-linf.cpp │ │ ├── sdg-fast-sp-linf.cpp │ │ ├── sdg-fast-sp-polygon-linf.cpp │ │ ├── sdg-filtered-traits-linf.cpp │ │ ├── sdg-info-set-linf.cpp │ │ ├── sdg-red-blue-info-linf.cpp │ │ ├── sdg-voronoi-edges-exact-linf.cpp │ │ └── sdg-voronoi-edges-linf.cpp │ ├── Set_movable_separability_2 │ │ ├── CMakeLists.txt │ │ ├── is_pullout_direction_single_mold_trans_cast.cpp │ │ ├── polygon.dat │ │ ├── pullout_directions_single_mold_trans_cast.cpp │ │ ├── star.dat │ │ ├── top_edges_single_mold_trans_cast.cpp │ │ ├── trapezoid.dat │ │ └── triangle.dat │ ├── Skin_surface_3 │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── extract_balls_from_pdb.h │ │ ├── skin_surface_pdb_reader.cpp │ │ ├── skin_surface_retrieve_defining_weighted_points.cpp │ │ ├── skin_surface_simple.cpp │ │ ├── skin_surface_subdiv.cpp │ │ ├── skin_surface_subdiv_with_normals.cpp │ │ ├── skin_surface_writer.h │ │ ├── union_of_balls_simple.cpp │ │ └── union_of_balls_subdiv.cpp │ ├── Snap_rounding_2 │ │ ├── CMakeLists.txt │ │ ├── snap_rounding.cpp │ │ ├── snap_rounding_data.cpp │ │ └── snap_rounding_to_integer.cpp │ ├── Solver_interface │ │ ├── CMakeLists.txt │ │ ├── diagonalize_matrix.cpp │ │ ├── singular_value_decomposition.cpp │ │ └── sparse_solvers.cpp │ ├── Spatial_searching │ │ ├── CMakeLists.txt │ │ ├── Distance.h │ │ ├── Point.h │ │ ├── circular_query.cpp │ │ ├── distance_browsing.cpp │ │ ├── fuzzy_range_query.cpp │ │ ├── general_neighbor_searching.cpp │ │ ├── iso_rectangle_2_query.cpp │ │ ├── nearest_neighbor_searching.cpp │ │ ├── searching_polyhedron_vertices.cpp │ │ ├── searching_polyhedron_vertices_with_fuzzy_sphere.cpp │ │ ├── searching_sphere_orthogonally.cpp │ │ ├── searching_surface_mesh_vertices.cpp │ │ ├── searching_with_circular_query.cpp │ │ ├── searching_with_point_with_info.cpp │ │ ├── searching_with_point_with_info_inplace.cpp │ │ ├── searching_with_point_with_info_pmap.cpp │ │ ├── splitter_worst_cases.cpp │ │ ├── user_defined_point_and_distance.cpp │ │ ├── using_fair_splitting_rule.cpp │ │ └── weighted_Minkowski_distance.cpp │ ├── Spatial_sorting │ │ ├── CMakeLists.txt │ │ ├── example_delaunay_2.cpp │ │ ├── hilbert.cpp │ │ ├── hilbert_policies.cpp │ │ ├── hilbert_sort_on_sphere.cpp │ │ ├── myPoint.cpp │ │ ├── small_example_delaunay_2.cpp │ │ ├── sort_indices.cpp │ │ ├── sp_sort_using_property_map_2.cpp │ │ ├── sp_sort_using_property_map_3.cpp │ │ ├── sp_sort_using_property_map_d.cpp │ │ └── spatial_sort_on_sphere.cpp │ ├── Straight_skeleton_2 │ │ ├── CMakeLists.txt │ │ ├── Create_offset_polygons_2.cpp │ │ ├── Create_saop_from_polygon_with_holes_2.cpp │ │ ├── Create_skeleton_and_offset_polygons_2.cpp │ │ ├── Create_skeleton_and_offset_polygons_with_holes_2.cpp │ │ ├── Create_straight_skeleton_2.cpp │ │ ├── Create_straight_skeleton_from_polygon_with_holes_2.cpp │ │ ├── Low_level_API.cpp │ │ ├── Show_offset_polygon.cpp │ │ ├── Show_straight_skeleton.cpp │ │ ├── dump_to_eps.h │ │ ├── input_file_format.txt │ │ ├── print.h │ │ ├── sample_1.dat │ │ ├── sample_2.dat │ │ ├── sample_3.dat │ │ └── sample_4.dat │ ├── Stream_lines_2 │ │ ├── CMakeLists.txt │ │ ├── stl_regular_field.cpp │ │ └── stl_triangular_field.cpp │ ├── Subdivision_method_3 │ │ ├── CMakeLists.txt │ │ ├── CatmullClark_subdivision.cpp │ │ ├── Customized_subdivision.cpp │ │ ├── DooSabin_subdivision.cpp │ │ ├── Loop_subdivision.cpp │ │ └── Sqrt3_subdivision.cpp │ ├── Surface_mesh │ │ ├── CMakeLists.txt │ │ ├── draw_surface_mesh.cpp │ │ ├── sm_aabbtree.cpp │ │ ├── sm_bgl.cmd │ │ ├── sm_bgl.cpp │ │ ├── sm_circulators.cpp │ │ ├── sm_derivation.cpp │ │ ├── sm_do_intersect.cmd │ │ ├── sm_do_intersect.cpp │ │ ├── sm_iterators.cpp │ │ ├── sm_join.cpp │ │ ├── sm_kruskal.cmd │ │ ├── sm_kruskal.cpp │ │ ├── sm_memory.cpp │ │ └── sm_properties.cpp │ ├── Surface_mesh_approximation │ │ ├── CMakeLists.txt │ │ ├── vsa_approximation_2_example.cpp │ │ ├── vsa_approximation_example.cpp │ │ ├── vsa_class_interface_example.cpp │ │ ├── vsa_isotropic_metric_example.cpp │ │ ├── vsa_segmentation_example.cpp │ │ └── vsa_simple_approximation_example.cpp │ ├── Surface_mesh_deformation │ │ ├── CMakeLists.txt │ │ ├── all_roi_assign_example.cpp │ │ ├── all_roi_assign_example_Surface_mesh.cpp │ │ ├── all_roi_assign_example_custom_polyhedron.cpp │ │ ├── all_roi_assign_example_with_OpenMesh.cpp │ │ ├── custom_weight_for_edges_example.cpp │ │ ├── deform_mesh_for_botsch08_format_sre_arap.cmd │ │ ├── deform_mesh_for_botsch08_format_sre_arap.cpp │ │ ├── deform_polyhedron_with_custom_pmap_example.cpp │ │ ├── k_ring_roi_translate_rotate_Surface_mesh.cpp │ │ └── k_ring_roi_translate_rotate_example.cpp │ ├── Surface_mesh_parameterization │ │ ├── CMakeLists.txt │ │ ├── discrete_authalic.cpp │ │ ├── lscm.cpp │ │ ├── orbifold.cpp │ │ ├── seam_Polyhedron_3.cpp │ │ ├── simple_parameterization.cpp │ │ └── square_border_parameterizer.cpp │ ├── Surface_mesh_segmentation │ │ ├── CMakeLists.txt │ │ ├── extract_segmentation_into_mesh_example.cpp │ │ ├── sdf_values_example.cpp │ │ ├── segmentation_from_sdf_values_LCC_example.cpp │ │ ├── segmentation_from_sdf_values_OpenMesh_example.cpp │ │ ├── segmentation_from_sdf_values_SM_example.cpp │ │ ├── segmentation_from_sdf_values_example.cpp │ │ ├── segmentation_via_sdf_values_example.cpp │ │ └── segmentation_with_facet_ids_example.cpp │ ├── Surface_mesh_shortest_path │ │ ├── CMakeLists.txt │ │ ├── shortest_path_sequence.cpp │ │ ├── shortest_paths.cpp │ │ ├── shortest_paths_OpenMesh.cpp │ │ ├── shortest_paths_multiple_sources.cpp │ │ ├── shortest_paths_no_id.cpp │ │ └── shortest_paths_with_id.cpp │ ├── Surface_mesh_simplification │ │ ├── CMakeLists.txt │ │ ├── cube-meshed.off │ │ ├── cube.off │ │ ├── edge_collapse_OpenMesh.cpp │ │ ├── edge_collapse_all_short_edges.cmd │ │ ├── edge_collapse_all_short_edges.cpp │ │ ├── edge_collapse_bounded_normal_change.cpp │ │ ├── edge_collapse_constrain_sharp_edges.cmd │ │ ├── edge_collapse_constrain_sharp_edges.cpp │ │ ├── edge_collapse_constrained_border_polyhedron.cmd │ │ ├── edge_collapse_constrained_border_polyhedron.cpp │ │ ├── edge_collapse_constrained_border_surface_mesh.cmd │ │ ├── edge_collapse_constrained_border_surface_mesh.cpp │ │ ├── edge_collapse_enriched_polyhedron.cmd │ │ ├── edge_collapse_enriched_polyhedron.cpp │ │ ├── edge_collapse_linear_cell_complex.cmd │ │ ├── edge_collapse_linear_cell_complex.cpp │ │ ├── edge_collapse_polyhedron.cmd │ │ ├── edge_collapse_polyhedron.cpp │ │ ├── edge_collapse_surface_mesh.cmd │ │ ├── edge_collapse_surface_mesh.cpp │ │ ├── edge_collapse_visitor_surface_mesh.cmd │ │ ├── edge_collapse_visitor_surface_mesh.cpp │ │ └── mesh_with_border.off │ ├── Surface_mesh_skeletonization │ │ ├── CMakeLists.txt │ │ ├── MCF_Skeleton_LCC_example.cpp │ │ ├── MCF_Skeleton_example.cpp │ │ ├── MCF_Skeleton_sm_example.cpp │ │ ├── segmentation_example.cpp │ │ ├── simple_mcfskel_LCC_example.cpp │ │ ├── simple_mcfskel_example.cpp │ │ └── simple_mcfskel_sm_example.cpp │ ├── Surface_mesher │ │ ├── CMakeLists.txt │ │ ├── mesh_a_3d_gray_image.cpp │ │ ├── mesh_an_implicit_function.cpp │ │ └── skip_vcproj_auto_generation │ ├── Surface_sweep_2 │ │ ├── CMakeLists.txt │ │ └── plane_sweep.cpp │ ├── TDS_3 │ │ ├── CMakeLists.txt │ │ ├── linking_2d_and_3d.cpp │ │ └── tds.cpp │ ├── Triangulation │ │ ├── CMakeLists.txt │ │ ├── barycentric_subdivision.cpp │ │ ├── convex_hull.cpp │ │ ├── delaunay_triangulation.cpp │ │ ├── regular_triangulation.cpp │ │ ├── triangulation.cpp │ │ ├── triangulation1.cpp │ │ ├── triangulation2.cpp │ │ ├── triangulation_data_structure_dynamic.cpp │ │ └── triangulation_data_structure_static.cpp │ ├── Triangulation_2 │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── adding_handles.cpp │ │ ├── colored_face.cpp │ │ ├── constrained.cpp │ │ ├── constrained_hierarchy_plus.cpp │ │ ├── constrained_plus.cpp │ │ ├── copy_triangulation_2.cpp │ │ ├── draw_triangulation_2.cpp │ │ ├── hierarchy.cpp │ │ ├── info_insert_with_pair_iterator_2.cpp │ │ ├── info_insert_with_pair_iterator_regular_2.cpp │ │ ├── info_insert_with_transform_iterator_2.cpp │ │ ├── info_insert_with_zip_iterator_2.cpp │ │ ├── polygon_triangulation.cpp │ │ ├── polylines_triangulation.cpp │ │ ├── print_cropped_voronoi.cpp │ │ ├── regular.cpp │ │ ├── terrain.cpp │ │ ├── terrain_with_info.cpp │ │ ├── triangulation_prog1.cpp │ │ └── voronoi.cpp │ ├── Triangulation_3 │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── adding_handles_3.cpp │ │ ├── color.cpp │ │ ├── copy_triangulation_3.cpp │ │ ├── draw_triangulation_3.cpp │ │ ├── fast_location_3.cpp │ │ ├── find_conflicts_3.cpp │ │ ├── info_insert_with_pair_iterator.cpp │ │ ├── info_insert_with_pair_iterator_regular.cpp │ │ ├── info_insert_with_transform_iterator.cpp │ │ ├── info_insert_with_zip_iterator.cpp │ │ ├── parallel_insertion_and_removal_in_regular_3.cpp │ │ ├── parallel_insertion_in_delaunay_3.cpp │ │ ├── regular_3.cpp │ │ ├── regular_with_info_3.cpp │ │ ├── sequential_parallel.cpp │ │ ├── simple_triangulation_3.cpp │ │ └── simplex.cpp │ ├── Visibility_2 │ │ ├── CMakeLists.txt │ │ ├── general_polygon_example.cpp │ │ └── simple_polygon_visibility_2.cpp │ └── Voronoi_diagram_2 │ │ ├── CMakeLists.txt │ │ ├── vd_2_point_location.cpp │ │ └── vd_2_point_location_sdg_linf.cpp ├── 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_triangle_primitive.h │ │ ├── AABB_triangulation_3_cell_primitive.h │ │ ├── AABB_triangulation_3_triangle_primitive.h │ │ ├── Advancing_front_surface_reconstruction.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_euclidean_traits_2.h │ │ ├── Alpha_shape_euclidean_traits_3.h │ │ ├── Alpha_shape_face_base_2.h │ │ ├── Alpha_shape_vertex_base_2.h │ │ ├── Alpha_shape_vertex_base_3.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 │ │ ├── check_filter.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 │ │ ├── Discrete_harmonic_2.h │ │ ├── Generalized_barycentric_coordinates_2.h │ │ ├── Mean_value_2.h │ │ ├── Segment_coordinates_2.h │ │ ├── Triangle_coordinates_2.h │ │ ├── Wachspress_2.h │ │ └── barycentric_enum_2.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── Color.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 │ │ │ ├── Eigen.h │ │ │ ├── Eigenvalue.h │ │ │ ├── Elevation.h │ │ │ ├── Gradient_of_feature.h │ │ │ ├── Height_above.h │ │ │ ├── Height_below.h │ │ │ ├── Hsv.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 │ │ ├── TensorFlow │ │ │ └── Neural_network_classifier.h │ │ ├── classify.h │ │ ├── compressed_float.h │ │ ├── internal │ │ │ └── verbosity.h │ │ └── property_maps.h │ │ ├── Coercion_traits.h │ │ ├── Combination_enumerator.h │ │ ├── Combinatorial_map.h │ │ ├── Combinatorial_map_basic_operations.h │ │ ├── Combinatorial_map_constructors.h │ │ ├── Combinatorial_map_functors.h │ │ ├── Combinatorial_map_insertions.h │ │ ├── Combinatorial_map_iterators_base.h │ │ ├── Combinatorial_map_min_items.h │ │ ├── Combinatorial_map_operations.h │ │ ├── Combinatorial_map_save_load.h │ │ ├── Combinatorial_map_storages.h │ │ ├── Compact_container.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 │ │ ├── Constraint_hierarchy_2.h │ │ ├── Construct_theta_graph_2.h │ │ ├── Construct_yao_graph_2.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_assertions.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_with_constructions_3.h │ │ │ ├── interior_polyhedron_3.h │ │ │ └── predicates.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_projective_xy_traits_2.h │ │ ├── Convex_hull_projective_xz_traits_2.h │ │ ├── Convex_hull_projective_yz_traits_2.h │ │ ├── Convex_hull_traits_3.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 │ │ ├── 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 │ │ ├── Diagonalize_traits.h │ │ ├── Dimension.h │ │ ├── Direction_2.h │ │ ├── Direction_3.h │ │ ├── Distance_2.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_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_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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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_iterators_base.h │ │ ├── Generalized_map_operations.h │ │ ├── Generalized_map_save_load.h │ │ ├── Generalized_map_storages.h │ │ ├── Generic_map_min_items.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_handles_with_or_without_timestamps.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_face_base_2.h │ │ ├── IEEE_754_unions.h │ │ ├── IO │ │ ├── Alpha_shape_3_VRML_2_ostream.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 │ │ ├── Color_impl.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_stream.h │ │ ├── Dxf_variant_reader.h │ │ ├── Dxf_writer.h │ │ ├── Fig_stream.h │ │ ├── Fig_stream_Conic_arc_2.h │ │ ├── File_avizo.h │ │ ├── File_binary_mesh_3.h │ │ ├── File_header_OFF.h │ │ ├── File_header_OFF_impl.h │ │ ├── File_header_extended_OFF.h │ │ ├── File_header_extended_OFF_impl.h │ │ ├── File_maya.h │ │ ├── File_medit.h │ │ ├── File_poly.h │ │ ├── File_scanner_OFF.h │ │ ├── File_scanner_OFF_impl.h │ │ ├── File_tetgen.h │ │ ├── File_writer_OFF.h │ │ ├── File_writer_OFF_impl.h │ │ ├── File_writer_VRML_2.h │ │ ├── File_writer_VRML_2_impl.h │ │ ├── File_writer_inventor.h │ │ ├── File_writer_inventor_impl.h │ │ ├── File_writer_wavefront.h │ │ ├── File_writer_wavefront_impl.h │ │ ├── Generic_writer.h │ │ ├── Geomview_stream.h │ │ ├── Geomview_stream_impl.h │ │ ├── Gps_iostream.h │ │ ├── Inventor_ostream.h │ │ ├── Istream_iterator.h │ │ ├── Nef_polyhedron_2_PS_stream.h │ │ ├── Nef_polyhedron_iostream_3.h │ │ ├── OBJ_reader.h │ │ ├── OFF_reader.h │ │ ├── Ostream_iterator.h │ │ ├── PLY_reader.h │ │ ├── PLY_writer.h │ │ ├── Polyhedron_VRML_1_ostream.h │ │ ├── Polyhedron_VRML_2_ostream.h │ │ ├── Polyhedron_builder_from_STL.h │ │ ├── Polyhedron_geomview_ostream.h │ │ ├── Polyhedron_inventor_ostream.h │ │ ├── Polyhedron_iostream.h │ │ ├── Polyhedron_scan_OFF.h │ │ ├── STL_reader.h │ │ ├── STL_writer.h │ │ ├── Scanner_OFF.h │ │ ├── Tee_for_output_iterator.h │ │ ├── Triangulation_geomview_ostream_2.h │ │ ├── Triangulation_geomview_ostream_3.h │ │ ├── Triangulation_off_ostream.h │ │ ├── Triangulation_off_ostream_2.h │ │ ├── Triangulation_off_ostream_3.h │ │ ├── Triangulation_ps_stream.h │ │ ├── VRML_1_ostream.h │ │ ├── VRML_2_ostream.h │ │ ├── Verbose_ostream.h │ │ ├── Writer_OFF.h │ │ ├── alpha_shape_geomview_ostream_3.h │ │ ├── binary_file_io.h │ │ ├── facets_in_complex_2_to_triangle_mesh.h │ │ ├── facets_in_complex_3_to_triangle_mesh.h │ │ ├── generic_copy_OFF.h │ │ ├── generic_print_polyhedron.h │ │ ├── io.h │ │ ├── io_impl.h │ │ ├── io_tags.h │ │ ├── output_surface_facets_to_polyhedron.h │ │ ├── output_surface_facets_to_triangle_soup.h │ │ ├── output_to_vtu.h │ │ ├── print_OFF.h │ │ ├── print_VRML_1.h │ │ ├── print_VRML_2.h │ │ ├── print_inventor.h │ │ ├── print_wavefront.h │ │ ├── read_las_points.h │ │ ├── read_off_points.h │ │ ├── read_ply_points.h │ │ ├── read_xyz_points.h │ │ ├── reader_helpers.h │ │ ├── scan_OFF.h │ │ ├── write_las_points.h │ │ ├── write_off_points.h │ │ ├── write_ply_points.h │ │ ├── write_vtk.h │ │ ├── write_vtu.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 │ │ ├── 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_Circle_2.h │ │ ├── Bbox_2_Line_2.h │ │ ├── Bbox_2_Point_2.h │ │ ├── Bbox_2_Ray_2.h │ │ ├── Circle_2_Circle_2.h │ │ ├── Circle_2_Iso_rectangle_2.h │ │ ├── Circle_2_Line_2.h │ │ ├── Circle_2_Point_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 │ │ │ ├── Bbox_2_Circle_2_do_intersect.h │ │ │ ├── Bbox_2_Line_2_intersection_impl.h │ │ │ ├── Ray_2_Bbox_2_intersection_impl.h │ │ │ ├── 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_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_Bbox_3_do_intersect.h │ │ │ ├── Bbox_3_Iso_cuboid_3_do_intersect.h │ │ │ ├── Bbox_3_Line_3_do_intersect.h │ │ │ ├── Bbox_3_Plane_3_do_intersect.h │ │ │ ├── Bbox_3_Ray_3_do_intersect.h │ │ │ ├── Bbox_3_Segment_3_do_intersect.h │ │ │ ├── Bbox_3_Sphere_3_do_intersect.h │ │ │ ├── Bbox_3_Triangle_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Ray_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Segment_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Sphere_3_do_intersect.h │ │ │ ├── Iso_cuboid_3_Triangle_3_do_intersect.h │ │ │ ├── Tetrahedron_3_Bounded_3_do_intersect.h │ │ │ ├── Tetrahedron_3_Unbounded_3_do_intersect.h │ │ │ ├── Triangle_3_Line_3_do_intersect.h │ │ │ ├── Triangle_3_Line_3_intersection.h │ │ │ ├── Triangle_3_Plane_3_do_intersect.h │ │ │ ├── Triangle_3_Ray_3_do_intersect.h │ │ │ ├── Triangle_3_Ray_3_intersection.h │ │ │ ├── Triangle_3_Segment_3_do_intersect.h │ │ │ ├── Triangle_3_Segment_3_intersection.h │ │ │ ├── Triangle_3_Sphere_3_do_intersect.h │ │ │ ├── Triangle_3_Triangle_3_do_intersect.h │ │ │ ├── Triangle_3_Triangle_3_intersection.h │ │ │ ├── bbox_intersection_3.h │ │ │ └── intersection_3_1_impl.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 │ │ ├── interface_macros.h │ │ ├── mpl.h │ │ └── solve.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 │ │ ├── Lapack_svd.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.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_incremental_builder.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 │ │ ├── MSVC_compiler_config.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_polylines_in_polyhedra.h │ │ ├── Detect_polylines_in_polyhedra_fwd.h │ │ ├── Dump_c3t3.h │ │ ├── Facet_criteria_visitor_with_balls.h │ │ ├── Facet_on_same_surface_criterion.h │ │ ├── Has_features.h │ │ ├── Image_to_labeled_function_wrapper.h │ │ ├── Implicit_surface_mesher_visitor.h │ │ ├── Lloyd_move.h │ │ ├── Mesh_complex_3_in_triangulation_3_base.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 │ │ ├── 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_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 │ │ │ └── Sizing_field_with_aabb_tree.h │ │ ├── initialize_triangulation_from_labeled_image.h │ │ ├── io_signature.h │ │ ├── mesh_standard_cell_criteria.h │ │ ├── mesh_standard_criteria.h │ │ ├── mesh_standard_facet_criteria.h │ │ ├── min_dihedral_angle.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 │ │ ├── tet_soup_to_c3t3.h │ │ ├── utilities.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 │ │ ├── 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 │ │ ├── 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_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_functions_comparison_root_of_2.h │ │ ├── OFF_to_nef_3.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 │ │ ├── OpenNL │ │ ├── bicgstab.h │ │ ├── blas.h │ │ ├── conjugate_gradient.h │ │ ├── full_vector.h │ │ ├── linear_solver.h │ │ ├── preconditioner.h │ │ └── sparse_matrix.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 │ │ ├── assertions.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 │ │ ├── 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_assertions.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 │ │ ├── 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_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_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_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 │ │ ├── Point_set_processing_3 │ │ └── internal │ │ │ ├── Rich_grid.h │ │ │ └── Voronoi_covariance_3 │ │ │ ├── voronoi_covariance_3.h │ │ │ └── voronoi_covariance_sphere_3.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_assertions.h │ │ ├── Polygon_2_algorithms.h │ │ ├── Polygon_convex_decomposition_2.h │ │ ├── Polygon_mesh_processing │ │ ├── Weights.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_transformation.h │ │ │ ├── Corefinement │ │ │ │ ├── Face_graph_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 │ │ │ ├── do_no_use_CDT2.h │ │ │ ├── fair_impl.h │ │ │ ├── mesh_to_point_set_hausdorff_distance.h │ │ │ ├── named_function_params.h │ │ │ ├── named_params_helper.h │ │ │ ├── refine_impl.h │ │ │ └── repair_extra.h │ │ ├── intersection.h │ │ ├── measure.h │ │ ├── merge_border_vertices.h │ │ ├── orient_polygon_soup.h │ │ ├── orientation.h │ │ ├── polygon_soup_to_polygon_mesh.h │ │ ├── random_perturbation.h │ │ ├── refine.h │ │ ├── remesh.h │ │ ├── repair.h │ │ ├── repair_polygon_soup.h │ │ ├── self_intersections.h │ │ ├── shape_predicates.h │ │ ├── stitch_borders.h │ │ ├── transform.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 │ │ ├── PolyhedralSurf_neighbors.h │ │ ├── Polyhedral_complex_mesh_domain_3.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_constraint_hierarchy_2.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_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 │ │ ├── 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 │ │ ├── domUtils.h │ │ ├── frame.h │ │ ├── frame_impl.h │ │ ├── icons │ │ │ ├── annotation_panel.png │ │ │ ├── context_menu.png │ │ │ ├── cp8.png │ │ │ ├── ctrl.png │ │ │ ├── fileNew.png │ │ │ ├── fileOpen.png │ │ │ ├── fileSave.png │ │ │ ├── lasso_select.png │ │ │ ├── lasso_select2.png │ │ │ ├── left.png │ │ │ ├── load_data.png │ │ │ ├── pause.png │ │ │ ├── planar.png │ │ │ ├── play.png │ │ │ ├── plus.png │ │ │ ├── progress_bar.png │ │ │ ├── right.png │ │ │ ├── select_1.png │ │ │ ├── select_2.png │ │ │ ├── selection_edit_inside_one_segment.png │ │ │ ├── shift.png │ │ │ └── step.png │ │ ├── image_interface.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 │ │ │ ├── 3d_geoinfo_logo.xpm │ │ │ ├── ImageInterface.ui │ │ │ ├── qglviewer-icon.xpm │ │ │ ├── tutorial.html │ │ │ └── tutorial.md │ │ ├── resources_impl.h │ │ ├── utility.h │ │ ├── utility_impl.h │ │ ├── vec.h │ │ ├── vec_impl.h │ │ └── viewer_actions.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_2.h │ │ ├── Regular_triangulation_euclidean_traits_3.h │ │ ├── Regular_triangulation_face_base_2.h │ │ ├── Regular_triangulation_filtered_traits_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_filtered_traits_3.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 │ │ ├── SEP_header.h │ │ ├── SEP_to_ImageIO.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 │ │ ├── Search_traits_vertex_handle_3.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 │ │ ├── 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 │ │ │ ├── Region_growing.h │ │ │ ├── Region_growing_on_point_set.h │ │ │ ├── Region_growing_on_point_set │ │ │ │ ├── K_neighbor_query.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 │ │ │ │ └── Sphere_neighbor_query.h │ │ │ ├── Region_growing_on_polygon_mesh.h │ │ │ ├── Region_growing_on_polygon_mesh │ │ │ │ ├── Least_squares_plane_fit_region.h │ │ │ │ ├── Least_squares_plane_fit_sorting.h │ │ │ │ └── One_ring_neighbor_query.h │ │ │ └── internal │ │ │ │ ├── property_map.h │ │ │ │ └── utils.h │ │ └── deprecated │ │ │ ├── Region_growing.h │ │ │ └── Shape_detection_traits.h │ │ ├── Shape_detection_3.h │ │ ├── Shape_detection_3 │ │ ├── Cone.h │ │ ├── Cylinder.h │ │ ├── Efficient_RANSAC.h │ │ ├── Efficient_RANSAC_traits.h │ │ ├── Octree.h │ │ ├── Plane.h │ │ ├── Region_growing.h │ │ ├── Shape_base.h │ │ ├── Shape_detection_traits.h │ │ ├── Sphere.h │ │ ├── Torus.h │ │ └── property_maps.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 │ │ ├── Sixtuple.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 │ │ ├── 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_sort_traits_adapter_2.h │ │ ├── Spatial_sort_traits_adapter_3.h │ │ ├── Spatial_sort_traits_adapter_d.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── Subdivision_method_3 │ │ ├── internal │ │ │ ├── Euler_extensions.h │ │ │ └── subdivision_hosts_impl_3.h │ │ ├── subdivision_hosts_3.h │ │ ├── subdivision_masks_3.h │ │ └── subdivision_methods_3.h │ │ ├── Surface_mesh.h │ │ ├── Surface_mesh │ │ ├── IO.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 │ │ ├── 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 │ │ │ ├── angles.h │ │ │ ├── kernel_traits.h │ │ │ ├── orbifold_cone_helper.h │ │ │ └── validity.h │ │ ├── orbifold_enums.h │ │ ├── orbifold_shortest_path.h │ │ └── parameterize.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 │ │ ├── Detail │ │ │ ├── Common.h │ │ │ ├── Edge_collapse.h │ │ │ └── Edge_collapse_impl.h │ │ ├── Edge_collapse_visitor_base.h │ │ ├── HalfedgeGraph_Polyhedron_3.h │ │ ├── Policies │ │ │ └── Edge_collapse │ │ │ │ ├── Bounded_normal_change_placement.h │ │ │ │ ├── Constrained_placement.h │ │ │ │ ├── Count_ratio_stop_predicate.h │ │ │ │ ├── Count_stop_predicate.h │ │ │ │ ├── Detail │ │ │ │ ├── Lindstrom_Turk_core.h │ │ │ │ └── Lindstrom_Turk_core_impl.h │ │ │ │ ├── Edge_length_cost.h │ │ │ │ ├── Edge_length_stop_predicate.h │ │ │ │ ├── Edge_profile.h │ │ │ │ ├── Edge_profile_impl.h │ │ │ │ ├── LindstromTurk.h │ │ │ │ ├── LindstromTurk_cost.h │ │ │ │ ├── LindstromTurk_params.h │ │ │ │ ├── LindstromTurk_placement.h │ │ │ │ ├── Midpoint_and_length.h │ │ │ │ └── Midpoint_placement.h │ │ └── edge_collapse.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 │ │ ├── Curve_pair.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 │ │ ├── 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_full_cell_default_storage_policy.h │ │ ├── TDS_full_cell_mirror_storage_policy.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 │ │ ├── Tools │ │ └── chained_map.h │ │ ├── Transform_iterator.h │ │ ├── Tree_assertions.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_2.h │ │ ├── Triangulation_2 │ │ └── insert_constraints.h │ │ ├── Triangulation_2_filtered_projection_traits_3.h │ │ ├── Triangulation_2_projection_traits_3.h │ │ ├── Triangulation_2_to_lcc.h │ │ ├── Triangulation_2_traits_3.h │ │ ├── Triangulation_3.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_euclidean_traits_2.h │ │ ├── Triangulation_face.h │ │ ├── Triangulation_face_base_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_iterator_adaptator.h │ │ ├── Triangulation_line_face_circulator_2.h │ │ ├── Triangulation_simplex_3.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 │ │ ├── Trivial_iterator.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 │ │ ├── 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_alpha_shape_euclidean_traits_2.h │ │ ├── Weighted_alpha_shape_euclidean_traits_3.h │ │ ├── Weighted_point.h │ │ ├── Weighted_point_2.h │ │ ├── Weighted_point_3.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 │ │ ├── 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 │ │ ├── LAPACK.h │ │ ├── Qt.h │ │ ├── TAUCS.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 │ │ │ ├── Dual.h │ │ │ ├── Euler_operations.h │ │ │ ├── Face_filtered_graph.h │ │ │ ├── Graph_with_descriptor_with_graph.h │ │ │ ├── Graph_with_descriptor_with_graph_fwd.h │ │ │ ├── METIS │ │ │ │ ├── partition_dual_graph.h │ │ │ │ └── partition_graph.h │ │ │ ├── Seam_mesh.h │ │ │ ├── backward_compatibility_functions.h │ │ │ ├── boost_parameters_interface.h │ │ │ ├── convert_nef_polyhedron_to_polygon_mesh.h │ │ │ ├── copy_face_graph.h │ │ │ ├── dijkstra_shortest_paths.h │ │ │ ├── dijkstra_shortest_paths.hpp │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ └── helpers.h │ │ │ ├── io.h │ │ │ ├── iterator.h │ │ │ ├── named_function_params.h │ │ │ ├── named_params_helper.h │ │ │ ├── parameters_interface.h │ │ │ ├── partition.h │ │ │ ├── properties.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_Seam_mesh.h │ │ │ ├── properties_Surface_mesh.h │ │ │ ├── properties_Surface_mesh_features.h │ │ │ ├── properties_Surface_mesh_time_stamp.h │ │ │ ├── properties_TriMesh_ArrayKernelT.h │ │ │ ├── property_maps.h │ │ │ ├── selection.h │ │ │ ├── split_graph_into_polylines.h │ │ │ └── visitor.h │ │ ├── iterator │ │ │ ├── counting_iterator.hpp │ │ │ └── transform_iterator.hpp │ │ └── parameter.h │ │ ├── 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_function_objects_2.h │ │ ├── ch_graham_andrew.h │ │ ├── ch_jarvis.h │ │ ├── ch_melkman.h │ │ ├── ch_selected_extreme_points_2.h │ │ ├── circulator.h │ │ ├── circulator_bases.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_3_to_polyhedron_3.h │ │ ├── convex_hull_constructive_traits_2.h │ │ ├── convex_hull_traits_2.h │ │ ├── convexity_check_2.h │ │ ├── convexity_check_3.h │ │ ├── copy_n.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 │ │ ├── demangle.h │ │ ├── determinant.h │ │ ├── determinant_of_vectors.h │ │ ├── disable_warnings.h │ │ ├── distance_predicates_2.h │ │ ├── distance_predicates_3.h │ │ ├── double.h │ │ ├── draw_linear_cell_complex.h │ │ ├── draw_polyhedron.h │ │ ├── draw_surface_mesh.h │ │ ├── draw_triangulation_2.h │ │ ├── draw_triangulation_3.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 │ │ ├── exude_mesh_3.h │ │ ├── float.h │ │ ├── function.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 │ │ ├── internal │ │ ├── AABB_tree │ │ │ ├── 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 │ │ ├── AFSR │ │ │ ├── Surface_face_base_2.h │ │ │ ├── Surface_vertex_base_2.h │ │ │ ├── construct_polyhedron.h │ │ │ ├── construct_surface_2.h │ │ │ ├── orient.h │ │ │ └── write_triple_indices.h │ │ ├── Classification_type.h │ │ ├── Combination_enumerator.h │ │ ├── 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_utility_novariadic.h │ │ ├── Dehn_hyperbolic_octagon_translation_word.h │ │ ├── Delaunay_triangulation_hierarchy_3.h │ │ ├── Dummy_tds_3.h │ │ ├── Exact_complex.h │ │ ├── Exact_type_selector.h │ │ ├── Functor_with_offset_points_adaptor_2.h │ │ ├── Functor_with_offset_points_adaptor_3.h │ │ ├── Functor_with_offset_weighted_points_adaptor_3.h │ │ ├── Generalized_map_group_functors.h │ │ ├── Generalized_map_internal_functors.h │ │ ├── Generalized_map_sewable.h │ │ ├── Generic_random_point_generator.h │ │ ├── Get_dimension_tag.h │ │ ├── Has_boolean_tags.h │ │ ├── Has_member_visited.h │ │ ├── Has_nested_type_Bare_point.h │ │ ├── Hyperbolic_Delaunay_triangulation_traits_2_functions.h │ │ ├── Hyperbolic_octagon_translation_matrix.h │ │ ├── Hyperbolic_octagon_translation_word.h │ │ ├── K_neighbor_search.h │ │ ├── Lazy_alpha_nt_2.h │ │ ├── Lazy_alpha_nt_3.h │ │ ├── Mesh_3 │ │ │ ├── Boundary_of_subdomain_of_complex_3_in_triangulation_3_to_off.h │ │ │ ├── Graph_manipulations.h │ │ │ ├── Handle_IO_for_pair_of_int.h │ │ │ ├── check_weights.h │ │ │ ├── get_index.h │ │ │ ├── helpers.h │ │ │ └── indices_management.h │ │ ├── Parallel_callback.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 │ │ ├── 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_filtered_traits_3.h │ │ ├── Periodic_3_triangulation_iterators_3.h │ │ ├── Periodic_3_triangulation_remove_traits_3.h │ │ ├── Periodic_3_triangulation_statically_filtered_traits_3.h │ │ ├── Periodic_4_hyperbolic_triangulation_dummy_14.h │ │ ├── Projection_traits_3.h │ │ ├── Robust_periodic_weighted_circumcenter_traits_3.h │ │ ├── Static_filters │ │ │ ├── Angle_3.h │ │ │ ├── Collinear_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_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 │ │ │ ├── Periodic_2_orientation_2.h │ │ │ ├── Periodic_2_side_of_oriented_circle_2.h │ │ │ ├── Periodic_3_orientation_3.h │ │ │ ├── Periodic_3_power_side_of_oriented_power_sphere_3.h │ │ │ ├── Periodic_3_side_of_oriented_sphere_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 │ │ ├── Static_or_dynamic_array.h │ │ ├── Surface_mesh_deformation │ │ │ └── Spokes_and_rims_iterator.h │ │ ├── Surface_mesh_segmentation │ │ │ ├── AABB_traits.h │ │ │ ├── AABB_traversal_traits.h │ │ │ ├── Alpha_expansion_graph_cut.h │ │ │ ├── Disk_samplers.h │ │ │ ├── Expectation_maximization.h │ │ │ ├── Filters.h │ │ │ ├── K_means_clustering.h │ │ │ ├── SDF_calculation.h │ │ │ └── Surface_mesh_segmentation.h │ │ ├── Surface_mesh_skeletonization │ │ │ ├── Curve_skeleton.h │ │ │ ├── Debug.h │ │ │ └── Detect_degeneracy.h │ │ ├── TDS_2 │ │ │ ├── Edge_hash_function.h │ │ │ └── edge_list.h │ │ ├── Transform_coordinates_traits_3.h │ │ ├── Triangulation │ │ │ ├── Dummy_TDS.h │ │ │ ├── Triangulation_ds_iterators.h │ │ │ └── utilities.h │ │ ├── Triangulation_2_filtered_projection_traits_3.h │ │ ├── Triangulation_2_projection_traits_base_3.h │ │ ├── Triangulation_ds_circulators_3.h │ │ ├── Triangulation_ds_iterators_3.h │ │ ├── auxiliary │ │ │ └── graph.h │ │ ├── boost │ │ │ ├── array_binary_tree.hpp │ │ │ ├── function_property_map.hpp │ │ │ ├── mutable_heap.hpp │ │ │ └── mutable_queue.hpp │ │ ├── bounded_priority_queue.h │ │ ├── canonicalize_helper.h │ │ ├── container_fwd_fixed.hpp │ │ ├── deprecation_warning.h │ │ ├── disable_deprecation_warnings_and_errors.h │ │ ├── enable_third_party_libraries.h │ │ └── info_check.h │ │ ├── interpolation_functions.h │ │ ├── intersection_2.h │ │ ├── intersection_3.h │ │ ├── intersection_3_1.h │ │ ├── intersections.h │ │ ├── intersections_d.h │ │ ├── ipower.h │ │ ├── is_convertible.h │ │ ├── is_iterator.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 │ │ ├── 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_transportation_reconstruction_2.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 │ │ ├── Point_set_shape_detection_3.h │ │ ├── Poisson_surface_reconstruction_3.h │ │ ├── Polygon_mesh_processing.h │ │ ├── Polygon_mesh_processing │ │ │ ├── Compute_normal.h │ │ │ ├── collision_detection.h │ │ │ ├── connected_components.h │ │ │ ├── core.h │ │ │ ├── corefinement.h │ │ │ ├── detect_features.h │ │ │ ├── distance.h │ │ │ ├── measure.h │ │ │ ├── meshing_hole_filling.h │ │ │ ├── miscellaneous.h │ │ │ ├── orientation.h │ │ │ ├── predicate.h │ │ │ └── repair.h │ │ ├── Polyhedron.h │ │ ├── Polyline_simplification_2.h │ │ ├── Polytope_distance_d.h │ │ ├── Principal_component_analysis.h │ │ ├── QP_solver.h │ │ ├── Ridges_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 │ │ ├── Skin_surface_3.h │ │ ├── Snap_rounding_2.h │ │ ├── Spatial_searching.h │ │ ├── Straight_skeleton_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_mesher.h │ │ ├── Surface_sweep_2.h │ │ ├── TDS_2.h │ │ ├── TDS_3.h │ │ ├── Three.h │ │ ├── Triangulation.h │ │ ├── Triangulation_2.h │ │ ├── Triangulation_3.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 │ │ ├── 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 │ │ ├── multiset_assertions.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 │ │ ├── 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 │ │ ├── point_set_processing_assertions.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 │ │ ├── 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 │ │ ├── regularize_planes.h │ │ ├── remove_far_points_in_mesh_3.h │ │ ├── remove_outliers.h │ │ ├── representation_tags.h │ │ ├── result_of.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_2_1.h │ │ ├── squared_distance_2_2.h │ │ ├── squared_distance_3.h │ │ ├── squared_distance_3_0.h │ │ ├── squared_distance_3_1.h │ │ ├── squared_distance_3_2.h │ │ ├── squared_distance_utils.h │ │ ├── sse2.h │ │ ├── stddef.h │ │ ├── streamlines_assertions.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 │ │ ├── surface_reconstruction_points_assertions.h │ │ ├── sweep_observer.h │ │ ├── tags.h │ │ ├── test_FPU_rounding_mode_impl.h │ │ ├── thread.h │ │ ├── to_rational.h │ │ ├── trace.h │ │ ├── transforming_iterator.h │ │ ├── transforming_pair_iterator.h │ │ ├── triangulate_mixed_complex_3.h │ │ ├── triangulate_power_diagram_3.h │ │ ├── triangulation_assertions.h │ │ ├── tss.h │ │ ├── tuple.h │ │ ├── type_traits.h │ │ ├── typeset.h │ │ ├── unordered.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.cmake ├── path_list.txt ├── scripts │ ├── cgal_create_CMakeLists │ ├── cgal_create_assertions.sh │ ├── cgal_create_cmake_script │ └── cgal_make_macosx_app └── src │ ├── CGAL │ ├── Bbox_2_intersections.cpp │ ├── CMakeLists.txt │ ├── Color.cpp │ ├── File_header_OFF.cpp │ ├── File_header_extended_OFF.cpp │ ├── File_scanner_OFF.cpp │ ├── File_writer_OFF.cpp │ ├── File_writer_VRML_2.cpp │ ├── File_writer_inventor.cpp │ ├── File_writer_wavefront.cpp │ ├── Geomview_stream.cpp │ ├── Interval_arithmetic.cpp │ ├── Random.cpp │ ├── Real_timer.cpp │ ├── Timer.cpp │ ├── assertions.cpp │ ├── io.cpp │ ├── kernel.cpp │ └── test_FPU_rounding_mode.cpp │ ├── CGAL_Core │ ├── BigFloat.cpp │ ├── CMakeLists.txt │ ├── CoreAux.cpp │ ├── CoreDefs.cpp │ ├── CoreIO.cpp │ ├── Expr.cpp │ ├── GmpIO.cpp │ ├── Real.cpp │ └── extLong.cpp │ ├── CGAL_ImageIO │ ├── CMakeLists.txt │ ├── ImageIO.cpp │ ├── Image_3.cpp │ ├── LICENSE │ ├── analyze.cpp │ ├── bmp.cpp │ ├── bmpendian.cpp │ ├── bmpread.cpp │ ├── convert.cpp │ ├── fgetns.cpp │ ├── gif.cpp │ ├── gis.cpp │ ├── inr.cpp │ ├── iris.cpp │ ├── mincio.cpp │ ├── pnm.cpp │ ├── recbuffer.cpp │ ├── recline.cpp │ └── reech4x4.cpp │ ├── CGAL_Qt5 │ ├── CMakeLists.txt │ ├── DemosMainWindow.cpp │ ├── GraphicsView.qtmoc.cmake │ ├── GraphicsViewNavigation.cpp │ ├── GraphicsViewPolylineInput.cpp │ ├── camera.cpp │ ├── constraint.cpp │ ├── debug.cpp │ ├── frame.cpp │ ├── keyFrameInterpolator.cpp │ ├── manipulatedCameraFrame.cpp │ ├── manipulatedFrame.cpp │ ├── mouseGrabber.cpp │ ├── qglviewer.cpp │ ├── quaternion.cpp │ ├── resources.cpp │ ├── utility.cpp │ └── vec.cpp │ ├── CGAL_libs_verinfo.rc.in │ └── CMakeLists.txt ├── LICENSE ├── README.md ├── Tutorial.md ├── data ├── Tile_+1990_+2690_0.jpg └── tiny_test_c.ply ├── docs └── manual.pdf ├── pics ├── annotation_fuse.jpg ├── annotation_panel.png ├── context_menu.png ├── facet_pipeline.png ├── load_data.png ├── planar_split_pipeline.png ├── plus.png ├── pnp_pipeline.png ├── segment_select_pipeline.png ├── selection_basics.png ├── selection_modes.png ├── selection_pnp.png └── selection_splits.png └── src ├── CGAL_polyhedron_demoConfig.cmake.in ├── CMakeLists.txt ├── Callback_signaler.cpp ├── Callback_signaler.h ├── Color_map.h ├── Color_ramp.cpp ├── Color_ramp.h ├── Details.ui ├── Edge_container.cpp ├── FileLoaderDialog.ui ├── File_loader_dialog.h ├── Kernel_type.h ├── LightingDialog.ui ├── MainWindow.cpp ├── MainWindow.h ├── MainWindow.ui ├── MainWindow_config.h ├── Mainpage.md ├── Messages_interface.h ├── One_ring_iterators.h ├── Plugins ├── Classification │ ├── CMakeLists.txt │ ├── Classification_plugin.cpp │ ├── Classification_widget.ui │ ├── Item_classification_base.h │ ├── Surface_mesh_item_classification.cpp │ └── Surface_mesh_item_classification.h ├── IO │ ├── CMakeLists.txt │ ├── Function_dialog.ui │ └── PLY_io_plugin.cpp ├── PCA │ ├── CMakeLists.txt │ ├── Scene_edit_box_item.cpp │ ├── Scene_edit_box_item.h │ └── Scene_edit_box_item_config.h ├── PMP │ ├── CMakeLists.txt │ ├── Scene_facegraph_item_k_ring_selection.cpp │ ├── Scene_facegraph_item_k_ring_selection.h │ ├── Scene_facegraph_item_k_ring_selection_config.h │ ├── Selection_plugin.cpp │ └── Selection_widget.ui └── Point_set │ ├── CMakeLists.txt │ ├── Point_set_selection_plugin.cpp │ └── Point_set_selection_widget.ui ├── Point_container.cpp ├── Point_dialog_config.h ├── Polyhedron_3.qrc ├── Polyhedron_demo_config.h ├── Polyhedron_demo_detect_sharp_edges.h ├── Polyhedron_demo_plugin_helper.cpp ├── Preferences.ui ├── Primitive_container.cpp ├── SMesh_type.h ├── Scene.cpp ├── Scene.h ├── Scene_config.h ├── Scene_find_items.h ├── Scene_group_item.cpp ├── Scene_item.cpp ├── Scene_item_rendering_helper.cpp ├── Scene_points_with_normal_item.cpp ├── Scene_points_with_normal_item.h ├── Scene_points_with_normal_item_config.h ├── Scene_polygon_soup_item.cpp ├── Scene_polygon_soup_item.h ├── Scene_polygon_soup_item_config.h ├── Scene_polyhedron_item_decorator.cpp ├── Scene_polyhedron_item_decorator.h ├── Scene_polyhedron_item_decorator_config.h ├── Scene_polyhedron_selection_item.cpp ├── Scene_polyhedron_selection_item.h ├── Scene_polyhedron_selection_item_config.h ├── Scene_polylines_item.cpp ├── Scene_polylines_item.h ├── Scene_polylines_item_config.h ├── Scene_surface_mesh_item.cpp ├── Scene_surface_mesh_item.h ├── Scene_surface_mesh_item_config.h ├── Scene_textured_polyhedron_item.cpp ├── Scene_textured_surface_mesh_item.cpp ├── Scene_textured_surface_mesh_item.h ├── Selection_visualizer.h ├── Statistics_on_item_dialog.ui ├── TextRenderer.cpp ├── Three.cpp ├── Travel_isolated_components.h ├── Triangle_container.cpp ├── UrbanMeshAnnotator.cpp ├── UrbanMeshAnnotator.h ├── UseCGAL_polyhedron_demo.cmake ├── Viewer.cpp ├── Viewer.h ├── concurrent_mesher_config.cfg ├── config.h ├── create_sphere.h ├── image_interface.h ├── include ├── CGAL │ ├── Dualizer.h │ ├── Facet_with_id_pmap.h │ ├── IO │ │ └── read_surf_trianglemesh.h │ ├── Make_bar.h │ ├── Make_quad_soup.h │ ├── Make_triangle_soup.h │ ├── Polyhedron_kernel.h │ ├── Textured_polyhedron_builder.h │ ├── Triangulation_file_input.h │ ├── gocad_io.h │ ├── statistics_helpers.h │ ├── textured_polyhedron.h │ └── translate.h ├── Point_set_3.h ├── Progress_bar_callback.h ├── QMultipleInputDialog.h ├── Qt_progress_bar_callback.h ├── UI_point_3.h ├── id_printing.h └── run_with_qprogressdialog.h ├── javascript ├── lib.js └── tests │ ├── bad │ ├── catch_and_retrow_cpp_exception.js │ ├── include_missing_file.js │ ├── syntax_error.js │ ├── throw_error.js │ ├── uncaught_cpp_exception.js │ └── uncaught_cpp_exception_in_an_include.js │ ├── good │ ├── catch_missing_file.js │ ├── caught_cpp_exception_in_an_include.js │ ├── cpp_exception.js │ ├── cpp_exception_from_a_function.js │ └── cpp_exception_in_an_include.js │ └── run-tests.sh ├── main.cpp ├── polyhedron_demo_macros.cmake ├── properties.h ├── resources ├── 3D_Annotator.xpm ├── 3dgeoinfi_logo.png ├── 3dgeoinfi_logo.xpm ├── about.html ├── add_facet1.png ├── add_facet2.png ├── annotation_panel.html ├── annotation_panel.png ├── back.png ├── boolean-diff.png ├── boolean-intersection.png ├── boolean-union.png ├── bot.png ├── cgal_logo.xpm ├── check-off.png ├── check-off.svg ├── check-on.png ├── check.svg ├── compatibility_shaders │ ├── heat_intensity_shader.frag │ ├── heat_intensity_shader.vert │ ├── shader_c3t3.frag │ ├── shader_c3t3.vert │ ├── shader_c3t3_edges.frag │ ├── shader_c3t3_edges.vert │ ├── shader_c3t3_spheres.vert │ ├── shader_instanced.vert │ ├── shader_no_light_no_selection.frag │ ├── shader_old_flat.frag │ ├── shader_plane_two_faces.frag │ ├── shader_spheres.vert │ ├── shader_with_light.frag │ ├── shader_with_light.vert │ ├── shader_with_texture.frag │ ├── shader_with_texture.vert │ ├── shader_with_textured_edges.frag │ ├── shader_with_textured_edges.vert │ ├── shader_without_light.frag │ └── shader_without_light.vert ├── context_menu.html ├── context_menu.png ├── convex-hull.png ├── down.png ├── editcopy.png ├── euler_center.png ├── euler_facet.png ├── euler_vertex.png ├── front.png ├── general_collapse.png ├── grid.png ├── heat_intensity_shader.frag ├── heat_intensity_shader.vert ├── help_button.png ├── hexahedron.png ├── icosphere.png ├── kernel.png ├── left.png ├── left_arrow.png ├── minus.png ├── no_interpolation_shader.frag ├── no_interpolation_shader.geom ├── no_interpolation_shader.vert ├── plus.png ├── prism-open.png ├── prism.png ├── pss_box.png ├── pss_diff.png ├── pss_freeform.png ├── pss_inter.png ├── pss_new.png ├── pss_rectangle.png ├── pss_region.png ├── pss_union.png ├── pyramid-open.png ├── pyramid.png ├── quick_introduction.html ├── quick_introduction.png ├── right.png ├── right_arrow.png ├── rotate_around_cursor.png ├── selection_panel.html ├── selection_panel.png ├── shader_c3t3.frag ├── shader_c3t3.vert ├── shader_c3t3_edges.frag ├── shader_c3t3_edges.vert ├── shader_c3t3_spheres.vert ├── shader_flat.frag ├── shader_flat.geom ├── shader_flat.vert ├── shader_instanced.vert ├── shader_no_light_no_selection.frag ├── shader_old_flat.frag ├── shader_plane_two_faces.frag ├── shader_spheres.vert ├── shader_with_light.frag ├── shader_with_light.vert ├── shader_with_texture.frag ├── shader_with_texture.vert ├── shader_with_textured_edges.frag ├── shader_with_textured_edges.vert ├── shader_without_light.frag ├── shader_without_light.vert ├── shortcuts.html ├── shortcuts.png ├── simplification.png ├── solid_wireframe_shader.frag ├── solid_wireframe_shader.geom ├── solid_wireframe_shader.vert ├── tetrahedron.png ├── top.png ├── toplayer.png └── up.png ├── texture.cpp ├── texture.h └── triangulate_primitive.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/.gitignore -------------------------------------------------------------------------------- /CGAL/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/AUTHORS -------------------------------------------------------------------------------- /CGAL/CGALConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/CGALConfig.cmake -------------------------------------------------------------------------------- /CGAL/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/CHANGES.md -------------------------------------------------------------------------------- /CGAL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/INSTALL.md -------------------------------------------------------------------------------- /CGAL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/LICENSE -------------------------------------------------------------------------------- /CGAL/LICENSE.FREE_USE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/LICENSE.FREE_USE -------------------------------------------------------------------------------- /CGAL/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/LICENSE.GPL -------------------------------------------------------------------------------- /CGAL/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/LICENSE.LGPL -------------------------------------------------------------------------------- /CGAL/VERSION: -------------------------------------------------------------------------------- 1 | 4.14 -------------------------------------------------------------------------------- /CGAL/auxiliary/cgal_app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/auxiliary/cgal_app.icns -------------------------------------------------------------------------------- /CGAL/auxiliary/gdb/python/CGAL/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CGAL/auxiliary/gdb/test-gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/auxiliary/gdb/test-gdb.py -------------------------------------------------------------------------------- /CGAL/auxiliary/gdb/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/auxiliary/gdb/test.cpp -------------------------------------------------------------------------------- /CGAL/cgal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cgal.ico -------------------------------------------------------------------------------- /CGAL/cmake/modules/CGAL_Common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/CGAL_Common.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/CGAL_Macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/CGAL_Macros.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/CGAL_SCM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/CGAL_SCM.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/CGAL_UseBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/CGAL_UseBLAS.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/CGAL_UseLEDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/CGAL_UseLEDA.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/CGAL_UseMKL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/CGAL_UseMKL.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/CGAL_UseMPFI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/CGAL_UseMPFI.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/CGAL_UseRS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/CGAL_UseRS.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/CGAL_UseRS3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/CGAL_UseRS3.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindBLAS.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindCORE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindCORE.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindESBTL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindESBTL.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindEigen3.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindF2C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindF2C.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindGMP.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindGMPXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindGMPXX.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindIPE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindIPE.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindLEDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindLEDA.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindMETIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindMETIS.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindMKL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindMKL.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindMPFI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindMPFI.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindMPFR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindMPFR.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindNTL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindNTL.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindRS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindRS.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindRS3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindRS3.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindTAUCS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindTAUCS.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/FindTBB.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/Help/cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/Help/cmake.py -------------------------------------------------------------------------------- /CGAL/cmake/modules/Help/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/Help/conf.py -------------------------------------------------------------------------------- /CGAL/cmake/modules/Help/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/Help/index.rst -------------------------------------------------------------------------------- /CGAL/cmake/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/Makefile -------------------------------------------------------------------------------- /CGAL/cmake/modules/UseCGAL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/UseCGAL.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/UseESBTL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/UseESBTL.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/UseEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/UseEigen3.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/UseLASLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/UseLASLIB.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/UseTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/UseTBB.cmake -------------------------------------------------------------------------------- /CGAL/cmake/modules/config/support/test_syntaxonly.cpp: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /CGAL/cmake/modules/test_MPFI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/cmake/modules/test_MPFI.cpp -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/AABB_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/AABB_demo.cpp -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/AABB_demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/AABB_demo.pdf -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/AABB_demo.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/AABB_demo.qrc -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/Color_ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/Color_ramp.h -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/MainWindow.cpp -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/MainWindow.h -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/MainWindow.ui -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/Refiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/Refiner.h -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/Scene.cpp -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/Scene.h -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/Viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/Viewer.cpp -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/Viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/Viewer.h -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/benchmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/benchmarks.cpp -------------------------------------------------------------------------------- /CGAL/demo/AABB_tree/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/AABB_tree/types.h -------------------------------------------------------------------------------- /CGAL/demo/Alpha_shapes_3/Viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Alpha_shapes_3/Viewer.h -------------------------------------------------------------------------------- /CGAL/demo/CGAL_ipelets/hull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/CGAL_ipelets/hull.cpp -------------------------------------------------------------------------------- /CGAL/demo/CGAL_ipelets/mesh_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/CGAL_ipelets/mesh_2.cpp -------------------------------------------------------------------------------- /CGAL/demo/CGAL_ipelets/mst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/CGAL_ipelets/mst.cpp -------------------------------------------------------------------------------- /CGAL/demo/CGAL_ipelets/pca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/CGAL_ipelets/pca.cpp -------------------------------------------------------------------------------- /CGAL/demo/CGAL_ipelets/svdlinf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/CGAL_ipelets/svdlinf.cpp -------------------------------------------------------------------------------- /CGAL/demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/demo/Convex_hull_3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Convex_hull_3/README -------------------------------------------------------------------------------- /CGAL/demo/Generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Generator/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/demo/Generator/Generator_2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Generator/Generator_2.ui -------------------------------------------------------------------------------- /CGAL/demo/Geomview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Geomview/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/demo/Geomview/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Geomview/README -------------------------------------------------------------------------------- /CGAL/demo/Geomview/gv_terrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Geomview/gv_terrain.cpp -------------------------------------------------------------------------------- /CGAL/demo/Geomview/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Geomview/input.cpp -------------------------------------------------------------------------------- /CGAL/demo/Geomview/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Geomview/kernel.cpp -------------------------------------------------------------------------------- /CGAL/demo/GraphicsView/min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/GraphicsView/min.cpp -------------------------------------------------------------------------------- /CGAL/demo/Interpolation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Interpolation/README -------------------------------------------------------------------------------- /CGAL/demo/Mesh_2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Mesh_2/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/demo/Mesh_2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Mesh_2/README.txt -------------------------------------------------------------------------------- /CGAL/demo/Mesh_2/conform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Mesh_2/conform.cpp -------------------------------------------------------------------------------- /CGAL/demo/Mesh_2/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Mesh_2/mesh.cpp -------------------------------------------------------------------------------- /CGAL/demo/Periodic_Lloyd_3/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Periodic_Lloyd_3/Scene.h -------------------------------------------------------------------------------- /CGAL/demo/Polygon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polygon/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/demo/Polygon/Polygon_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polygon/Polygon_2.cpp -------------------------------------------------------------------------------- /CGAL/demo/Polygon/Polygon_2.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polygon/Polygon_2.qrc -------------------------------------------------------------------------------- /CGAL/demo/Polygon/Polygon_2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polygon/Polygon_2.ui -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/C2t3_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/C2t3_type.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/C3t3_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/C3t3_type.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Color_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Color_map.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Color_ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Color_ramp.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Details.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Details.ui -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Image_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Image_type.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Kernel_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Kernel_type.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/MainWindow.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/MainWindow.ui -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Mainpage.md -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Mesh_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Mesh_3.cpp -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Nef_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Nef_type.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Plugins/PMP/Scene_facegraph_item_k_ring_selection.cpp: -------------------------------------------------------------------------------- 1 | #include "Scene_facegraph_item_k_ring_selection.h" 2 | -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/SMesh_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/SMesh_type.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Scene.cpp -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Scene.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Three.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Three.cpp -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Viewer.cpp -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/Viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/Viewer.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/config.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/javascript/tests/bad/include_missing_file.js: -------------------------------------------------------------------------------- 1 | include("missing-file") 2 | -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/javascript/tests/bad/syntax_error.js: -------------------------------------------------------------------------------- 1 | syntax; error 2 | -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/javascript/tests/bad/throw_error.js: -------------------------------------------------------------------------------- 1 | throw Error("Coucou") 2 | -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/javascript/tests/bad/uncaught_cpp_exception_in_an_include.js: -------------------------------------------------------------------------------- 1 | include("uncaught_cpp_exception.js") 2 | -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/properties.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/texture.cpp -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron/texture.h -------------------------------------------------------------------------------- /CGAL/demo/Polyhedron_IO/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Polyhedron_IO/README -------------------------------------------------------------------------------- /CGAL/demo/Surface_mesher/File_XT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Surface_mesher/File_XT.h -------------------------------------------------------------------------------- /CGAL/demo/Surface_mesher/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Surface_mesher/surface.h -------------------------------------------------------------------------------- /CGAL/demo/Surface_mesher/viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Surface_mesher/viewer.h -------------------------------------------------------------------------------- /CGAL/demo/Surface_mesher/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Surface_mesher/volume.h -------------------------------------------------------------------------------- /CGAL/demo/Three/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Three/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/demo/Triangulation_3/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Triangulation_3/Scene.h -------------------------------------------------------------------------------- /CGAL/demo/Triangulation_3/Viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/Triangulation_3/Viewer.h -------------------------------------------------------------------------------- /CGAL/demo/icons/File.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/File.qrc -------------------------------------------------------------------------------- /CGAL/demo/icons/Input.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/Input.qrc -------------------------------------------------------------------------------- /CGAL/demo/icons/fileNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/fileNew.png -------------------------------------------------------------------------------- /CGAL/demo/icons/fileOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/fileOpen.png -------------------------------------------------------------------------------- /CGAL/demo/icons/fileSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/fileSave.png -------------------------------------------------------------------------------- /CGAL/demo/icons/fit-page-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/fit-page-32.png -------------------------------------------------------------------------------- /CGAL/demo/icons/inputPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/inputPoint.png -------------------------------------------------------------------------------- /CGAL/demo/icons/inputPoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/inputPoint.svg -------------------------------------------------------------------------------- /CGAL/demo/icons/inputPolyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/inputPolyline.png -------------------------------------------------------------------------------- /CGAL/demo/icons/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/license.txt -------------------------------------------------------------------------------- /CGAL/demo/icons/zoom-best-fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/zoom-best-fit.png -------------------------------------------------------------------------------- /CGAL/demo/icons/zoom-best-fit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/icons/zoom-best-fit.svg -------------------------------------------------------------------------------- /CGAL/demo/resources/CGAL.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/resources/CGAL.qrc -------------------------------------------------------------------------------- /CGAL/demo/resources/cgal_logo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/demo/resources/cgal_logo.xpm -------------------------------------------------------------------------------- /CGAL/examples/BGL_LCC/copy_lcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/BGL_LCC/copy_lcc.cpp -------------------------------------------------------------------------------- /CGAL/examples/BGL_LCC/cube.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/BGL_LCC/cube.off -------------------------------------------------------------------------------- /CGAL/examples/BGL_LCC/distance_lcc.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/BGL_LCC/incident_vertices_lcc.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/BGL_LCC/normals_lcc.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/BGL_LCC/range_lcc.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/BGL_LCC/transform_iterator_lcc.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/BGL_OpenMesh/in.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/BGL_OpenMesh/in.off -------------------------------------------------------------------------------- /CGAL/examples/BGL_polyhedron_3/distance.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/BGL_polyhedron_3/incident_vertices.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/BGL_polyhedron_3/normals.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/BGL_polyhedron_3/range.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/BGL_polyhedron_3/transform_iterator.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/BGL_surface_mesh/prim.cmd: -------------------------------------------------------------------------------- 1 | data/prim.off -------------------------------------------------------------------------------- /CGAL/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/examples/Cone_spanners_2/compute_cones.cmd: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /CGAL/examples/Cone_spanners_2/dijkstra_theta.cmd: -------------------------------------------------------------------------------- 1 | 6 data/n20.cin 2 | -------------------------------------------------------------------------------- /CGAL/examples/Cone_spanners_2/theta_io.cmd: -------------------------------------------------------------------------------- 1 | 4 data/n9.cin 2 | -------------------------------------------------------------------------------- /CGAL/examples/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Core/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/examples/Core/delaunay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Core/delaunay.cpp -------------------------------------------------------------------------------- /CGAL/examples/Generator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Generator/README -------------------------------------------------------------------------------- /CGAL/examples/Generator/ball_d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Generator/ball_d.cpp -------------------------------------------------------------------------------- /CGAL/examples/Generator/cube_d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Generator/cube_d.cpp -------------------------------------------------------------------------------- /CGAL/examples/Generator/grid_d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Generator/grid_d.cpp -------------------------------------------------------------------------------- /CGAL/examples/Interpolation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Interpolation/README -------------------------------------------------------------------------------- /CGAL/examples/Jet_fitting_3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Jet_fitting_3/README -------------------------------------------------------------------------------- /CGAL/examples/Kernel_23/MyKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Kernel_23/MyKernel.h -------------------------------------------------------------------------------- /CGAL/examples/Kernel_23/exact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Kernel_23/exact.cpp -------------------------------------------------------------------------------- /CGAL/examples/Mesh_3/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Mesh_3/debug.h -------------------------------------------------------------------------------- /CGAL/examples/Mesh_3/mesh_3D_gray_image_multiple_values.cmd: -------------------------------------------------------------------------------- 1 | data/skull_2.9.inr 1.5 2.9 3.5 2 | -------------------------------------------------------------------------------- /CGAL/examples/Nef_2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Nef_2/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/examples/Nef_3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Nef_3/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/examples/Nef_3/comparison.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Nef_3/comparison.cpp -------------------------------------------------------------------------------- /CGAL/examples/Nef_3/nefIO.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Nef_3/nefIO.cin -------------------------------------------------------------------------------- /CGAL/examples/Nef_3/nefIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Nef_3/nefIO.cpp -------------------------------------------------------------------------------- /CGAL/examples/Nef_3/offIO.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Nef_3/offIO.cin -------------------------------------------------------------------------------- /CGAL/examples/Nef_3/offIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Nef_3/offIO.cpp -------------------------------------------------------------------------------- /CGAL/examples/Partition_2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Partition_2/README -------------------------------------------------------------------------------- /CGAL/examples/Polygon/Example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Polygon/Example.cpp -------------------------------------------------------------------------------- /CGAL/examples/Polygon/Polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Polygon/Polygon.cpp -------------------------------------------------------------------------------- /CGAL/examples/Ridges_3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/Ridges_3/README -------------------------------------------------------------------------------- /CGAL/examples/Ridges_3/skip_vcproj_auto_generation: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CGAL/examples/Scale_space_reconstruction_3/scale_space.cmd: -------------------------------------------------------------------------------- 1 | data/kitten.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Scale_space_reconstruction_3/scale_space_advancing_front.cmd: -------------------------------------------------------------------------------- 1 | data/kitten.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Scale_space_reconstruction_3/scale_space_incremental.cmd: -------------------------------------------------------------------------------- 1 | data/kitten.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Scale_space_reconstruction_3/scale_space_manifold.cmd: -------------------------------------------------------------------------------- 1 | data/kitten.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesh/sm_bgl.cmd: -------------------------------------------------------------------------------- 1 | data/knot1.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesh/sm_kruskal.cmd: -------------------------------------------------------------------------------- 1 | data/knot1.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesh_simplification/edge_collapse_all_short_edges.cmd: -------------------------------------------------------------------------------- 1 | cube-meshed.off 0.2 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesh_simplification/edge_collapse_constrain_sharp_edges.cmd: -------------------------------------------------------------------------------- 1 | cube-meshed.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesh_simplification/edge_collapse_constrained_border_polyhedron.cmd: -------------------------------------------------------------------------------- 1 | mesh_with_border.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesh_simplification/edge_collapse_constrained_border_surface_mesh.cmd: -------------------------------------------------------------------------------- 1 | mesh_with_border.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesh_simplification/edge_collapse_enriched_polyhedron.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesh_simplification/edge_collapse_linear_cell_complex.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesh_simplification/edge_collapse_polyhedron.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesh_simplification/edge_collapse_surface_mesh.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesh_simplification/edge_collapse_visitor_surface_mesh.cmd: -------------------------------------------------------------------------------- 1 | cube.off 2 | -------------------------------------------------------------------------------- /CGAL/examples/Surface_mesher/skip_vcproj_auto_generation: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CGAL/examples/TDS_3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/TDS_3/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/examples/TDS_3/tds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/examples/TDS_3/tds.cpp -------------------------------------------------------------------------------- /CGAL/include/CGAL/AABB_primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/AABB_primitive.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/AABB_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/AABB_traits.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/AABB_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/AABB_tree.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Alpha_shape_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Alpha_shape_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Alpha_shape_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Alpha_shape_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Arr_accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Arr_accessor.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Arr_dcel_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Arr_dcel_base.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Arr_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Arr_enums.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Arr_face_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Arr_face_map.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Arr_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Arr_observer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Arr_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Arr_overlay.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Arr_overlay_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Arr_overlay_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Arr_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Arr_tags.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Arr_vertex_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Arr_vertex_map.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Arrangement_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Arrangement_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Bbox_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Bbox_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Bbox_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Bbox_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Bounded_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Bounded_kernel.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Buffer_for_vao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Buffer_for_vao.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CC_safe_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CC_safe_handle.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/BigFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/BigFloat.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/BigInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/BigInt.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/BigRat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/BigRat.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/CORE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/CORE.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/Config.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/CoreAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/CoreAux.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/CoreDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/CoreDefs.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/Expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/Expr.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/ExprRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/ExprRep.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/Expr_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/Expr_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/Filter.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/Gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/Gmp.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/Gmp_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/Gmp_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/Impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/Promote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/Promote.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/Real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/Real.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/RealRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/RealRep.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/Real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/Real_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/RefCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/RefCount.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/Timer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/extLong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/extLong.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE/poly/Poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE/poly/Poly.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE_BigFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE_BigFloat.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE_BigInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE_BigInt.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE_BigRat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE_BigRat.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/CORE_Expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/CORE_Expr.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Cache.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Cartesian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Cartesian.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Cartesian_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Cartesian_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Cell_attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Cell_attribute.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Cell_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Cell_iterators.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Circle_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Circle_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Circle_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Circle_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Circle_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Circle_type.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Circular_arc_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Circular_arc_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Circular_arc_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Circular_arc_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Classification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Classification.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Conic_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Conic_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Convex_hull_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Convex_hull_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Counted_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Counted_number.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Dart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Dart.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Dart_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Dart_iterators.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Default.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Delaunay_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Delaunay_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Dimension.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Direction_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Direction_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Direction_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Direction_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Distance_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Distance_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Double_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Double_map.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Dummy_tds_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Dummy_tds_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Dynamic_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Dynamic_matrix.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Eigen_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Eigen_matrix.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Eigen_svd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Eigen_svd.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Eigen_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Eigen_vector.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Enum_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Enum_converter.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Epeck_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Epeck_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Epic_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Epic_converter.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Epick_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Epick_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Exact_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Exact_integer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Exact_rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Exact_rational.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/FPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/FPU.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/FPU_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/FPU_extension.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/FPU_gcc_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/FPU_gcc_i386.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/FPU_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/FPU_msvc.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Fourtuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Fourtuple.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Fuzzy_iso_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Fuzzy_iso_box.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Fuzzy_sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Fuzzy_sphere.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/GMP/Gmpfi_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/GMP/Gmpfi_type.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/GMP/Gmpfr_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/GMP/Gmpfr_type.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/GMP/Gmpq_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/GMP/Gmpq_type.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/GMP/Gmpz_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/GMP/Gmpz_type.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/GMP/Gmpzf_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/GMP/Gmpzf_type.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Gmpfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Gmpfi.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Gmpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Gmpfr.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Gmpq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Gmpq.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Gmpz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Gmpz.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Gmpzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Gmpzf.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Gps_traits_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Gps_traits_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Handle.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Handle_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Handle_for.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Has_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Has_conversion.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Has_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Has_member.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Has_timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Has_timestamp.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Hilbert_sort_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Hilbert_sort_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Hilbert_sort_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Hilbert_sort_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Hilbert_sort_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Hilbert_sort_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Homogeneous.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Homogeneous_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Homogeneous_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Hyperbola_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Hyperbola_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/Color.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/Color_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/Color_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/Dxf_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/Dxf_reader.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/Dxf_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/Dxf_stream.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/Dxf_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/Dxf_writer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/Fig_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/Fig_stream.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/File_avizo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/File_avizo.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/File_maya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/File_maya.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/File_medit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/File_medit.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/File_poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/File_poly.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/File_tetgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/File_tetgen.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/OBJ_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/OBJ_reader.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/OFF_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/OFF_reader.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/PLY_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/PLY_reader.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/PLY_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/PLY_writer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/STL_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/STL_reader.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/STL_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/STL_writer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/Scanner_OFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/Scanner_OFF.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/Writer_OFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/Writer_OFF.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/io.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/io_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/io_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/io_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/io_tags.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/print_OFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/print_OFF.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/scan_OFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/scan_OFF.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/write_vtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/write_vtk.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/IO/write_vtu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/IO/write_vtu.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ImageIO.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ImageIO/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ImageIO/bmp.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ImageIO/fgetns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ImageIO/fgetns.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ImageIO/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ImageIO/gif.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ImageIO/gis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ImageIO/gis.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ImageIO/inr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ImageIO/inr.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ImageIO/iris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ImageIO/iris.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ImageIO/mincio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ImageIO/mincio.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ImageIO/pnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ImageIO/pnm.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ImageIO_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ImageIO_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Image_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Image_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Image_3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Image_3_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/In_place_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/In_place_list.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Interval_nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Interval_nt.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Inverse_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Inverse_index.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Is_a_predicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Is_a_predicate.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Iso_cuboid_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Iso_cuboid_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Iterator_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Iterator_range.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Kd_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Kd_tree.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Kd_tree_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Kd_tree_node.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Kernel/Wutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Kernel/Wutils.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Kernel/mpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Kernel/mpl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Kernel/solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Kernel/solve.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Kernel_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Kernel_checker.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Kernel_d/Ray_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Kernel_d/Ray_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Kernel_d/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Kernel_d/debug.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Kernel_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Kernel_traits.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/LEDA_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/LEDA_basic.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Lapack_svd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Lapack_svd.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Lazy.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Lazy_exact_nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Lazy_exact_nt.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Lazy_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Lazy_kernel.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Level_interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Level_interval.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Line_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Line_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Line_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Line_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Line_arc_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Line_arc_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Line_arc_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Line_arc_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/MP_Float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/MP_Float.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/MP_Float_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/MP_Float_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Memory_sizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Memory_sizer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Mesh_3/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Mesh_3/config.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Mesher_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Mesher_level.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Min_annulus_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Min_annulus_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Min_circle_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Min_circle_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Min_ellipse_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Min_ellipse_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Min_sphere_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Min_sphere_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Modifier_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Modifier_base.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Modular_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Modular_traits.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Mpzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Mpzf.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Multiset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Multiset.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/NT_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/NT_converter.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/N_step_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/N_step_adaptor.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Nef_2/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Nef_2/debug.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Nef_2/geninfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Nef_2/geninfo.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Nef_3/Halfedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Nef_3/Halfedge.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Nef_3/K3_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Nef_3/K3_tree.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Nef_3/Nef_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Nef_3/Nef_box.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Nef_3/SFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Nef_3/SFace.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Nef_3/SNC_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Nef_3/SNC_list.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Nef_3/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Nef_3/Vertex.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Nef_3/Volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Nef_3/Volume.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Nef_S2/SM_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Nef_S2/SM_list.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Nef_polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Nef_polynomial.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Null_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Null_matrix.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/OFF_to_nef_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/OFF_to_nef_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/OTR_2/Cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/OTR_2/Cost.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/OTR_2/Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/OTR_2/Sample.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Object.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/OpenNL/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/OpenNL/blas.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Origin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Origin.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Origin_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Origin_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/PCA_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/PCA_util.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/PCA_util_Eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/PCA_util_Eigen.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Parabola_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Parabola_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Plane_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Plane_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Point_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Point_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Point_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Point_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Point_set_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Point_set_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Point_set_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Point_set_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Point_set_3/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Point_set_3/IO.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Point_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Point_traits.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Polychain_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Polychain_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Polygon_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Polygon_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Polygon_set_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Polygon_set_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Polyhedron_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Polyhedron_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Polynomial.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Polynomial/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Polynomial/fwd.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Profile_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Profile_timer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/QP_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/QP_functions.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/QP_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/QP_models.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/QP_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/QP_options.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/QP_solution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/QP_solution.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/Converter.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/camera.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/camera_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/camera_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/constraint.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/debug.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/debug_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/debug_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/domUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/domUtils.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/frame.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/frame_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/frame_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/icons/cp8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/icons/cp8.png -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/qglviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/qglviewer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/quaternion.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/resources.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/utility.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/vec.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Qt/vec_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Qt/vec_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Quotient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Quotient.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Quotient_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Quotient_fwd.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/RS/ak_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/RS/ak_1.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/RS/ak_z_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/RS/ak_z_1.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/RS/algebraic_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/RS/algebraic_1.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/RS/dyadic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/RS/dyadic.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/RS/functors_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/RS/functors_1.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/RS/rs2_calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/RS/rs2_calls.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/RS/signat_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/RS/signat_1.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Random.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Random_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Random_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Range_tree_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Range_tree_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Range_tree_k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Range_tree_k.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Ray_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Ray_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Ray_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Ray_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Real_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Real_timer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Regular_grid_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Regular_grid_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Residue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Residue.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Ridges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Ridges.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Root_of_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Root_of_traits.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/SEP_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/SEP_header.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/SEP_to_ImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/SEP_to_ImageIO.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Search_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Search_traits.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Segment_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Segment_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Segment_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Segment_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Segment_tree_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Segment_tree_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Segment_tree_k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Segment_tree_k.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Sixtuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Sixtuple.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Skin_surface_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Skin_surface_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Skiplist.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Sphere_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Sphere_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Splitters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Splitters.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Sqrt_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Sqrt_extension.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Stream_lines_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Stream_lines_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Surface_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Surface_mesh.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Tetrahedron_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Tetrahedron_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Three/Three.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Three/Three.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Threetuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Threetuple.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Time_stamper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Time_stamper.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Timer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Timer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Timer_impl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Tree_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Tree_base.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Tree_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Tree_traits.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Triangle_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Triangle_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Triangle_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Triangle_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Triangulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Triangulation.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Twotuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Twotuple.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Umbilics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Umbilics.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Uncertain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Uncertain.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Union_find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Union_find.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Vector_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Vector_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Vector_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Vector_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Weighted_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Weighted_point.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/Width_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/Width_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/algorithm.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/apply_to_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/apply_to_range.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/argument_swaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/argument_swaps.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/array.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/assertions.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/atomic.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/auto_link/CGAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/auto_link/CGAL.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/auto_link/CORE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/auto_link/CORE.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/auto_link/Qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/auto_link/Qt.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/barycenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/barycenter.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/basic.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/basic_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/basic_classes.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/boost/bimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/boost/bimap.hpp -------------------------------------------------------------------------------- /CGAL/include/CGAL/boost/graph/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/boost/graph/io.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/boost_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/boost_mp.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/bounding_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/bounding_box.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/centroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/centroid.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ch_bykat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ch_bykat.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ch_eddy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ch_eddy.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ch_jarvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ch_jarvis.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ch_melkman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ch_melkman.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/circulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/circulator.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/config.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/connect_holes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/connect_holes.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/constant.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/convert_to_bfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/convert_to_bfi.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/convex_hull_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/convex_hull_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/convex_hull_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/convex_hull_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/copy_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/copy_n.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/demangle.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/determinant.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/double.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/enum.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/envelope_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/envelope_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/envelope_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/envelope_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/estimate_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/estimate_scale.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/exceptions.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/export/CGAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/export/CGAL.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/export/CORE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/export/CORE.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/export/ImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/export/ImageIO.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/export/Qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/export/Qt.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/export/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/export/helpers.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/exude_mesh_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/exude_mesh_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/float.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/function.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/functional.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/generators.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/generic_sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/generic_sweep.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/gl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/glu.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/gmp.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/gmpxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/gmpxx.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/grabbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/grabbers.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/hash_openmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/hash_openmesh.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/hilbert_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/hilbert_sort.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/int.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/intersection_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/intersection_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/intersection_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/intersection_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/intersections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/intersections.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/ipower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/ipower.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/is_convertible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/is_convertible.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/is_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/is_iterator.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/is_streamable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/is_streamable.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/iterator.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/kernel_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/kernel_basic.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/kernel_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/kernel_config.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/leda_bigfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/leda_bigfloat.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/leda_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/leda_integer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/leda_rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/leda_rational.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/leda_real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/leda_real.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/license.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/license/Mesh_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/license/Mesh_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/license/Mesh_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/license/Mesh_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/license/Nef_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/license/Nef_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/license/Nef_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/license/Nef_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/license/Nef_S2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/license/Nef_S2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/license/TDS_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/license/TDS_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/license/TDS_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/license/TDS_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/license/Three.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/license/Three.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/license/lgpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/license/lgpl.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/long_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/long_double.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/long_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/long_long.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/make_mesh_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/make_mesh_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/memory.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/min_max_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/min_max_n.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/mpq_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/mpq_class.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/mpz_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/mpz_class.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/mutex.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/number_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/number_utils.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/partition_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/partition_2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/perturb_mesh_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/perturb_mesh_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/predicates_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/predicates_d.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/primes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/primes.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/property_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/property_map.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/refine_mesh_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/refine_mesh_3.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/result_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/result_of.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/spatial_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/spatial_sort.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/sse2.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/stddef.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/sweep_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/sweep_observer.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/tags.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/thread.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/to_rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/to_rational.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/trace.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/tss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/tss.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/tuple.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/type_traits.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/typeset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/typeset.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/unordered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/unordered.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/use.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/user_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/user_classes.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/utility.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/utils.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/utils_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/utils_classes.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/vector.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/version.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/version_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/version_macros.h -------------------------------------------------------------------------------- /CGAL/include/CGAL/wmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/include/CGAL/wmult.h -------------------------------------------------------------------------------- /CGAL/path_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/path_list.txt -------------------------------------------------------------------------------- /CGAL/scripts/cgal_make_macosx_app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/scripts/cgal_make_macosx_app -------------------------------------------------------------------------------- /CGAL/src/CGAL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/src/CGAL/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/Color.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL/File_header_OFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/File_header_OFF.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL/File_scanner_OFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/File_scanner_OFF.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL/File_writer_OFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/File_writer_OFF.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL/Geomview_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/Geomview_stream.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/Random.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL/Real_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/Real_timer.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/Timer.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL/assertions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/assertions.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/io.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL/kernel.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Core/BigFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Core/BigFloat.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Core/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/src/CGAL_Core/CoreAux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Core/CoreAux.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Core/CoreDefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Core/CoreDefs.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Core/CoreIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Core/CoreIO.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Core/Expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Core/Expr.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Core/GmpIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Core/GmpIO.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Core/Real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Core/Real.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Core/extLong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Core/extLong.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/ImageIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/ImageIO.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/Image_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/Image_3.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/LICENSE -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/analyze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/analyze.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/bmp.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/bmpread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/bmpread.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/convert.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/fgetns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/fgetns.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/gif.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/gis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/gis.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/inr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/inr.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/iris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/iris.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/mincio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/mincio.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/pnm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/pnm.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/recline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/recline.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_ImageIO/reech4x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_ImageIO/reech4x4.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Qt5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Qt5/CMakeLists.txt -------------------------------------------------------------------------------- /CGAL/src/CGAL_Qt5/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Qt5/camera.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Qt5/constraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Qt5/constraint.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Qt5/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Qt5/debug.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Qt5/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Qt5/frame.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Qt5/mouseGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Qt5/mouseGrabber.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Qt5/qglviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Qt5/qglviewer.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Qt5/quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Qt5/quaternion.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Qt5/resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Qt5/resources.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Qt5/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Qt5/utility.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_Qt5/vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_Qt5/vec.cpp -------------------------------------------------------------------------------- /CGAL/src/CGAL_libs_verinfo.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CGAL_libs_verinfo.rc.in -------------------------------------------------------------------------------- /CGAL/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/CGAL/src/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/Tutorial.md -------------------------------------------------------------------------------- /data/Tile_+1990_+2690_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/data/Tile_+1990_+2690_0.jpg -------------------------------------------------------------------------------- /data/tiny_test_c.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/data/tiny_test_c.ply -------------------------------------------------------------------------------- /docs/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/docs/manual.pdf -------------------------------------------------------------------------------- /pics/annotation_fuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/annotation_fuse.jpg -------------------------------------------------------------------------------- /pics/annotation_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/annotation_panel.png -------------------------------------------------------------------------------- /pics/context_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/context_menu.png -------------------------------------------------------------------------------- /pics/facet_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/facet_pipeline.png -------------------------------------------------------------------------------- /pics/load_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/load_data.png -------------------------------------------------------------------------------- /pics/planar_split_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/planar_split_pipeline.png -------------------------------------------------------------------------------- /pics/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/plus.png -------------------------------------------------------------------------------- /pics/pnp_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/pnp_pipeline.png -------------------------------------------------------------------------------- /pics/segment_select_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/segment_select_pipeline.png -------------------------------------------------------------------------------- /pics/selection_basics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/selection_basics.png -------------------------------------------------------------------------------- /pics/selection_modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/selection_modes.png -------------------------------------------------------------------------------- /pics/selection_pnp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/selection_pnp.png -------------------------------------------------------------------------------- /pics/selection_splits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/pics/selection_splits.png -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Callback_signaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Callback_signaler.cpp -------------------------------------------------------------------------------- /src/Callback_signaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Callback_signaler.h -------------------------------------------------------------------------------- /src/Color_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Color_map.h -------------------------------------------------------------------------------- /src/Color_ramp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Color_ramp.cpp -------------------------------------------------------------------------------- /src/Color_ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Color_ramp.h -------------------------------------------------------------------------------- /src/Details.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Details.ui -------------------------------------------------------------------------------- /src/Edge_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Edge_container.cpp -------------------------------------------------------------------------------- /src/FileLoaderDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/FileLoaderDialog.ui -------------------------------------------------------------------------------- /src/File_loader_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/File_loader_dialog.h -------------------------------------------------------------------------------- /src/Kernel_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Kernel_type.h -------------------------------------------------------------------------------- /src/LightingDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/LightingDialog.ui -------------------------------------------------------------------------------- /src/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/MainWindow.cpp -------------------------------------------------------------------------------- /src/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/MainWindow.h -------------------------------------------------------------------------------- /src/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/MainWindow.ui -------------------------------------------------------------------------------- /src/MainWindow_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/MainWindow_config.h -------------------------------------------------------------------------------- /src/Mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Mainpage.md -------------------------------------------------------------------------------- /src/Messages_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Messages_interface.h -------------------------------------------------------------------------------- /src/One_ring_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/One_ring_iterators.h -------------------------------------------------------------------------------- /src/Plugins/IO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Plugins/IO/CMakeLists.txt -------------------------------------------------------------------------------- /src/Plugins/IO/Function_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Plugins/IO/Function_dialog.ui -------------------------------------------------------------------------------- /src/Plugins/IO/PLY_io_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Plugins/IO/PLY_io_plugin.cpp -------------------------------------------------------------------------------- /src/Plugins/PCA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include( polyhedron_demo_macros ) -------------------------------------------------------------------------------- /src/Plugins/PMP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Plugins/PMP/CMakeLists.txt -------------------------------------------------------------------------------- /src/Plugins/PMP/Scene_facegraph_item_k_ring_selection.cpp: -------------------------------------------------------------------------------- 1 | #include "Scene_facegraph_item_k_ring_selection.h" 2 | -------------------------------------------------------------------------------- /src/Point_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Point_container.cpp -------------------------------------------------------------------------------- /src/Point_dialog_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Point_dialog_config.h -------------------------------------------------------------------------------- /src/Polyhedron_3.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Polyhedron_3.qrc -------------------------------------------------------------------------------- /src/Polyhedron_demo_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Polyhedron_demo_config.h -------------------------------------------------------------------------------- /src/Preferences.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Preferences.ui -------------------------------------------------------------------------------- /src/Primitive_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Primitive_container.cpp -------------------------------------------------------------------------------- /src/SMesh_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/SMesh_type.h -------------------------------------------------------------------------------- /src/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene.cpp -------------------------------------------------------------------------------- /src/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene.h -------------------------------------------------------------------------------- /src/Scene_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene_config.h -------------------------------------------------------------------------------- /src/Scene_find_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene_find_items.h -------------------------------------------------------------------------------- /src/Scene_group_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene_group_item.cpp -------------------------------------------------------------------------------- /src/Scene_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene_item.cpp -------------------------------------------------------------------------------- /src/Scene_polygon_soup_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene_polygon_soup_item.cpp -------------------------------------------------------------------------------- /src/Scene_polygon_soup_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene_polygon_soup_item.h -------------------------------------------------------------------------------- /src/Scene_polylines_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene_polylines_item.cpp -------------------------------------------------------------------------------- /src/Scene_polylines_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene_polylines_item.h -------------------------------------------------------------------------------- /src/Scene_polylines_item_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene_polylines_item_config.h -------------------------------------------------------------------------------- /src/Scene_surface_mesh_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene_surface_mesh_item.cpp -------------------------------------------------------------------------------- /src/Scene_surface_mesh_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Scene_surface_mesh_item.h -------------------------------------------------------------------------------- /src/Selection_visualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Selection_visualizer.h -------------------------------------------------------------------------------- /src/Statistics_on_item_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Statistics_on_item_dialog.ui -------------------------------------------------------------------------------- /src/TextRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/TextRenderer.cpp -------------------------------------------------------------------------------- /src/Three.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Three.cpp -------------------------------------------------------------------------------- /src/Travel_isolated_components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Travel_isolated_components.h -------------------------------------------------------------------------------- /src/Triangle_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Triangle_container.cpp -------------------------------------------------------------------------------- /src/UrbanMeshAnnotator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/UrbanMeshAnnotator.cpp -------------------------------------------------------------------------------- /src/UrbanMeshAnnotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/UrbanMeshAnnotator.h -------------------------------------------------------------------------------- /src/UseCGAL_polyhedron_demo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/UseCGAL_polyhedron_demo.cmake -------------------------------------------------------------------------------- /src/Viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Viewer.cpp -------------------------------------------------------------------------------- /src/Viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/Viewer.h -------------------------------------------------------------------------------- /src/concurrent_mesher_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/concurrent_mesher_config.cfg -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/config.h -------------------------------------------------------------------------------- /src/create_sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/create_sphere.h -------------------------------------------------------------------------------- /src/image_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/image_interface.h -------------------------------------------------------------------------------- /src/include/CGAL/Dualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/include/CGAL/Dualizer.h -------------------------------------------------------------------------------- /src/include/CGAL/Make_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/include/CGAL/Make_bar.h -------------------------------------------------------------------------------- /src/include/CGAL/Make_quad_soup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/include/CGAL/Make_quad_soup.h -------------------------------------------------------------------------------- /src/include/CGAL/gocad_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/include/CGAL/gocad_io.h -------------------------------------------------------------------------------- /src/include/CGAL/translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/include/CGAL/translate.h -------------------------------------------------------------------------------- /src/include/Point_set_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/include/Point_set_3.h -------------------------------------------------------------------------------- /src/include/QMultipleInputDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/include/QMultipleInputDialog.h -------------------------------------------------------------------------------- /src/include/UI_point_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/include/UI_point_3.h -------------------------------------------------------------------------------- /src/include/id_printing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/include/id_printing.h -------------------------------------------------------------------------------- /src/javascript/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/javascript/lib.js -------------------------------------------------------------------------------- /src/javascript/tests/bad/include_missing_file.js: -------------------------------------------------------------------------------- 1 | include("missing-file") 2 | -------------------------------------------------------------------------------- /src/javascript/tests/bad/syntax_error.js: -------------------------------------------------------------------------------- 1 | syntax; error 2 | -------------------------------------------------------------------------------- /src/javascript/tests/bad/throw_error.js: -------------------------------------------------------------------------------- 1 | throw Error("Coucou") 2 | -------------------------------------------------------------------------------- /src/javascript/tests/bad/uncaught_cpp_exception_in_an_include.js: -------------------------------------------------------------------------------- 1 | include("uncaught_cpp_exception.js") 2 | -------------------------------------------------------------------------------- /src/javascript/tests/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/javascript/tests/run-tests.sh -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/polyhedron_demo_macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/polyhedron_demo_macros.cmake -------------------------------------------------------------------------------- /src/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/properties.h -------------------------------------------------------------------------------- /src/resources/3D_Annotator.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/3D_Annotator.xpm -------------------------------------------------------------------------------- /src/resources/3dgeoinfi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/3dgeoinfi_logo.png -------------------------------------------------------------------------------- /src/resources/3dgeoinfi_logo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/3dgeoinfi_logo.xpm -------------------------------------------------------------------------------- /src/resources/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/about.html -------------------------------------------------------------------------------- /src/resources/add_facet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/add_facet1.png -------------------------------------------------------------------------------- /src/resources/add_facet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/add_facet2.png -------------------------------------------------------------------------------- /src/resources/annotation_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/annotation_panel.png -------------------------------------------------------------------------------- /src/resources/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/back.png -------------------------------------------------------------------------------- /src/resources/boolean-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/boolean-diff.png -------------------------------------------------------------------------------- /src/resources/boolean-union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/boolean-union.png -------------------------------------------------------------------------------- /src/resources/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/bot.png -------------------------------------------------------------------------------- /src/resources/cgal_logo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/cgal_logo.xpm -------------------------------------------------------------------------------- /src/resources/check-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/check-off.png -------------------------------------------------------------------------------- /src/resources/check-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/check-off.svg -------------------------------------------------------------------------------- /src/resources/check-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/check-on.png -------------------------------------------------------------------------------- /src/resources/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/check.svg -------------------------------------------------------------------------------- /src/resources/context_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/context_menu.html -------------------------------------------------------------------------------- /src/resources/context_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/context_menu.png -------------------------------------------------------------------------------- /src/resources/convex-hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/convex-hull.png -------------------------------------------------------------------------------- /src/resources/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/down.png -------------------------------------------------------------------------------- /src/resources/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/editcopy.png -------------------------------------------------------------------------------- /src/resources/euler_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/euler_center.png -------------------------------------------------------------------------------- /src/resources/euler_facet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/euler_facet.png -------------------------------------------------------------------------------- /src/resources/euler_vertex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/euler_vertex.png -------------------------------------------------------------------------------- /src/resources/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/front.png -------------------------------------------------------------------------------- /src/resources/general_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/general_collapse.png -------------------------------------------------------------------------------- /src/resources/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/grid.png -------------------------------------------------------------------------------- /src/resources/help_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/help_button.png -------------------------------------------------------------------------------- /src/resources/hexahedron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/hexahedron.png -------------------------------------------------------------------------------- /src/resources/icosphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/icosphere.png -------------------------------------------------------------------------------- /src/resources/kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/kernel.png -------------------------------------------------------------------------------- /src/resources/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/left.png -------------------------------------------------------------------------------- /src/resources/left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/left_arrow.png -------------------------------------------------------------------------------- /src/resources/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/minus.png -------------------------------------------------------------------------------- /src/resources/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/plus.png -------------------------------------------------------------------------------- /src/resources/prism-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/prism-open.png -------------------------------------------------------------------------------- /src/resources/prism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/prism.png -------------------------------------------------------------------------------- /src/resources/pss_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/pss_box.png -------------------------------------------------------------------------------- /src/resources/pss_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/pss_diff.png -------------------------------------------------------------------------------- /src/resources/pss_freeform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/pss_freeform.png -------------------------------------------------------------------------------- /src/resources/pss_inter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/pss_inter.png -------------------------------------------------------------------------------- /src/resources/pss_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/pss_new.png -------------------------------------------------------------------------------- /src/resources/pss_rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/pss_rectangle.png -------------------------------------------------------------------------------- /src/resources/pss_region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/pss_region.png -------------------------------------------------------------------------------- /src/resources/pss_union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/pss_union.png -------------------------------------------------------------------------------- /src/resources/pyramid-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/pyramid-open.png -------------------------------------------------------------------------------- /src/resources/pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/pyramid.png -------------------------------------------------------------------------------- /src/resources/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/right.png -------------------------------------------------------------------------------- /src/resources/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/right_arrow.png -------------------------------------------------------------------------------- /src/resources/selection_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/selection_panel.html -------------------------------------------------------------------------------- /src/resources/selection_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/selection_panel.png -------------------------------------------------------------------------------- /src/resources/shader_c3t3.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/shader_c3t3.frag -------------------------------------------------------------------------------- /src/resources/shader_c3t3.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/shader_c3t3.vert -------------------------------------------------------------------------------- /src/resources/shader_flat.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/shader_flat.frag -------------------------------------------------------------------------------- /src/resources/shader_flat.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/shader_flat.geom -------------------------------------------------------------------------------- /src/resources/shader_flat.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/shader_flat.vert -------------------------------------------------------------------------------- /src/resources/shader_old_flat.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/shader_old_flat.frag -------------------------------------------------------------------------------- /src/resources/shader_spheres.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/shader_spheres.vert -------------------------------------------------------------------------------- /src/resources/shortcuts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/shortcuts.html -------------------------------------------------------------------------------- /src/resources/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/shortcuts.png -------------------------------------------------------------------------------- /src/resources/simplification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/simplification.png -------------------------------------------------------------------------------- /src/resources/tetrahedron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/tetrahedron.png -------------------------------------------------------------------------------- /src/resources/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/top.png -------------------------------------------------------------------------------- /src/resources/toplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/toplayer.png -------------------------------------------------------------------------------- /src/resources/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/resources/up.png -------------------------------------------------------------------------------- /src/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/texture.cpp -------------------------------------------------------------------------------- /src/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/texture.h -------------------------------------------------------------------------------- /src/triangulate_primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudelft3d/3D_Urban_Mesh_Annotator/HEAD/src/triangulate_primitive.h --------------------------------------------------------------------------------