diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-02-19 20:03:09 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-02-19 20:03:09 +0000 |
commit | a3585cf85c9736844017a63cc5034221f0df0e42 (patch) | |
tree | 2642925b5754ccfcc52360f8fcb9795a54e2c970 /math | |
parent | 6098626688964c00cdd540af30fb115e6faf7412 (diff) | |
download | ports-a3585cf85c9736844017a63cc5034221f0df0e42.tar.gz ports-a3585cf85c9736844017a63cc5034221f0df0e42.zip |
Notes
Diffstat (limited to 'math')
-rw-r--r-- | math/cgal/Makefile | 77 | ||||
-rw-r--r-- | math/cgal/distinfo | 15 | ||||
-rw-r--r-- | math/cgal/files/patch-CMakeLists.txt | 20 | ||||
-rw-r--r-- | math/cgal/files/patch-include_CGAL_number__type__basic.h | 12 | ||||
-rw-r--r-- | math/cgal/files/patch-install__cgal | 45 | ||||
-rw-r--r-- | math/cgal/files/patch-src_makefile__lib | 10 | ||||
-rw-r--r-- | math/cgal/files/patch-src_makefile__sharedlib | 10 | ||||
-rw-r--r-- | math/cgal/pkg-plist | 2259 |
8 files changed, 2314 insertions, 134 deletions
diff --git a/math/cgal/Makefile b/math/cgal/Makefile index 81f792d743f7..5c9a7e067872 100644 --- a/math/cgal/Makefile +++ b/math/cgal/Makefile @@ -6,68 +6,43 @@ # PORTNAME= cgal -PORTVERSION= 3.1 +PORTVERSION= 3.4 CATEGORIES= math -MASTER_SITES= ftp://ftp.mpi-sb.mpg.de/pub/outgoing/CGAL/ +MASTER_SITES= http://gforge.inria.fr/frs/download.php/15692/ DISTNAME= CGAL-${PORTVERSION} -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}-doc_html${EXTRACT_SUFX} +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ + ${DISTNAME}-doc_html${EXTRACT_SUFX} \ + ${PORTNAME}_manual.pdf +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}-doc_html${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= wenheping@gmail.com COMMENT= A computational geometry library BUILD_DEPENDS= ${LOCALBASE}/include/boost/tuple/tuple.hpp:${PORTSDIR}/devel/boost RUN_DEPENDS= ${LOCALBASE}/include/boost/tuple/tuple.hpp:${PORTSDIR}/devel/boost - -USE_LDCONFIG= yes -SHLIB_VERSION= 0 - +LIB_DEPENDS= GLU.1:${PORTSDIR}/graphics/libGLU \ + gmp.7:${PORTSDIR}/math/libgmp4 \ + mpfr.3:${PORTSDIR}/math/mpfr + +USE_LDCONFIG= yes +USE_CMAKE= yes +USE_QT_VER= 4 +CMAKE_USE_PTHREAD= yes +QT_COMPONENTS= corelib opengl qmake_build gui moc_build rcc_build HAS_CONFIGURE= yes -CONFIGURE_SCRIPT= install_cgal -CONFIGURE_ENV= SHLIB_VERSION="${SHLIB_VERSION}" -CONFIGURE_ARGS= -ni "${CXX}" --CUSTOM_CXXFLAGS "${CXXFLAGS} -I${LOCALBASE}/include" - -PLIST= ${WRKDIR}/pkg-plist -PLIST_FILES= lib/libCGAL.a lib/libCGAL.so lib/libCGAL.so.${SHLIB_VERSION} -PORTDOCS= * - -INVOKE= cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} - -post-patch: - @for d in ${WRKSRC}/include/CGAL ${WRKSRC}/examples ${WRKDIR}/doc_html/cgal_manual; do \ - ${FIND} $$d -name '*.orig' -delete; \ - done +DOCSDIR= ${PREFIX}/share/doc/CGAL-3.4 +CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib" -do-build: -.for t in lib sharedlib - @cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} makefile_${t} ${MAKE_ARGS} -.endfor - -pre-install: - @${RM} -f ${PLIST} - @${INVOKE} cgal-plist SRC=include/CGAL DST=include/CGAL - @${INVOKE} cgal-plist SRC=examples DST=%%EXAMPLESDIR%% +MAN1= cgal_create_cmake_script.1 -do-install: - ${INSTALL_DATA} ${WRKSRC}/src/libCGAL.a ${PREFIX}/lib - ${INSTALL_PROGRAM} ${WRKSRC}/src/libCGAL.so.${SHLIB_VERSION} ${PREFIX}/lib - ${LN} -sf libCGAL.so.${SHLIB_VERSION} ${PREFIX}/lib/libCGAL.so - @${INVOKE} cgal-install SRC=${WRKSRC}/include/CGAL DST=${PREFIX}/include/CGAL - @${INVOKE} cgal-install SRC=${WRKSRC}/examples DST=${EXAMPLESDIR} +post-install: .if !defined(NOPORTDOCS) - @${INVOKE} cgal-install SRC=${WRKDIR}/doc_html/cgal_manual DST=${DOCSDIR} + ${MKDIR} ${DOCSDIR} +.for i in AUTHORS CHANGES LICENSE LICENSE.FREE_USE LICENSE.LGPL LICENSE.QPL + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor + ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}_manual.pdf ${DOCSDIR} .endif - -cgal-plist: - @cd ${WRKSRC}/${SRC} && \ - ${FIND} * -type f | ${SORT} \ - | ${SED} -e 's|^|${DST}/|' >> ${PLIST} && \ - ${FIND} * -type d | ${SORT} -r \ - | ${SED} -e 's|^|@dirrm ${DST}/|' >> ${PLIST} - @${ECHO_CMD} '@dirrm ${DST}' >> ${PLIST} - -cgal-install: - cd ${SRC} && \ - ${FIND} * -type d -exec ${MKDIR} "${DST}/{}" \; && \ - ${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${DST}/{}" \; + ${INSTALL_MAN} ${WRKSRC}/auxiliary/cgal_create_cmake_script.1 ${PREFIX}/man/man1/ .include <bsd.port.mk> diff --git a/math/cgal/distinfo b/math/cgal/distinfo index f60301e5e4e2..01333e65f1d5 100644 --- a/math/cgal/distinfo +++ b/math/cgal/distinfo @@ -1,6 +1,9 @@ -MD5 (CGAL-3.1.tar.gz) = b37fb174c18f7beab197a470554007d0 -SHA256 (CGAL-3.1.tar.gz) = 4e516b12fe870fffa734925e42eb82d33b70628026f04bc15cd42212a9551f95 -SIZE (CGAL-3.1.tar.gz) = 9177453 -MD5 (CGAL-3.1-doc_html.tar.gz) = 286b32a674576a791b7c30d23244c4cb -SHA256 (CGAL-3.1-doc_html.tar.gz) = dd1d592fc48e80f10f1fa8c7b89a011188e602193e0db8c60187ab25ede7648d -SIZE (CGAL-3.1-doc_html.tar.gz) = 3185328 +MD5 (CGAL-3.4.tar.gz) = e4b8cbd5ec5cd3ebadab6d2520a01a76 +SHA256 (CGAL-3.4.tar.gz) = ab1f8db39641b2ce2047069434ecfbe9c6a62a8686772ae09d936cdb9bc926be +SIZE (CGAL-3.4.tar.gz) = 10667716 +MD5 (CGAL-3.4-doc_html.tar.gz) = e4b8cbd5ec5cd3ebadab6d2520a01a76 +SHA256 (CGAL-3.4-doc_html.tar.gz) = ab1f8db39641b2ce2047069434ecfbe9c6a62a8686772ae09d936cdb9bc926be +SIZE (CGAL-3.4-doc_html.tar.gz) = 10667716 +MD5 (cgal_manual.pdf) = e4b8cbd5ec5cd3ebadab6d2520a01a76 +SHA256 (cgal_manual.pdf) = ab1f8db39641b2ce2047069434ecfbe9c6a62a8686772ae09d936cdb9bc926be +SIZE (cgal_manual.pdf) = 10667716 diff --git a/math/cgal/files/patch-CMakeLists.txt b/math/cgal/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..d064dfd56de1 --- /dev/null +++ b/math/cgal/files/patch-CMakeLists.txt @@ -0,0 +1,20 @@ +--- CMakeLists.txt.orig 2009-02-18 18:30:54.000000000 +0800 ++++ CMakeLists.txt 2009-02-18 18:31:34.000000000 +0800 +@@ -397,7 +397,7 @@ + # WARNING: Use only relative paths; full paths break CPack! + # DESTINATION option is mandatory; skipping it breaks CPack! + +-install(FILES AUTHORS CHANGES LICENSE LICENSE.FREE_USE LICENSE.LGPL LICENSE.QPL DESTINATION ${CGAL_INSTALL_DOC_DIR} ) ++#install(FILES AUTHORS CHANGES LICENSE LICENSE.FREE_USE LICENSE.LGPL LICENSE.QPL DESTINATION ${CGAL_INSTALL_DOC_DIR} ) + + + install(DIRECTORY include/CGAL DESTINATION ${CGAL_INSTALL_INC_DIR} ) +@@ -435,7 +435,7 @@ + install(DIRECTORY src DESTINATION ${CGAL_INSTALL_ROOT_DIR} ) + else() + install(FILES ${CMAKE_BINARY_DIR}/config/CGALConfig.cmake DESTINATION ${CGAL_INSTALL_CMAKE_DIR} ) +- install(FILES auxiliary/cgal_create_cmake_script.1 DESTINATION ${CGAL_INSTALL_MAN_DIR} ) ++# install(FILES auxiliary/cgal_create_cmake_script.1 DESTINATION ${CGAL_INSTALL_MAN_DIR} ) + endif() + + diff --git a/math/cgal/files/patch-include_CGAL_number__type__basic.h b/math/cgal/files/patch-include_CGAL_number__type__basic.h deleted file mode 100644 index 31890823dcca..000000000000 --- a/math/cgal/files/patch-include_CGAL_number__type__basic.h +++ /dev/null @@ -1,12 +0,0 @@ ---- include/CGAL/number_type_basic.h.orig Mon Apr 10 07:51:20 2006 -+++ include/CGAL/number_type_basic.h Mon Apr 10 07:51:36 2006 -@@ -404,7 +404,9 @@ - // Integer and Double from _QP_solver - - CGAL_END_NAMESPACE -+#ifdef CGAL_USE_GMP - #include <CGAL/_QP_solver/Double.h> -+#endif - CGAL_BEGIN_NAMESPACE - - diff --git a/math/cgal/files/patch-install__cgal b/math/cgal/files/patch-install__cgal deleted file mode 100644 index 57359c7a460a..000000000000 --- a/math/cgal/files/patch-install__cgal +++ /dev/null @@ -1,45 +0,0 @@ ---- install_cgal.orig Mon Dec 20 18:06:41 2004 -+++ install_cgal Mon Apr 10 10:36:58 2006 -@@ -1011,7 +1011,7 @@ - ;; - *) - #### settings for unknown compiler -- CGAL_SHARED_LIB_CREATE="`compiler_bin` -G" -+ CGAL_SHARED_LIB_CREATE="`compiler_bin` -shared" - ;; - esac - # Remove *.moc files too, on all platforms -@@ -1339,6 +1339,8 @@ - cleanup_after_compile - cleanup_after_link_run - done -+ sed -e "s|CGAL/compiler_config\.h|CGAL/config/${CGAL_OS_COMPILER}/&|" ${CGAL_INCL_DIR}/CGAL/config.h > ${CGAL_INCL_DIR}/CGAL/config.h.tmp -+ mv -f ${CGAL_INCL_DIR}/CGAL/config.h.tmp ${CGAL_INCL_DIR}/CGAL/config.h - cd ${CGAL_DIR} - CONFIG_TEST_PASSED='y' - } -@@ -5675,7 +5677,7 @@ - # CGAL_LIB_CXXFLAGS - # - ${_printf} "%s\\\\\n" "CGAL_LIB_CXXFLAGS = " >> ${FILE} -- makefile_print_line "${CGAL_LIB_CXXFLAGS} -O2" >> ${FILE} -+ makefile_print_line "${CGAL_LIB_CXXFLAGS}" >> ${FILE} - ${_printf} "\t%s\n" "\$(CGAL_CXXFLAGS)" >> ${FILE} - - # -@@ -5693,13 +5695,13 @@ - # - # CGAL_SHARED_LIB - # -- ${_printf} "%s\n" "CGAL_SHARED_LIB = libCGAL${SHARED_LIB_EXT}" >> ${FILE} -+ ${_printf} "%s\n" "CGAL_SHARED_LIB = libCGAL${SHARED_LIB_EXT}.${SHLIB_VERSION}" >> ${FILE} - - # - # CGAL_SHARED_LIB_CXXFLAGS - # - ${_printf} "%s\\\\\n" "CGAL_SHARED_LIB_CXXFLAGS = " >> ${FILE} -- makefile_print_line "${CGAL_SHARED_LIB_CXXFLAGS} -O2" >> ${FILE} -+ makefile_print_line "${CGAL_SHARED_LIB_CXXFLAGS}" >> ${FILE} - ${_printf} "\t%s\n" "\$(CGAL_CXXFLAGS)" >> ${FILE} - - # diff --git a/math/cgal/files/patch-src_makefile__lib b/math/cgal/files/patch-src_makefile__lib deleted file mode 100644 index 559c124a2cc0..000000000000 --- a/math/cgal/files/patch-src_makefile__lib +++ /dev/null @@ -1,10 +0,0 @@ ---- src/makefile_lib.orig Mon Apr 10 07:54:15 2006 -+++ src/makefile_lib Mon Apr 10 07:54:20 2006 -@@ -51,7 +51,6 @@ - #---------------------------------------------------------------------# - - lib: lib_no_install -- mv $(CGAL_LIB) $(CGAL_LIB_DESTINATION) - - lib_no_install: $(CGAL_OBJECTS) $(CGAL_EXTRA_OBJECTS) - $(CGAL_LIB_CREATE)$(CGAL_LIB) \ diff --git a/math/cgal/files/patch-src_makefile__sharedlib b/math/cgal/files/patch-src_makefile__sharedlib deleted file mode 100644 index dd131d547f40..000000000000 --- a/math/cgal/files/patch-src_makefile__sharedlib +++ /dev/null @@ -1,10 +0,0 @@ ---- src/makefile_sharedlib.orig Mon Apr 10 07:54:27 2006 -+++ src/makefile_sharedlib Mon Apr 10 07:54:42 2006 -@@ -54,7 +54,6 @@ - $(CGAL_SHARED_LIB_CREATE)$(CGAL_SHARED_LIB) \ - `ls *$(OBJ_EXT) | awk '{for (i=1; i<=NF;++i){printf "$(CGAL_OBJ_PREFIX)";print $$i}}'`\ - $(CGAL_SHARED_LIB_LDFLAGS) -- mv $(CGAL_SHARED_LIB) '$(CGAL_LIB_DESTINATION)' - rm $(CGAL_OBJECTS) $(CGAL_EXTRA_OBJECTS) - - diff --git a/math/cgal/pkg-plist b/math/cgal/pkg-plist new file mode 100644 index 000000000000..1c35e278fc25 --- /dev/null +++ b/math/cgal/pkg-plist @@ -0,0 +1,2259 @@ +bin/cgal_create_cmake_script +bin/cgal_make_macosx_app +lib/CGAL/CGALConfig.cmake +lib/CGAL/CGALConfig_binary.cmake.in +lib/CGAL/CGALConfig_install.cmake.fhs.in +lib/CGAL/CGALConfig_install.cmake.source.in +lib/CGAL/CGAL_CheckCXXFileRuns.cmake +lib/CGAL/CGAL_Common.cmake +lib/CGAL/CGAL_CreateSingleSourceCGALProgram.cmake +lib/CGAL/CGAL_FindPackageHandleStandardArgs.cmake +lib/CGAL/CGAL_GeneratorSpecificSettings.cmake +lib/CGAL/CGAL_Locate_CGAL_TAUCS.cmake +lib/CGAL/CGAL_Macros.cmake +lib/CGAL/CGAL_SetupBoost.cmake +lib/CGAL/CGAL_SetupDependencies.cmake +lib/CGAL/CGAL_SetupFlags.cmake +lib/CGAL/CGAL_SetupGMP.cmake +lib/CGAL/CGAL_SetupGMPXX.cmake +lib/CGAL/CGAL_SetupLEDA.cmake +lib/CGAL/CGAL_UseBLAS.cmake +lib/CGAL/CGAL_UseLAPACK.cmake +lib/CGAL/CGAL_UseTAUCS.cmake +lib/CGAL/FindBLAS.cmake +lib/CGAL/FindBoost.cmake +lib/CGAL/FindCGAL.cmake +lib/CGAL/FindCGAL_CORE.cmake +lib/CGAL/FindCORE.cmake +lib/CGAL/FindF2C.cmake +lib/CGAL/FindGMP.cmake +lib/CGAL/FindGMPXX.cmake +lib/CGAL/FindLAPACK.cmake +lib/CGAL/FindLEDA.cmake +lib/CGAL/FindMPFR.cmake +lib/CGAL/FindOpenGL.cmake +lib/CGAL/FindPackageMessage.cmake +lib/CGAL/FindQGLViewer.cmake +lib/CGAL/FindQt3-patched.cmake +lib/CGAL/FindQt4.cmake +lib/CGAL/FindTAUCS.cmake +lib/CGAL/Qt3Macros-patched.cmake +lib/CGAL/UseCGAL.cmake +lib/libCGAL_Core.so +lib/libCGAL_Core.so.3 +lib/libCGAL_Core.so.3.0.0 +lib/libCGAL_Qt4.so +lib/libCGAL_Qt4.so.3 +lib/libCGAL_Qt4.so.3.0.0 +lib/libCGAL.so +lib/libCGAL.so.3 +lib/libCGAL.so.3.0.0 +lib/libCGAL_ImageIO.so +lib/libCGAL_ImageIO.so.3 +lib/libCGAL_ImageIO.so.3.0.0 +lib/libCGAL_PDB.so +lib/libCGAL_PDB.so.3 +lib/libCGAL_PDB.so.3.0.0 +@dirrm lib/CGAL +include/CGAL/AABB_tree/AABB_node.h +include/CGAL/AABB_tree/AABB_polyhedral_oracle.h +include/CGAL/AABB_tree/AABB_tree.h +include/CGAL/AABB_tree/Bbox_3_Bbox_3_do_intersect.h +include/CGAL/AABB_tree/Line_3_Bbox_3_do_intersect.h +include/CGAL/AABB_tree/Plane_3_Bbox_3_do_intersect.h +include/CGAL/AABB_tree/Ray_3_Bbox_3_do_intersect.h +include/CGAL/AABB_tree/Segment_3_Bbox_3_do_intersect.h +include/CGAL/AABB_tree/Sphere_3_Bbox_do_intersect.h +include/CGAL/AABB_tree/Triangle_3_Bbox_3_do_intersect.h +include/CGAL/Aff_transformation_2.h +include/CGAL/Aff_transformation_3.h +include/CGAL/Algebraic_extension_traits.h +include/CGAL/Algebraic_kernel_converter.h +include/CGAL/Algebraic_kernel_for_circles/function_objects_on_roots_and_polynomials_2_2.h +include/CGAL/Algebraic_kernel_for_circles/internal_functions_comparison_root_for_circles_2_2.h +include/CGAL/Algebraic_kernel_for_circles/internal_functions_on_roots_and_polynomial_1_2_and_2_2.h +include/CGAL/Algebraic_kernel_for_circles/internal_functions_on_roots_and_polynomials_2_2.h +include/CGAL/Algebraic_kernel_for_circles_2_2.h +include/CGAL/Algebraic_kernel_for_spheres/function_objects_on_roots_and_polynomials_2_3.h +include/CGAL/Algebraic_kernel_for_spheres/internal_functions_comparison_root_for_spheres_2_3.h +include/CGAL/Algebraic_kernel_for_spheres/internal_functions_on_roots_and_polynomial_1_3_and_2_3.h +include/CGAL/Algebraic_kernel_for_spheres/internal_functions_on_roots_and_polynomials_1_3.h +include/CGAL/Algebraic_kernel_for_spheres/internal_functions_on_roots_and_polynomials_2_3.h +include/CGAL/Algebraic_kernel_for_spheres_2_3.h +include/CGAL/Algebraic_structure_traits.h +include/CGAL/Alpha_shape_2.h +include/CGAL/Alpha_shape_3.h +include/CGAL/Alpha_shape_cell_base_3.h +include/CGAL/Alpha_shape_euclidean_traits_2.h +include/CGAL/Alpha_shape_euclidean_traits_3.h +include/CGAL/Alpha_shape_face_base_2.h +include/CGAL/Alpha_shape_vertex_base_2.h +include/CGAL/Alpha_shape_vertex_base_3.h +include/CGAL/Apollonius_graph_2/Apollonius_graph_2_impl.h +include/CGAL/Apollonius_graph_2/Apollonius_graph_hierarchy_2_impl.h +include/CGAL/Apollonius_graph_2/Bounded_side_of_ccw_circle_C2.h +include/CGAL/Apollonius_graph_2/Compare_weight_2.h +include/CGAL/Apollonius_graph_2/Compare_x_2.h +include/CGAL/Apollonius_graph_2/Compare_y_2.h +include/CGAL/Apollonius_graph_2/Constructions_C2.h +include/CGAL/Apollonius_graph_2/Constructions_ftC2.h +include/CGAL/Apollonius_graph_2/Constructions_rtH2.h +include/CGAL/Apollonius_graph_2/Finite_edge_test8_C2.h +include/CGAL/Apollonius_graph_2/Finite_edge_test_C2.h +include/CGAL/Apollonius_graph_2/Incircle8_C2.h +include/CGAL/Apollonius_graph_2/Incircle_C2.h +include/CGAL/Apollonius_graph_2/Infinite_edge_test_C2.h +include/CGAL/Apollonius_graph_2/Is_degenerate_edge_C2.h +include/CGAL/Apollonius_graph_2/Is_hidden_C2.h +include/CGAL/Apollonius_graph_2/Kernel_wrapper_2.h +include/CGAL/Apollonius_graph_2/Orientation8_C2.h +include/CGAL/Apollonius_graph_2/Orientation_2.h +include/CGAL/Apollonius_graph_2/Oriented_side_of_bisector_C2.h +include/CGAL/Apollonius_graph_2/Predicate_constructions_C2.h +include/CGAL/Apollonius_graph_2/Predicates_C2.h +include/CGAL/Apollonius_graph_2/Traits_wrapper_2.h +include/CGAL/Apollonius_graph_2/basic.h +include/CGAL/Apollonius_graph_2/check_filter.h +include/CGAL/Apollonius_graph_2/comparator_profiler.h +include/CGAL/Apollonius_graph_2/compare_quadratic.h +include/CGAL/Apollonius_graph_2/new_traits/Apollonius_graph_mixed_filtered_traits_2.h +include/CGAL/Apollonius_graph_2/new_traits/Apollonius_graph_mixed_traits_2.h +include/CGAL/Apollonius_graph_2/new_traits/Apollonius_graph_new_filtered_traits_2.h +include/CGAL/Apollonius_graph_2/new_traits/Apollonius_graph_new_traits_2.h +include/CGAL/Apollonius_graph_2/new_traits/Conflict_2.h +include/CGAL/Apollonius_graph_2/new_traits/Edge_conflict_2.h +include/CGAL/Apollonius_graph_2/new_traits/Finite_edge_conflict_2.h +include/CGAL/Apollonius_graph_2/new_traits/Infinite_edge_conflict_2.h +include/CGAL/Apollonius_graph_2/new_traits/New_predicates_C2.h +include/CGAL/Apollonius_graph_2/new_traits/Orientation_2.h +include/CGAL/Apollonius_graph_2/new_traits/Vertex_conflict_2.h +include/CGAL/Apollonius_graph_2/predicate_profiler.h +include/CGAL/Apollonius_graph_2/short_names_2.h +include/CGAL/Apollonius_graph_2/uncertain/Apollonius_graph_uncertain_filtered_traits_2.h +include/CGAL/Apollonius_graph_2/uncertain/Uncertain_is_hidden_C2.h +include/CGAL/Apollonius_graph_2/uncertain/Uncertain_oriented_side_of_bisector_C2.h +include/CGAL/Apollonius_graph_2/uncertain/Uncertain_vertex_conflict_2.h +include/CGAL/Apollonius_graph_2/uncertain/uncertain_functions_on_signs.h +include/CGAL/Apollonius_graph_2.h +include/CGAL/Apollonius_graph_adaptation_policies_2.h +include/CGAL/Apollonius_graph_adaptation_traits_2.h +include/CGAL/Apollonius_graph_data_structure_2.h +include/CGAL/Apollonius_graph_filtered_traits_2.h +include/CGAL/Apollonius_graph_hierarchy_2.h +include/CGAL/Apollonius_graph_hierarchy_vertex_base_2.h +include/CGAL/Apollonius_graph_traits_2.h +include/CGAL/Apollonius_graph_vertex_base_2.h +include/CGAL/Apollonius_site_2.h +include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_configure.h +include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_debug.h +include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_impl.h +include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation.h +include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation_impl.h +include/CGAL/Approximate_min_ellipsoid_d.h +include/CGAL/Approximate_min_ellipsoid_d_traits_2.h +include/CGAL/Approximate_min_ellipsoid_d_traits_3.h +include/CGAL/Approximate_min_ellipsoid_d_traits_d.h +include/CGAL/Arithmetic_kernel.h +include/CGAL/Arr_Bezier_curve_traits_2.h +include/CGAL/Arr_accessor.h +include/CGAL/Arr_arc_on_sphere_trait_2.h +include/CGAL/Arr_batched_point_location.h +include/CGAL/Arr_bounded_planar_topology_traits_2.h +include/CGAL/Arr_circle_segment_traits_2.h +include/CGAL/Arr_circular_arc_traits_2.h +include/CGAL/Arr_circular_line_arc_traits_2.h +include/CGAL/Arr_conic_traits_2.h +include/CGAL/Arr_consolidated_curve_data_traits_2.h +include/CGAL/Arr_counting_traits_2.h +include/CGAL/Arr_curve_data_traits_2.h +include/CGAL/Arr_dcel_base.h +include/CGAL/Arr_default_dcel.h +include/CGAL/Arr_default_overlay_traits.h +include/CGAL/Arr_enums.h +include/CGAL/Arr_extended_dcel.h +include/CGAL/Arr_face_map.h +include/CGAL/Arr_geodesic_arc_on_sphere_traits_2.h +include/CGAL/Arr_geometry_traits/Arr_plane_3.h +include/CGAL/Arr_geometry_traits/Bezier_bounding_rational_traits.h +include/CGAL/Arr_geometry_traits/Bezier_cache.h +include/CGAL/Arr_geometry_traits/Bezier_curve_2.h +include/CGAL/Arr_geometry_traits/Bezier_point_2.h +include/CGAL/Arr_geometry_traits/Bezier_x_monotone_2.h +include/CGAL/Arr_geometry_traits/Circle_segment_2.h +include/CGAL/Arr_geometry_traits/Conic_arc_2.h +include/CGAL/Arr_geometry_traits/Conic_intersections_2.h +include/CGAL/Arr_geometry_traits/Conic_point_2.h +include/CGAL/Arr_geometry_traits/Conic_x_monotone_arc_2.h +include/CGAL/Arr_geometry_traits/Consolidated_curve_data_aux.h +include/CGAL/Arr_geometry_traits/Curve_data_aux.h +include/CGAL/Arr_geometry_traits/Hyperbolic_arc_2.h +include/CGAL/Arr_geometry_traits/One_root_number.h +include/CGAL/Arr_geometry_traits/Polyline_2.h +include/CGAL/Arr_geometry_traits/Rational_arc_2.h +include/CGAL/Arr_geometry_traits/Segment_assertions.h +include/CGAL/Arr_geometry_traits/de_Casteljau_2.h +include/CGAL/Arr_hyperbolic_arc_traits_2.h +include/CGAL/Arr_landmarks_point_location.h +include/CGAL/Arr_line_arc_traits_2.h +include/CGAL/Arr_linear_traits_2.h +include/CGAL/Arr_naive_point_location.h +include/CGAL/Arr_non_caching_segment_basic_traits_2.h +include/CGAL/Arr_non_caching_segment_traits_2.h +include/CGAL/Arr_observer.h +include/CGAL/Arr_overlay.h +include/CGAL/Arr_overlay_2.h +include/CGAL/Arr_point_location/Arr_batched_point_location_traits_2.h +include/CGAL/Arr_point_location/Arr_landmarks_pl_impl.h +include/CGAL/Arr_point_location/Arr_lm_generator_base.h +include/CGAL/Arr_point_location/Arr_lm_grid_generator.h +include/CGAL/Arr_point_location/Arr_lm_halton_generator.h +include/CGAL/Arr_point_location/Arr_lm_middle_edges_generator.h +include/CGAL/Arr_point_location/Arr_lm_nearest_neighbor.h +include/CGAL/Arr_point_location/Arr_lm_random_generator.h +include/CGAL/Arr_point_location/Arr_lm_specified_points_generator.h +include/CGAL/Arr_point_location/Arr_lm_vertices_generator.h +include/CGAL/Arr_point_location/Arr_naive_point_location_impl.h +include/CGAL/Arr_point_location/Arr_simple_point_location_impl.h +include/CGAL/Arr_point_location/Arr_trapezoid_ric_pl_impl.h +include/CGAL/Arr_point_location/Arr_triangulation_pl_functions.h +include/CGAL/Arr_point_location/Arr_triangulation_pl_impl.h +include/CGAL/Arr_point_location/Arr_walk_along_line_pl_impl.h +include/CGAL/Arr_point_location/Td_X_trapezoid.h +include/CGAL/Arr_point_location/Td_dag.h +include/CGAL/Arr_point_location/Td_ninetuple.h +include/CGAL/Arr_point_location/Td_predicates.h +include/CGAL/Arr_point_location/Td_traits.h +include/CGAL/Arr_point_location/Td_traits_functions.h +include/CGAL/Arr_point_location/Trapezoidal_decomposition_2.h +include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_iostream.h +include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_misc.h +include/CGAL/Arr_polyline_traits_2.h +include/CGAL/Arr_rational_arc_traits_2.h +include/CGAL/Arr_segment_traits_2.h +include/CGAL/Arr_simple_point_location.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_arr_dcel.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_initializer_visitor.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_overlay.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_polyhedron_3.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_spherical_gaussian_map_3.h +include/CGAL/Arr_spherical_topology_traits_2.h +include/CGAL/Arr_tags.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_batched_pl_helper.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_construction_helper.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_insertion_helper.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_overlay_helper.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_topology_traits_2_impl.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_vert_decomp_helper.h +include/CGAL/Arr_topology_traits/Arr_inc_insertion_zone_visitor.h +include/CGAL/Arr_topology_traits/Arr_planar_topology_traits_base_2.h +include/CGAL/Arr_topology_traits/Arr_spherical_batched_pl_helper.h +include/CGAL/Arr_topology_traits/Arr_spherical_construction_helper.h +include/CGAL/Arr_topology_traits/Arr_spherical_insertion_helper.h +include/CGAL/Arr_topology_traits/Arr_spherical_overlay_helper.h +include/CGAL/Arr_topology_traits/Arr_spherical_topology_traits_2_impl.h +include/CGAL/Arr_topology_traits/Arr_spherical_vert_decomp_helper.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_batched_pl_helper.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_construction_helper.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_insertion_helper.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_overlay_helper.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_topology_traits_2_impl.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_vert_decomp_helper.h +include/CGAL/Arr_tracing_traits_2.h +include/CGAL/Arr_trapezoid_ric_point_location.h +include/CGAL/Arr_triangulation_point_location.h +include/CGAL/Arr_unb_planar_topology_traits_2.h +include/CGAL/Arr_vertex_map.h +include/CGAL/Arr_vertical_decomposition_2.h +include/CGAL/Arr_walk_along_line_point_location.h +include/CGAL/Arrangement_2/Arr_compute_zone_visitor.h +include/CGAL/Arrangement_2/Arr_default_planar_topology.h +include/CGAL/Arrangement_2/Arr_do_intersect_zone_visitor.h +include/CGAL/Arrangement_2/Arr_on_surface_with_history_2_impl.h +include/CGAL/Arrangement_2/Arr_traits_adaptor_2.h +include/CGAL/Arrangement_2/Arr_with_history_accessor.h +include/CGAL/Arrangement_2/Arrangement_2_iterators.h +include/CGAL/Arrangement_2/Arrangement_on_surface_2_global.h +include/CGAL/Arrangement_2/Arrangement_on_surface_2_impl.h +include/CGAL/Arrangement_2/Arrangement_zone_2_impl.h +include/CGAL/Arrangement_2/Open_hash.h +include/CGAL/Arrangement_2.h +include/CGAL/Arrangement_on_surface_2.h +include/CGAL/Arrangement_on_surface_with_history_2.h +include/CGAL/Arrangement_with_history_2.h +include/CGAL/Arrangement_zone_2.h +include/CGAL/Barycentric_mapping_parameterizer_3.h +include/CGAL/Basic_sweep_line_2.h +include/CGAL/Bbox_2.h +include/CGAL/Bbox_2_Line_2_intersection.h +include/CGAL/Bbox_2_Ray_2_intersection.h +include/CGAL/Bbox_2_intersection.h +include/CGAL/Bbox_3.h +include/CGAL/Bigfloat_interval_traits.h +include/CGAL/Boolean_set_operations_2/Bso_internal_functions.h +include/CGAL/Boolean_set_operations_2/Ccb_curve_iterator.h +include/CGAL/Boolean_set_operations_2/Curve_with_halfedge.h +include/CGAL/Boolean_set_operations_2/Gps_agg_meta_traits.h +include/CGAL/Boolean_set_operations_2/Gps_agg_op.h +include/CGAL/Boolean_set_operations_2/Gps_agg_op_sweep.h +include/CGAL/Boolean_set_operations_2/Gps_agg_op_visitor.h +include/CGAL/Boolean_set_operations_2/Gps_base_functor.h +include/CGAL/Boolean_set_operations_2/Gps_bfs_base_visitor.h +include/CGAL/Boolean_set_operations_2/Gps_bfs_intersection_visitor.h +include/CGAL/Boolean_set_operations_2/Gps_bfs_join_visitor.h +include/CGAL/Boolean_set_operations_2/Gps_bfs_scanner.h +include/CGAL/Boolean_set_operations_2/Gps_bfs_xor_visitor.h +include/CGAL/Boolean_set_operations_2/Gps_default_dcel.h +include/CGAL/Boolean_set_operations_2/Gps_default_traits.h +include/CGAL/Boolean_set_operations_2/Gps_difference_functor.h +include/CGAL/Boolean_set_operations_2/Gps_do_intersect_functor.h +include/CGAL/Boolean_set_operations_2/Gps_insertion_meta_traits.h +include/CGAL/Boolean_set_operations_2/Gps_intersection_functor.h +include/CGAL/Boolean_set_operations_2/Gps_join_functor.h +include/CGAL/Boolean_set_operations_2/Gps_merge.h +include/CGAL/Boolean_set_operations_2/Gps_polygon_simplifier.h +include/CGAL/Boolean_set_operations_2/Gps_polygon_validation.h +include/CGAL/Boolean_set_operations_2/Gps_simplifier_traits.h +include/CGAL/Boolean_set_operations_2/Gps_sym_diff_functor.h +include/CGAL/Boolean_set_operations_2/Gps_traits_adaptor.h +include/CGAL/Boolean_set_operations_2/Gps_traits_decorator.h +include/CGAL/Boolean_set_operations_2/Gps_utils.h +include/CGAL/Boolean_set_operations_2/Point_with_vertex.h +include/CGAL/Boolean_set_operations_2/Polygon_2_curve_iterator.h +include/CGAL/Boolean_set_operations_2.h +include/CGAL/Bounded_kernel.h +include/CGAL/Box_intersection_d/Box_d.h +include/CGAL/Box_intersection_d/Box_traits_d.h +include/CGAL/Box_intersection_d/Box_with_handle_d.h +include/CGAL/Box_intersection_d/box_limits.h +include/CGAL/Box_intersection_d/segment_tree.h +include/CGAL/CORE/BigFloat.h +include/CGAL/CORE/BigFloatRep.h +include/CGAL/CORE/BigInt.h +include/CGAL/CORE/BigRat.h +include/CGAL/CORE/CORE.h +include/CGAL/CORE/Config.h +include/CGAL/CORE/CoreAux.h +include/CGAL/CORE/CoreDefs.h +include/CGAL/CORE/Expr.h +include/CGAL/CORE/ExprRep.h +include/CGAL/CORE/Filter.h +include/CGAL/CORE/Gmp.h +include/CGAL/CORE/Impl.h +include/CGAL/CORE/MemoryPool.h +include/CGAL/CORE/Promote.h +include/CGAL/CORE/Real.h +include/CGAL/CORE/RealRep.h +include/CGAL/CORE/RefCount.h +include/CGAL/CORE/Timer.h +include/CGAL/CORE/extLong.h +include/CGAL/CORE/geom2d/circle2d.h +include/CGAL/CORE/geom2d/line2d.h +include/CGAL/CORE/geom2d/point2d.h +include/CGAL/CORE/geom2d/segment2d.h +include/CGAL/CORE/geom3d/line3d.h +include/CGAL/CORE/geom3d/plane3d.h +include/CGAL/CORE/geom3d/point3d.h +include/CGAL/CORE/geom3d/polygon3d.h +include/CGAL/CORE/geom3d/segment3d.h +include/CGAL/CORE/geom3d/triangle3d.h +include/CGAL/CORE/geombase.h +include/CGAL/CORE/geometry2d.h +include/CGAL/CORE/geometry3d.h +include/CGAL/CORE/linearAlgebra.h +include/CGAL/CORE/poly/Curves.h +include/CGAL/CORE/poly/Curves.tcc +include/CGAL/CORE/poly/Poly.h +include/CGAL/CORE/poly/Poly.tcc +include/CGAL/CORE/poly/Sturm.h +include/CGAL/CORE_BigFloat.h +include/CGAL/CORE_BigInt.h +include/CGAL/CORE_BigRat.h +include/CGAL/CORE_Expr.h +include/CGAL/CORE_algebraic_number_traits.h +include/CGAL/CORE_coercion_traits.h +include/CGAL/Cache.h +include/CGAL/Cartesian/Aff_transformation_2.h +include/CGAL/Cartesian/Aff_transformation_3.h +include/CGAL/Cartesian/Aff_transformation_rep_2.h +include/CGAL/Cartesian/Aff_transformation_rep_3.h +include/CGAL/Cartesian/Cartesian_base.h +include/CGAL/Cartesian/Circle_2.h +include/CGAL/Cartesian/Circle_3.h +include/CGAL/Cartesian/Data_accessor_2.h +include/CGAL/Cartesian/Direction_2.h +include/CGAL/Cartesian/Direction_3.h +include/CGAL/Cartesian/Iso_cuboid_3.h +include/CGAL/Cartesian/Iso_rectangle_2.h +include/CGAL/Cartesian/Line_2.h +include/CGAL/Cartesian/Line_3.h +include/CGAL/Cartesian/MatrixC33.h +include/CGAL/Cartesian/Plane_3.h +include/CGAL/Cartesian/Point_2.h +include/CGAL/Cartesian/Point_3.h +include/CGAL/Cartesian/Ray_2.h +include/CGAL/Cartesian/Ray_3.h +include/CGAL/Cartesian/Rotation_rep_2.h +include/CGAL/Cartesian/Scaling_rep_2.h +include/CGAL/Cartesian/Scaling_rep_3.h +include/CGAL/Cartesian/Segment_2.h +include/CGAL/Cartesian/Segment_3.h +include/CGAL/Cartesian/Sphere_3.h +include/CGAL/Cartesian/Tetrahedron_3.h +include/CGAL/Cartesian/Translation_rep_2.h +include/CGAL/Cartesian/Translation_rep_3.h +include/CGAL/Cartesian/Triangle_2.h +include/CGAL/Cartesian/Triangle_3.h +include/CGAL/Cartesian/Vector_2.h +include/CGAL/Cartesian/Vector_3.h +include/CGAL/Cartesian/basic_constructions_2.h +include/CGAL/Cartesian/basic_constructions_3.h +include/CGAL/Cartesian/ft_constructions_2.h +include/CGAL/Cartesian/ft_constructions_3.h +include/CGAL/Cartesian/function_objects.h +include/CGAL/Cartesian/line_constructions_2.h +include/CGAL/Cartesian/plane_constructions_3.h +include/CGAL/Cartesian/point_constructions_2.h +include/CGAL/Cartesian/point_constructions_3.h +include/CGAL/Cartesian/predicates_on_directions_2.h +include/CGAL/Cartesian/predicates_on_planes_3.h +include/CGAL/Cartesian/predicates_on_points_2.h +include/CGAL/Cartesian/predicates_on_points_3.h +include/CGAL/Cartesian/solve_3.h +include/CGAL/Cartesian.h +include/CGAL/Cartesian_converter.h +include/CGAL/Cartesian_d.h +include/CGAL/Cartesian_matrix.h +include/CGAL/Chinese_remainder_traits.h +include/CGAL/Circle_2.h +include/CGAL/Circle_2_Circle_2_intersection.h +include/CGAL/Circle_2_Line_2_intersection.h +include/CGAL/Circle_3.h +include/CGAL/Circular_arc_2.h +include/CGAL/Circular_arc_3.h +include/CGAL/Circular_arc_point_2.h +include/CGAL/Circular_arc_point_3.h +include/CGAL/Circular_border_parameterizer_3.h +include/CGAL/Circular_kernel_2/Circular_arc_2.h +include/CGAL/Circular_kernel_2/Circular_arc_point_2.h +include/CGAL/Circular_kernel_2/Line_arc_2.h +include/CGAL/Circular_kernel_2/function_objects_on_circle_2.h +include/CGAL/Circular_kernel_2/function_objects_on_line_2.h +include/CGAL/Circular_kernel_2/function_objects_polynomial_circular.h +include/CGAL/Circular_kernel_2/interface_macros.h +include/CGAL/Circular_kernel_2/internal_functions_on_circle_2.h +include/CGAL/Circular_kernel_2/internal_functions_on_circular_arc_2.h +include/CGAL/Circular_kernel_2/internal_functions_on_line_2.h +include/CGAL/Circular_kernel_2/internal_functions_on_line_arc_2.h +include/CGAL/Circular_kernel_2/intersection_line_2_circle_2_map.h +include/CGAL/Circular_kernel_2.h +include/CGAL/Circular_kernel_3/Circular_arc_3.h +include/CGAL/Circular_kernel_3/Circular_arc_point_3.h +include/CGAL/Circular_kernel_3/Line_arc_3.h +include/CGAL/Circular_kernel_3/function_objects_polynomial_sphere.h +include/CGAL/Circular_kernel_3/get_equation_object_on_curved_kernel_3.h +include/CGAL/Circular_kernel_3/interface_macros.h +include/CGAL/Circular_kernel_3/internal_function_compare_spherical_kernel.h +include/CGAL/Circular_kernel_3/internal_function_has_on_spherical_kernel.h +include/CGAL/Circular_kernel_3/internal_functions_on_circle_3.h +include/CGAL/Circular_kernel_3/internal_functions_on_circular_arc_3.h +include/CGAL/Circular_kernel_3/internal_functions_on_circular_arc_point_3.h +include/CGAL/Circular_kernel_3/internal_functions_on_line_3.h +include/CGAL/Circular_kernel_3/internal_functions_on_line_arc_3.h +include/CGAL/Circular_kernel_3/internal_functions_on_plane_3.h +include/CGAL/Circular_kernel_3/internal_functions_on_sphere_3.h +include/CGAL/Circular_kernel_converter.h +include/CGAL/Circular_kernel_intersections.h +include/CGAL/Circular_kernel_type_equality_wrapper.h +include/CGAL/Circulator_identity.h +include/CGAL/Circulator_on_node.h +include/CGAL/Circulator_project.h +include/CGAL/Coercion_traits.h +include/CGAL/Compact_container.h +include/CGAL/Complex_2_in_triangulation_3.h +include/CGAL/Complex_2_in_triangulation_cell_base_3.h +include/CGAL/Complex_2_in_triangulation_vertex_base_3.h +include/CGAL/Compute_anchor_3.h +include/CGAL/Concatenate_iterator.h +include/CGAL/ConicCPA2.h +include/CGAL/ConicHPA2.h +include/CGAL/Conic_2.h +include/CGAL/Conic_misc.h +include/CGAL/Constrained_Delaunay_triangulation_2.h +include/CGAL/Constrained_triangulation_2.h +include/CGAL/Constrained_triangulation_face_base_2.h +include/CGAL/Constrained_triangulation_plus_2.h +include/CGAL/Constraint_hierarchy_2.h +include/CGAL/Convertible_circulator_project.h +include/CGAL/Convertible_filter_iterator.h +include/CGAL/Convertible_iterator_project.h +include/CGAL/Convex_hull_2/ch_akl_toussaint_impl.h +include/CGAL/Convex_hull_2/ch_assertions.h +include/CGAL/Convex_hull_2/ch_bykat_impl.h +include/CGAL/Convex_hull_2/ch_eddy_impl.h +include/CGAL/Convex_hull_2/ch_graham_andrew_impl.h +include/CGAL/Convex_hull_2/ch_jarvis_impl.h +include/CGAL/Convex_hull_2/ch_melkman_impl.h +include/CGAL/Convex_hull_2/ch_selected_extreme_points_2_impl.h +include/CGAL/Convex_hull_2/convexity_check_2_impl.h +include/CGAL/Convex_hull_d.h +include/CGAL/Convex_hull_d_to_polyhedron_3.h +include/CGAL/Convex_hull_d_traits_3.h +include/CGAL/Convex_hull_projective_xy_traits_2.h +include/CGAL/Convex_hull_projective_xz_traits_2.h +include/CGAL/Convex_hull_projective_yz_traits_2.h +include/CGAL/Convex_hull_traits_3.h +include/CGAL/Counted_number.h +include/CGAL/Counting_iterator.h +include/CGAL/Default_argument.h +include/CGAL/Delaunay_d.h +include/CGAL/Delaunay_mesh_area_criteria_2.h +include/CGAL/Delaunay_mesh_criteria_2.h +include/CGAL/Delaunay_mesh_face_base_2.h +include/CGAL/Delaunay_mesh_local_size_criteria_2.h +include/CGAL/Delaunay_mesh_size_criteria_2.h +include/CGAL/Delaunay_mesher_2.h +include/CGAL/Delaunay_remove_tds_3.h +include/CGAL/Delaunay_triangulation_2.h +include/CGAL/Delaunay_triangulation_3.h +include/CGAL/Delaunay_triangulation_adaptation_policies_2.h +include/CGAL/Delaunay_triangulation_adaptation_traits_2.h +include/CGAL/Dimension.h +include/CGAL/Direction_2.h +include/CGAL/Direction_3.h +include/CGAL/Discrete_authalic_parameterizer_3.h +include/CGAL/Discrete_conformal_map_parameterizer_3.h +include/CGAL/Distance_2.h +include/CGAL/Double_map.h +include/CGAL/Dummy_tds_2.h +include/CGAL/Dummy_tds_3.h +include/CGAL/Dynamic_matrix.h +include/CGAL/Edge_hash_function.h +include/CGAL/Enum_converter.h +include/CGAL/Env_default_diagram_1.h +include/CGAL/Env_plane_traits_3.h +include/CGAL/Env_sphere_traits_3.h +include/CGAL/Env_surface_data_traits_3.h +include/CGAL/Env_triangle_traits_3.h +include/CGAL/Envelope_2/Env_divide_and_conquer_2.h +include/CGAL/Envelope_2/Env_divide_and_conquer_2_impl.h +include/CGAL/Envelope_3/Env_overlay_2.h +include/CGAL/Envelope_3/Env_plane_traits_3_functions.h +include/CGAL/Envelope_3/Envelope_base.h +include/CGAL/Envelope_3/Envelope_divide_and_conquer_3.h +include/CGAL/Envelope_3/Envelope_element_visitor_3.h +include/CGAL/Envelope_3/Envelope_overlay_functor.h +include/CGAL/Envelope_3/Envelope_pm_dcel.h +include/CGAL/Envelope_3/set_dividors.h +include/CGAL/Euclidean_distance.h +include/CGAL/Euclidean_distance_sphere_point.h +include/CGAL/Euler_integrator_2.h +include/CGAL/Exact_circular_kernel_2.h +include/CGAL/Exact_predicates_exact_constructions_kernel.h +include/CGAL/Exact_predicates_exact_constructions_kernel_with_sqrt.h +include/CGAL/Exact_predicates_inexact_constructions_kernel.h +include/CGAL/Exact_spherical_kernel_3.h +include/CGAL/Exact_type_selecter.h +include/CGAL/Exponent_vector.h +include/CGAL/Extended_cartesian.h +include/CGAL/Extended_homogeneous.h +include/CGAL/Extremal_polygon_traits_2.h +include/CGAL/FPU.h +include/CGAL/Filter_circulator.h +include/CGAL/Filtered_bbox_circular_kernel_2/bbox_filtered_predicates.h +include/CGAL/Filtered_bbox_circular_kernel_2/interface_macros.h +include/CGAL/Filtered_bbox_circular_kernel_2.h +include/CGAL/Filtered_construction.h +include/CGAL/Filtered_extended_homogeneous.h +include/CGAL/Filtered_kernel/Cartesian_coordinate_iterator_2.h +include/CGAL/Filtered_kernel/Cartesian_coordinate_iterator_3.h +include/CGAL/Filtered_kernel.h +include/CGAL/Filtered_predicate.h +include/CGAL/Fixed_border_parameterizer_3.h +include/CGAL/Flattening_iterator.h +include/CGAL/Fourtuple.h +include/CGAL/Fraction_traits.h +include/CGAL/Fuzzy_iso_box.h +include/CGAL/Fuzzy_sphere.h +include/CGAL/GMP/Gmpq_type.h +include/CGAL/GMP/Gmpz_type.h +include/CGAL/GMP/Gmpzf_type.h +include/CGAL/General_polygon_2.h +include/CGAL/General_polygon_set_2.h +include/CGAL/General_polygon_with_holes_2.h +include/CGAL/Gmp_coercion_traits.h +include/CGAL/Gmpq.h +include/CGAL/Gmpz.h +include/CGAL/Gmpzf.h +include/CGAL/Gps_circle_segment_traits_2.h +include/CGAL/Gps_segment_traits_2.h +include/CGAL/Gps_traits_2.h +include/CGAL/Gray_level_image_3.h +include/CGAL/HalfedgeDS_const_decorator.h +include/CGAL/HalfedgeDS_decorator.h +include/CGAL/HalfedgeDS_default.h +include/CGAL/HalfedgeDS_face_base.h +include/CGAL/HalfedgeDS_face_max_base_with_id.h +include/CGAL/HalfedgeDS_face_min_base.h +include/CGAL/HalfedgeDS_halfedge_base.h +include/CGAL/HalfedgeDS_halfedge_max_base_with_id.h +include/CGAL/HalfedgeDS_halfedge_min_base.h +include/CGAL/HalfedgeDS_items_2.h +include/CGAL/HalfedgeDS_items_decorator.h +include/CGAL/HalfedgeDS_iterator.h +include/CGAL/HalfedgeDS_iterator_adaptor.h +include/CGAL/HalfedgeDS_list.h +include/CGAL/HalfedgeDS_min_items.h +include/CGAL/HalfedgeDS_vector.h +include/CGAL/HalfedgeDS_vertex_base.h +include/CGAL/HalfedgeDS_vertex_max_base_with_id.h +include/CGAL/HalfedgeDS_vertex_min_base.h +include/CGAL/Handle.h +include/CGAL/Handle_for.h +include/CGAL/Handle_for_virtual.h +include/CGAL/Handle_hash_function.h +include/CGAL/Handle_with_policy.h +include/CGAL/Hilbert_sort_2.h +include/CGAL/Hilbert_sort_3.h +include/CGAL/Hilbert_sort_base.h +include/CGAL/Homogeneous/Aff_transformationH2.h +include/CGAL/Homogeneous/Aff_transformationH3.h +include/CGAL/Homogeneous/CircleH2.h +include/CGAL/Homogeneous/Data_accessorH2.h +include/CGAL/Homogeneous/DirectionH2.h +include/CGAL/Homogeneous/DirectionH3.h +include/CGAL/Homogeneous/Homogeneous_base.h +include/CGAL/Homogeneous/Iso_cuboidH3.h +include/CGAL/Homogeneous/Iso_rectangleH2.h +include/CGAL/Homogeneous/LineH2.h +include/CGAL/Homogeneous/PlaneH3.h +include/CGAL/Homogeneous/PointH2.h +include/CGAL/Homogeneous/PointH3.h +include/CGAL/Homogeneous/RayH3.h +include/CGAL/Homogeneous/SphereH3.h +include/CGAL/Homogeneous/VectorH2.h +include/CGAL/Homogeneous/VectorH3.h +include/CGAL/Homogeneous/basic_constructionsH2.h +include/CGAL/Homogeneous/basic_constructionsH3.h +include/CGAL/Homogeneous/distance_predicatesH2.h +include/CGAL/Homogeneous/distance_predicatesH3.h +include/CGAL/Homogeneous/function_objects.h +include/CGAL/Homogeneous/predicates_on_directionsH2.h +include/CGAL/Homogeneous/predicates_on_pointsH2.h +include/CGAL/Homogeneous/predicates_on_pointsH3.h +include/CGAL/Homogeneous.h +include/CGAL/Homogeneous_converter.h +include/CGAL/Homogeneous_d.h +include/CGAL/Hyperbola_2.h +include/CGAL/Hyperbola_ray_2.h +include/CGAL/Hyperbola_segment_2.h +include/CGAL/IEEE_754_unions.h +include/CGAL/IO/Alpha_shape_3_VRML_2_ostream.h +include/CGAL/IO/Arr_iostream.h +include/CGAL/IO/Arr_text_formatter.h +include/CGAL/IO/Arr_with_history_2_reader.h +include/CGAL/IO/Arr_with_history_2_writer.h +include/CGAL/IO/Arr_with_history_iostream.h +include/CGAL/IO/Arr_with_history_text_formatter.h +include/CGAL/IO/Arrangement_2_reader.h +include/CGAL/IO/Arrangement_2_writer.h +include/CGAL/IO/Color.h +include/CGAL/IO/Complex_2_in_triangulation_3_file_writer.h +include/CGAL/IO/Complex_2_in_triangulation_3_polyhedron_builder.h +include/CGAL/IO/Complex_2_in_triangulation_3_to_vtk.h +include/CGAL/IO/Custom_zoom_layer.h +include/CGAL/IO/Dxf_bsop_reader.h +include/CGAL/IO/Dxf_reader.h +include/CGAL/IO/Dxf_reader_doubles.h +include/CGAL/IO/Dxf_stream.h +include/CGAL/IO/Dxf_variant_reader.h +include/CGAL/IO/Dxf_writer.h +include/CGAL/IO/Fig_stream.h +include/CGAL/IO/Fig_stream_Conic_arc_2.h +include/CGAL/IO/File_header_OFF.h +include/CGAL/IO/File_header_extended_OFF.h +include/CGAL/IO/File_poly.h +include/CGAL/IO/File_scanner_OFF.h +include/CGAL/IO/File_writer_OFF.h +include/CGAL/IO/File_writer_VRML_2.h +include/CGAL/IO/File_writer_inventor.h +include/CGAL/IO/File_writer_wavefront.h +include/CGAL/IO/Generic_writer.h +include/CGAL/IO/Geomview_stream.h +include/CGAL/IO/Inventor_ostream.h +include/CGAL/IO/Istream_iterator.h +include/CGAL/IO/Navigation_layer.h +include/CGAL/IO/Nef_polyhedron_2_PS_stream.h +include/CGAL/IO/Nef_polyhedron_S2_OGLUT_stream.h +include/CGAL/IO/Nef_polyhedron_iostream_3.h +include/CGAL/IO/Nef_polyhedron_iostream_S2.h +include/CGAL/IO/Ostream_iterator.h +include/CGAL/IO/Polyhedron_VRML_1_ostream.h +include/CGAL/IO/Polyhedron_VRML_2_ostream.h +include/CGAL/IO/Polyhedron_geomview_ostream.h +include/CGAL/IO/Polyhedron_inventor_ostream.h +include/CGAL/IO/Polyhedron_iostream.h +include/CGAL/IO/Polyhedron_scan_OFF.h +include/CGAL/IO/Qt_help_window.h +include/CGAL/IO/Qt_widget.h +include/CGAL/IO/Qt_widget_Alpha_shape_2.h +include/CGAL/IO/Qt_widget_Apollonius_site_2.h +include/CGAL/IO/Qt_widget_Conic_2.h +include/CGAL/IO/Qt_widget_Conic_arc_2.h +include/CGAL/IO/Qt_widget_Constrained_triangulation_2.h +include/CGAL/IO/Qt_widget_Delaunay_triangulation_2.h +include/CGAL/IO/Qt_widget_Hyperbola_2.h +include/CGAL/IO/Qt_widget_Linear_object_2.h +include/CGAL/IO/Qt_widget_Min_ellipse_2.h +include/CGAL/IO/Qt_widget_Nef_2.h +include/CGAL/IO/Qt_widget_Nef_3.h +include/CGAL/IO/Qt_widget_Nef_S2.h +include/CGAL/IO/Qt_widget_OpenGL.h +include/CGAL/IO/Qt_widget_Optimisation_circle_2.h +include/CGAL/IO/Qt_widget_Optimisation_ellipse_2.h +include/CGAL/IO/Qt_widget_Polygon_2.h +include/CGAL/IO/Qt_widget_Polyline_2.h +include/CGAL/IO/Qt_widget_Regular_triangulation_2.h +include/CGAL/IO/Qt_widget_Triangulation_2.h +include/CGAL/IO/Qt_widget_circular_arc_2.h +include/CGAL/IO/Qt_widget_circular_arc_endpoint_2.h +include/CGAL/IO/Qt_widget_focus.h +include/CGAL/IO/Qt_widget_get_circle.h +include/CGAL/IO/Qt_widget_get_iso_rectangle.h +include/CGAL/IO/Qt_widget_get_line.h +include/CGAL/IO/Qt_widget_get_point.h +include/CGAL/IO/Qt_widget_get_polygon.h +include/CGAL/IO/Qt_widget_get_segment.h +include/CGAL/IO/Qt_widget_get_simple_polygon.h +include/CGAL/IO/Qt_widget_handtool.h +include/CGAL/IO/Qt_widget_history.h +include/CGAL/IO/Qt_widget_layer.h +include/CGAL/IO/Qt_widget_rotation_layer.h +include/CGAL/IO/Qt_widget_show_mouse_coordinates.h +include/CGAL/IO/Qt_widget_standard_toolbar.h +include/CGAL/IO/Qt_widget_zoomrect.h +include/CGAL/IO/Scanner_OFF.h +include/CGAL/IO/Spherical_circle_gl.h +include/CGAL/IO/Tee_for_output_iterator.h +include/CGAL/IO/Triangulation_geomview_ostream_2.h +include/CGAL/IO/Triangulation_geomview_ostream_3.h +include/CGAL/IO/Triangulation_ps_stream.h +include/CGAL/IO/VRML_1_ostream.h +include/CGAL/IO/VRML_2_ostream.h +include/CGAL/IO/Verbose_ostream.h +include/CGAL/IO/Writer_OFF.h +include/CGAL/IO/alpha_shape_geomview_ostream_3.h +include/CGAL/IO/binary_file_io.h +include/CGAL/IO/generic_copy_OFF.h +include/CGAL/IO/generic_print_polyhedron.h +include/CGAL/IO/io.h +include/CGAL/IO/io_tags.h +include/CGAL/IO/pixmaps/alpha_shape.xpm +include/CGAL/IO/pixmaps/arrow.xpm +include/CGAL/IO/pixmaps/back.xpm +include/CGAL/IO/pixmaps/circle.xpm +include/CGAL/IO/pixmaps/constrained.xpm +include/CGAL/IO/pixmaps/demoicon.xpm +include/CGAL/IO/pixmaps/focus.xpm +include/CGAL/IO/pixmaps/focus1.xpm +include/CGAL/IO/pixmaps/focus1_mask.xpm +include/CGAL/IO/pixmaps/focus2.xpm +include/CGAL/IO/pixmaps/focus2_mask.xpm +include/CGAL/IO/pixmaps/focus3.xpm +include/CGAL/IO/pixmaps/focus3_mask.xpm +include/CGAL/IO/pixmaps/forward.xpm +include/CGAL/IO/pixmaps/greene_approx.xpm +include/CGAL/IO/pixmaps/hand.xpm +include/CGAL/IO/pixmaps/handtool.xpm +include/CGAL/IO/pixmaps/holddown.xpm +include/CGAL/IO/pixmaps/iso_rectangle.xpm +include/CGAL/IO/pixmaps/line.xpm +include/CGAL/IO/pixmaps/min_parallelogram.xpm +include/CGAL/IO/pixmaps/min_rectangle.xpm +include/CGAL/IO/pixmaps/mouse_coord.xpm +include/CGAL/IO/pixmaps/movepoint.xpm +include/CGAL/IO/pixmaps/nearest_vertex.xpm +include/CGAL/IO/pixmaps/notool.xpm +include/CGAL/IO/pixmaps/optimal_convex.xpm +include/CGAL/IO/pixmaps/point.xpm +include/CGAL/IO/pixmaps/points.xpm +include/CGAL/IO/pixmaps/polygon.xpm +include/CGAL/IO/pixmaps/rotation.xpm +include/CGAL/IO/pixmaps/show_polygon.xpm +include/CGAL/IO/pixmaps/triangulation.xpm +include/CGAL/IO/pixmaps/voronoi.xpm +include/CGAL/IO/pixmaps/ymonotone.xpm +include/CGAL/IO/pixmaps/zoom_in.xpm +include/CGAL/IO/pixmaps/zoom_in_rect.xpm +include/CGAL/IO/pixmaps/zoom_out.xpm +include/CGAL/IO/print_OFF.h +include/CGAL/IO/print_VRML_1.h +include/CGAL/IO/print_VRML_2.h +include/CGAL/IO/print_inventor.h +include/CGAL/IO/print_wavefront.h +include/CGAL/IO/scan_OFF.h +include/CGAL/Identity_policy_2.h +include/CGAL/ImageIO.h +include/CGAL/Image_3.h +include/CGAL/Image_3_vtk_interface.h +include/CGAL/Implicit_surface_3.h +include/CGAL/In_place_list.h +include/CGAL/Incremental_neighbor_search.h +include/CGAL/Interpolation_gradient_fitting_traits_2.h +include/CGAL/Interpolation_traits_2.h +include/CGAL/Intersections_2/Triangle_2_Triangle_2_intersection_impl.h +include/CGAL/Intersections_3/intersection_3_1_impl.h +include/CGAL/Interval_arithmetic.h +include/CGAL/Interval_nt.h +include/CGAL/Interval_skip_list.h +include/CGAL/Interval_skip_list_interval.h +include/CGAL/Interval_traits.h +include/CGAL/Inverse_index.h +include/CGAL/Is_a_predicate.h +include/CGAL/Is_extended_kernel.h +include/CGAL/Iso_cuboid_3.h +include/CGAL/Iso_rectangle_2.h +include/CGAL/Iso_rectangle_2_Iso_rectangle_2_intersection.h +include/CGAL/Iso_rectangle_2_Line_2_intersection.h +include/CGAL/Iso_rectangle_2_Point_2_intersection.h +include/CGAL/Iso_rectangle_2_Ray_2_intersection.h +include/CGAL/Iso_rectangle_2_Segment_2_intersection.h +include/CGAL/Iso_rectangle_d.h +include/CGAL/Iterator_identity.h +include/CGAL/Iterator_project.h +include/CGAL/Iterator_transform.h +include/CGAL/Join_input_iterator.h +include/CGAL/K_neighbor_search.h +include/CGAL/Kd_tree.h +include/CGAL/Kd_tree_node.h +include/CGAL/Kd_tree_rectangle.h +include/CGAL/Kernel/Dimension_utils.h +include/CGAL/Kernel/Return_base_tag.h +include/CGAL/Kernel/Same_uncertainty.h +include/CGAL/Kernel/Type_equality_wrapper.h +include/CGAL/Kernel/Type_mapper.h +include/CGAL/Kernel/Wutils.h +include/CGAL/Kernel/function_objects.h +include/CGAL/Kernel/global_functions.h +include/CGAL/Kernel/global_functions_2.h +include/CGAL/Kernel/global_functions_3.h +include/CGAL/Kernel/global_functions_internal_2.h +include/CGAL/Kernel/global_functions_internal_3.h +include/CGAL/Kernel/interface_macros.h +include/CGAL/Kernel/mpl.h +include/CGAL/Kernel/solve.h +include/CGAL/Kernel_checker.h +include/CGAL/Kernel_d/Aff_transformationCd.h +include/CGAL/Kernel_d/Aff_transformationHd.h +include/CGAL/Kernel_d/Aff_transformation_d.h +include/CGAL/Kernel_d/Cartesian_const_iterator_d.h +include/CGAL/Kernel_d/DirectionCd.h +include/CGAL/Kernel_d/DirectionCd_impl.h +include/CGAL/Kernel_d/DirectionHd.h +include/CGAL/Kernel_d/DirectionHd_impl.h +include/CGAL/Kernel_d/Direction_d.h +include/CGAL/Kernel_d/HyperplaneCd.h +include/CGAL/Kernel_d/HyperplaneCd_impl.h +include/CGAL/Kernel_d/HyperplaneHd.h +include/CGAL/Kernel_d/HyperplaneHd_impl.h +include/CGAL/Kernel_d/Hyperplane_d.h +include/CGAL/Kernel_d/Interface_classes.h +include/CGAL/Kernel_d/Iso_box_d.h +include/CGAL/Kernel_d/Kernel_classesCd.h +include/CGAL/Kernel_d/Kernel_classesHd.h +include/CGAL/Kernel_d/Line_d.h +include/CGAL/Kernel_d/Line_d_impl.h +include/CGAL/Kernel_d/Linear_algebraCd_impl.h +include/CGAL/Kernel_d/Linear_algebraHd_impl.h +include/CGAL/Kernel_d/Matrix__.h +include/CGAL/Kernel_d/PVDHACd_impl.h +include/CGAL/Kernel_d/PVDHAHd_impl.h +include/CGAL/Kernel_d/Pair_d.h +include/CGAL/Kernel_d/PointCd.h +include/CGAL/Kernel_d/PointCd_impl.h +include/CGAL/Kernel_d/PointHd.h +include/CGAL/Kernel_d/PointHd_impl.h +include/CGAL/Kernel_d/Point_d.h +include/CGAL/Kernel_d/Ray_d.h +include/CGAL/Kernel_d/Segment_d.h +include/CGAL/Kernel_d/Sphere_d.h +include/CGAL/Kernel_d/Tuple_d.h +include/CGAL/Kernel_d/VectorCd.h +include/CGAL/Kernel_d/VectorCd_impl.h +include/CGAL/Kernel_d/VectorHd.h +include/CGAL/Kernel_d/VectorHd_impl.h +include/CGAL/Kernel_d/Vector__.h +include/CGAL/Kernel_d/Vector_d.h +include/CGAL/Kernel_d/debug.h +include/CGAL/Kernel_d/function_objects.h +include/CGAL/Kernel_d/function_objectsCd.h +include/CGAL/Kernel_d/function_objectsHd.h +include/CGAL/Kernel_d/intersection_objectsCd.h +include/CGAL/Kernel_d/intersection_objectsHd.h +include/CGAL/Kernel_d/intersection_objects_d.h +include/CGAL/Kernel_d/simple_objects.h +include/CGAL/Kernel_profiler.h +include/CGAL/Kernel_traits.h +include/CGAL/Kinetic/Active_objects_vector.h +include/CGAL/Kinetic/CORE_Expr_exact_simulation_traits.h +include/CGAL/Kinetic/Cartesian.h +include/CGAL/Kinetic/Certificate_generator.h +include/CGAL/Kinetic/Default_instantaneous_kernel.h +include/CGAL/Kinetic/Default_simulator.h +include/CGAL/Kinetic/Delaunay_triangulation_2.h +include/CGAL/Kinetic/Delaunay_triangulation_3.h +include/CGAL/Kinetic/Delaunay_triangulation_cell_base_3.h +include/CGAL/Kinetic/Delaunay_triangulation_default_traits_2.h +include/CGAL/Kinetic/Delaunay_triangulation_event_log_visitor_2.h +include/CGAL/Kinetic/Delaunay_triangulation_event_log_visitor_3.h +include/CGAL/Kinetic/Delaunay_triangulation_face_base_2.h +include/CGAL/Kinetic/Delaunay_triangulation_recent_edges_visitor_2.h +include/CGAL/Kinetic/Delaunay_triangulation_vertex_base_2.h +include/CGAL/Kinetic/Delaunay_triangulation_visitor_base_2.h +include/CGAL/Kinetic/Delaunay_triangulation_visitor_base_3.h +include/CGAL/Kinetic/Derivitive_filter_function_kernel.h +include/CGAL/Kinetic/Enclosing_box_2.h +include/CGAL/Kinetic/Enclosing_box_3.h +include/CGAL/Kinetic/Erase_event.h +include/CGAL/Kinetic/Event_base.h +include/CGAL/Kinetic/Exact_simulation_traits.h +include/CGAL/Kinetic/Free_event_base.h +include/CGAL/Kinetic/Handle_degeneracy_function_kernel.h +include/CGAL/Kinetic/Heap_pointer_event_queue.h +include/CGAL/Kinetic/IO/Qt_moving_points_2.h +include/CGAL/Kinetic/IO/Qt_triangulation_2.h +include/CGAL/Kinetic/IO/Qt_widget_2.h +include/CGAL/Kinetic/IO/internal/GUI_base.h +include/CGAL/Kinetic/IO/internal/Qt_core.h +include/CGAL/Kinetic/IO/internal/Qt_timer.h +include/CGAL/Kinetic/IO/internal/Qt_widget_2_core.h +include/CGAL/Kinetic/IO/internal/Qt_window_2.h +include/CGAL/Kinetic/IO/internal/pixmaps.h +include/CGAL/Kinetic/Inexact_simulation_traits.h +include/CGAL/Kinetic/Insert_event.h +include/CGAL/Kinetic/Listener.h +include/CGAL/Kinetic/Multi_listener.h +include/CGAL/Kinetic/Ref_counted.h +include/CGAL/Kinetic/Regular_triangulation_3.h +include/CGAL/Kinetic/Regular_triangulation_CORE_exact_simulation_traits.h +include/CGAL/Kinetic/Regular_triangulation_cell_base_3.h +include/CGAL/Kinetic/Regular_triangulation_event_log_visitor_3.h +include/CGAL/Kinetic/Regular_triangulation_exact_simulation_traits.h +include/CGAL/Kinetic/Regular_triangulation_inexact_simulation_traits.h +include/CGAL/Kinetic/Regular_triangulation_instantaneous_kernel.h +include/CGAL/Kinetic/Regular_triangulation_vertex_base_3.h +include/CGAL/Kinetic/Regular_triangulation_visitor_base_3.h +include/CGAL/Kinetic/Simulator_objects_listener.h +include/CGAL/Kinetic/Sort.h +include/CGAL/Kinetic/Sort_event_log_visitor.h +include/CGAL/Kinetic/Sort_visitor_base.h +include/CGAL/Kinetic/Triangulation_2.h +include/CGAL/Kinetic/Two_list_pointer_event_queue.h +include/CGAL/Kinetic/basic.h +include/CGAL/Kinetic/internal/Delaunay_triangulation_base_3.h +include/CGAL/Kinetic/internal/Instantaneous_adaptor.h +include/CGAL/Kinetic/internal/Kernel/Cartesian_kinetic_kernel_base.h +include/CGAL/Kinetic/internal/Kernel/Cartesian_moving_lifted_point_3.h +include/CGAL/Kinetic/internal/Kernel/Cartesian_moving_orthosphere_3.h +include/CGAL/Kinetic/internal/Kernel/Cartesian_moving_point_1.h +include/CGAL/Kinetic/internal/Kernel/Cartesian_moving_point_2.h +include/CGAL/Kinetic/internal/Kernel/Cartesian_moving_point_3.h +include/CGAL/Kinetic/internal/Kernel/Cartesian_moving_weighted_point_3.h +include/CGAL/Kinetic/internal/Kernel/Center.h +include/CGAL/Kinetic/internal/Kernel/Certificate.h +include/CGAL/Kinetic/internal/Kernel/Delaunay_lifted_lifting.h +include/CGAL/Kinetic/internal/Kernel/Delaunay_lifting.h +include/CGAL/Kinetic/internal/Kernel/Reverse_time.h +include/CGAL/Kinetic/internal/Kernel/cartesian_predicates_2.h +include/CGAL/Kinetic/internal/Kernel/cartesian_predicates_3.h +include/CGAL/Kinetic/internal/To_static.h +include/CGAL/Kinetic/internal/Triangulation_helper_3.h +include/CGAL/Kinetic/internal/config.h +include/CGAL/Kinetic/internal/debug_counters.h +include/CGAL/Kinetic/internal/infinity_or_max.h +include/CGAL/Kinetic/internal/tds_2_helpers.h +include/CGAL/Kinetic/internal/triangulation_helpers_3.h +include/CGAL/Kinetic/listeners.h +include/CGAL/LEDA_basic.h +include/CGAL/LSCM_parameterizer_3.h +include/CGAL/Lapack/Linear_algebra_lapack.h +include/CGAL/Largest_empty_iso_rectangle_2.h +include/CGAL/Lazy.h +include/CGAL/Lazy_exact_nt.h +include/CGAL/Lazy_kernel.h +include/CGAL/Level_interval.h +include/CGAL/Line_2.h +include/CGAL/Line_2_Bbox_2_intersection.h +include/CGAL/Line_2_Iso_rectangle_2_intersection.h +include/CGAL/Line_2_Line_2_intersection.h +include/CGAL/Line_2_Point_2_intersection.h +include/CGAL/Line_2_Ray_2_intersection.h +include/CGAL/Line_2_Segment_2_intersection.h +include/CGAL/Line_2_Triangle_2_intersection.h +include/CGAL/Line_3.h +include/CGAL/Line_arc_2.h +include/CGAL/Line_arc_3.h +include/CGAL/Linear_algebraCd.h +include/CGAL/Linear_algebraHd.h +include/CGAL/MP_Float.h +include/CGAL/Manhattan_distance_iso_box_point.h +include/CGAL/Marching_tetrahedra_observer_default_3.h +include/CGAL/Marching_tetrahedra_traits_skin_surface_3.h +include/CGAL/Mean_value_coordinates_parameterizer_3.h +include/CGAL/Memory_sizer.h +include/CGAL/Mesh_2/Clusters.h +include/CGAL/Mesh_2/Face_badness.h +include/CGAL/Mesh_2/Output_stream.h +include/CGAL/Mesh_2/Refine_edges.h +include/CGAL/Mesh_2/Refine_edges_visitor.h +include/CGAL/Mesh_2/Refine_edges_with_clusters.h +include/CGAL/Mesh_2/Refine_faces.h +include/CGAL/Mesher_level.h +include/CGAL/Mesher_level_default_implementations.h +include/CGAL/Mesher_level_visitors.h +include/CGAL/Meshes/Double_map_container.h +include/CGAL/Meshes/Filtered_queue_container.h +include/CGAL/Meshes/Simple_map_container.h +include/CGAL/Meshes/Simple_queue_container.h +include/CGAL/Meshes/Simple_set_container.h +include/CGAL/Meshes/Triangulation_mesher_level_traits_2.h +include/CGAL/Meshes/Triangulation_mesher_level_traits_3.h +include/CGAL/Min_annulus_d.h +include/CGAL/Min_circle_2/Min_circle_2_adapterC2.h +include/CGAL/Min_circle_2/Min_circle_2_adapterH2.h +include/CGAL/Min_circle_2/Min_circle_2_impl.h +include/CGAL/Min_circle_2/Optimisation_circle_2.h +include/CGAL/Min_circle_2/Optimisation_circle_2_impl.h +include/CGAL/Min_circle_2.h +include/CGAL/Min_circle_2_traits_2.h +include/CGAL/Min_ellipse_2/Min_ellipse_2_adapterC2.h +include/CGAL/Min_ellipse_2/Min_ellipse_2_adapterH2.h +include/CGAL/Min_ellipse_2/Min_ellipse_2_impl.h +include/CGAL/Min_ellipse_2/Optimisation_ellipse_2.h +include/CGAL/Min_ellipse_2/Optimisation_ellipse_2_impl.h +include/CGAL/Min_ellipse_2.h +include/CGAL/Min_ellipse_2_traits_2.h +include/CGAL/Min_quadrilateral_traits_2.h +include/CGAL/Min_sphere_annulus_d_traits_2.h +include/CGAL/Min_sphere_annulus_d_traits_3.h +include/CGAL/Min_sphere_annulus_d_traits_d.h +include/CGAL/Min_sphere_d/Min_sphere_d_impl.h +include/CGAL/Min_sphere_d/Optimisation_sphere_d.h +include/CGAL/Min_sphere_d.h +include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_configure.h +include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_impl.h +include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_pair.h +include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_pivot_impl.h +include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set.h +include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set_impl.h +include/CGAL/Min_sphere_of_spheres_d.h +include/CGAL/Min_sphere_of_spheres_d_traits_2.h +include/CGAL/Min_sphere_of_spheres_d_traits_3.h +include/CGAL/Min_sphere_of_spheres_d_traits_d.h +include/CGAL/Minimum_enclosing_quadrilateral_traits_2.h +include/CGAL/Minkowski_sum_2/Approx_offset_base_2.h +include/CGAL/Minkowski_sum_2/Arr_labeled_traits_2.h +include/CGAL/Minkowski_sum_2/Decomposition_strategy_adapter.h +include/CGAL/Minkowski_sum_2/Exact_offset_base_2.h +include/CGAL/Minkowski_sum_2/Labels.h +include/CGAL/Minkowski_sum_2/Minkowski_sum_conv_2.h +include/CGAL/Minkowski_sum_2/Minkowski_sum_decomp_2.h +include/CGAL/Minkowski_sum_2/Offset_conv_2.h +include/CGAL/Minkowski_sum_2/Offset_decomp_2.h +include/CGAL/Minkowski_sum_2/Polygon_convex_decomposition.h +include/CGAL/Minkowski_sum_2/Union_of_curve_cycles_2.h +include/CGAL/Minkowski_sum_2/Union_of_cycles_2.h +include/CGAL/Minkowski_sum_2/Union_of_segment_cycles_2.h +include/CGAL/Modifiable_priority_queue.h +include/CGAL/Modifier_base.h +include/CGAL/Modular_arithmetic/Residue_type.h +include/CGAL/Modular_traits.h +include/CGAL/Monge_via_jet_fitting.h +include/CGAL/Multi_surface_3.h +include/CGAL/Multiscale_sort.h +include/CGAL/Multiset.h +include/CGAL/NT_converter.h +include/CGAL/N_step_adaptor.h +include/CGAL/N_step_adaptor_derived.h +include/CGAL/Needs_parens_as_product.h +include/CGAL/Nef_2/Bounding_box_2.h +include/CGAL/Nef_2/Constrained_triang_traits.h +include/CGAL/Nef_2/HDS_items.h +include/CGAL/Nef_2/Line_to_epoint.h +include/CGAL/Nef_2/Object_handle.h +include/CGAL/Nef_2/Object_index.h +include/CGAL/Nef_2/PM_checker.h +include/CGAL/Nef_2/PM_const_decorator.h +include/CGAL/Nef_2/PM_decorator.h +include/CGAL/Nef_2/PM_explorer.h +include/CGAL/Nef_2/PM_io_parser.h +include/CGAL/Nef_2/PM_overlayer.h +include/CGAL/Nef_2/PM_persistent_PL.h +include/CGAL/Nef_2/PM_point_locator.h +include/CGAL/Nef_2/Polynomial.h +include/CGAL/Nef_2/Segment_overlay_traits.h +include/CGAL/Nef_2/debug.h +include/CGAL/Nef_2/gen_point_location.h +include/CGAL/Nef_2/geninfo.h +include/CGAL/Nef_2/iterator_tools.h +include/CGAL/Nef_3/Binary_operation.h +include/CGAL/Nef_3/Bounding_box_3.h +include/CGAL/Nef_3/Combine_with_halfspace.h +include/CGAL/Nef_3/Default_items.h +include/CGAL/Nef_3/Edge_edge_overlay.h +include/CGAL/Nef_3/Exact_triangulation_euclidean_traits_xy_3.h +include/CGAL/Nef_3/Exact_triangulation_euclidean_traits_xz_3.h +include/CGAL/Nef_3/Exact_triangulation_euclidean_traits_yz_3.h +include/CGAL/Nef_3/Halfedge.h +include/CGAL/Nef_3/Halffacet.h +include/CGAL/Nef_3/ID_support_handler.h +include/CGAL/Nef_3/Infimaximal_box.h +include/CGAL/Nef_3/K3_tree.h +include/CGAL/Nef_3/Mark_bounded_volumes.h +include/CGAL/Nef_3/Nef_box.h +include/CGAL/Nef_3/OGL_helper.h +include/CGAL/Nef_3/Pluecker_line_3.h +include/CGAL/Nef_3/SFace.h +include/CGAL/Nef_3/SHalfedge.h +include/CGAL/Nef_3/SHalfloop.h +include/CGAL/Nef_3/SM_visualizor.h +include/CGAL/Nef_3/SNC_FM_decorator.h +include/CGAL/Nef_3/SNC_SM_explorer.h +include/CGAL/Nef_3/SNC_SM_overlayer.h +include/CGAL/Nef_3/SNC_SM_visualizor.h +include/CGAL/Nef_3/SNC_const_decorator.h +include/CGAL/Nef_3/SNC_constructor.h +include/CGAL/Nef_3/SNC_decorator.h +include/CGAL/Nef_3/SNC_decorator_traits.h +include/CGAL/Nef_3/SNC_external_structure.h +include/CGAL/Nef_3/SNC_indexed_items.h +include/CGAL/Nef_3/SNC_intersection.h +include/CGAL/Nef_3/SNC_io_parser.h +include/CGAL/Nef_3/SNC_items.h +include/CGAL/Nef_3/SNC_iteration.h +include/CGAL/Nef_3/SNC_k3_tree_traits.h +include/CGAL/Nef_3/SNC_list.h +include/CGAL/Nef_3/SNC_point_locator.h +include/CGAL/Nef_3/SNC_ray_shooter.h +include/CGAL/Nef_3/SNC_simplify.h +include/CGAL/Nef_3/SNC_sphere_map.h +include/CGAL/Nef_3/SNC_structure.h +include/CGAL/Nef_3/Vertex.h +include/CGAL/Nef_3/Volume.h +include/CGAL/Nef_3/binop_intersection_tests.h +include/CGAL/Nef_3/bounded_side_3.h +include/CGAL/Nef_3/polyhedron_3_to_nef_3.h +include/CGAL/Nef_3/quotient_coordinates_to_homogeneous_point.h +include/CGAL/Nef_3/shell_to_nef_3.h +include/CGAL/Nef_3/vertex_cycle_to_nef_3.h +include/CGAL/Nef_S2/Generic_handle_map.h +include/CGAL/Nef_S2/Normalizing.h +include/CGAL/Nef_S2/OGL_base_object.h +include/CGAL/Nef_S2/SM_checker.h +include/CGAL/Nef_S2/SM_const_decorator.h +include/CGAL/Nef_S2/SM_constrained_triang_traits.h +include/CGAL/Nef_S2/SM_decorator.h +include/CGAL/Nef_S2/SM_decorator_traits.h +include/CGAL/Nef_S2/SM_io_parser.h +include/CGAL/Nef_S2/SM_items.h +include/CGAL/Nef_S2/SM_iteration.h +include/CGAL/Nef_S2/SM_list.h +include/CGAL/Nef_S2/SM_overlayer.h +include/CGAL/Nef_S2/SM_point_locator.h +include/CGAL/Nef_S2/SM_triangulator.h +include/CGAL/Nef_S2/SM_visualizor.h +include/CGAL/Nef_S2/Sphere_circle.h +include/CGAL/Nef_S2/Sphere_direction.h +include/CGAL/Nef_S2/Sphere_geometry.h +include/CGAL/Nef_S2/Sphere_geometry_OGL.h +include/CGAL/Nef_S2/Sphere_map.h +include/CGAL/Nef_S2/Sphere_point.h +include/CGAL/Nef_S2/Sphere_segment.h +include/CGAL/Nef_S2/Sphere_triangle.h +include/CGAL/Nef_S2/Tuple.h +include/CGAL/Nef_S2/leda_sphere_map.h +include/CGAL/Nef_S2/sphere_predicates.h +include/CGAL/Nef_nary_intersection_3.h +include/CGAL/Nef_nary_union_3.h +include/CGAL/Nef_polyhedron_2.h +include/CGAL/Nef_polyhedron_3.h +include/CGAL/Nef_polyhedron_S2.h +include/CGAL/Nef_polynomial.h +include/CGAL/Nef_polynomial_fwd.h +include/CGAL/Nested_iterator.h +include/CGAL/Null_matrix.h +include/CGAL/Number_type_checker.h +include/CGAL/Number_types/internal_functions_comparison_root_of_2.h +include/CGAL/OFF_to_nef_3.h +include/CGAL/Object.h +include/CGAL/OpenNL/bicgstab.h +include/CGAL/OpenNL/blas.h +include/CGAL/OpenNL/conjugate_gradient.h +include/CGAL/OpenNL/full_vector.h +include/CGAL/OpenNL/linear_solver.h +include/CGAL/OpenNL/preconditioner.h +include/CGAL/OpenNL/sparse_matrix.h +include/CGAL/Optimisation/Access_coordinates_begin_2.h +include/CGAL/Optimisation/Access_coordinates_begin_3.h +include/CGAL/Optimisation/Access_coordinates_begin_d.h +include/CGAL/Optimisation/Access_dimension_2.h +include/CGAL/Optimisation/Access_dimension_3.h +include/CGAL/Optimisation/Access_dimension_d.h +include/CGAL/Optimisation/Construct_point_2.h +include/CGAL/Optimisation/Construct_point_3.h +include/CGAL/Optimisation/Construct_point_d.h +include/CGAL/Optimisation/assertions.h +include/CGAL/Optimisation/basic.h +include/CGAL/Optimisation/debug.h +include/CGAL/Optimisation_d_traits_2.h +include/CGAL/Optimisation_d_traits_3.h +include/CGAL/Optimisation_d_traits_d.h +include/CGAL/Origin.h +include/CGAL/Orthogonal_incremental_neighbor_search.h +include/CGAL/Orthogonal_k_neighbor_search.h +include/CGAL/PCA_util.h +include/CGAL/PDB/Atom.h +include/CGAL/PDB/Chain.h +include/CGAL/PDB/Heterogen.h +include/CGAL/PDB/Matrix.h +include/CGAL/PDB/Model.h +include/CGAL/PDB/Monomer.h +include/CGAL/PDB/PDB.h +include/CGAL/PDB/Point.h +include/CGAL/PDB/Quaternion.h +include/CGAL/PDB/Transform.h +include/CGAL/PDB/align.h +include/CGAL/PDB/basic.h +include/CGAL/PDB/distance.h +include/CGAL/PDB/internal/Error_logger.h +include/CGAL/PDB/internal/Monomer_data.h +include/CGAL/PDB/internal/Nested_iterator.h +include/CGAL/PDB/internal/align_points.out.h +include/CGAL/PDB/internal/dummies.h +include/CGAL/PDB/internal/pdb_utils.h +include/CGAL/PDB/internal/tnt/jama_cholesky.h +include/CGAL/PDB/internal/tnt/jama_eig.h +include/CGAL/PDB/internal/tnt/jama_lu.h +include/CGAL/PDB/internal/tnt/jama_qr.h +include/CGAL/PDB/internal/tnt/jama_svd.h +include/CGAL/PDB/internal/tnt/tnt_array1d.h +include/CGAL/PDB/internal/tnt/tnt_array1d_utils.h +include/CGAL/PDB/internal/tnt/tnt_array2d.h +include/CGAL/PDB/internal/tnt/tnt_array2d_utils.h +include/CGAL/PDB/internal/tnt/tnt_cmat.h +include/CGAL/PDB/internal/tnt/tnt_i_refvec.h +include/CGAL/PDB/internal/tnt/tnt_math_utils.h +include/CGAL/PDB/internal/tnt/tnt_subscript.h +include/CGAL/PDB/internal/tnt/tnt_vec.h +include/CGAL/PDB/iterator.h +include/CGAL/PDB/small_map.h +include/CGAL/Parabola_2.h +include/CGAL/Parabola_segment_2.h +include/CGAL/Param_mesh_patch_circulators.h +include/CGAL/Param_mesh_patch_iterators.h +include/CGAL/Param_mesh_patch_vertex.h +include/CGAL/Parameterization_mesh_feature_extractor.h +include/CGAL/Parameterization_mesh_patch_3.h +include/CGAL/Parameterization_polyhedron_adaptor_3.h +include/CGAL/Parameterizer_traits_3.h +include/CGAL/Partition_2/Circulator_pair.h +include/CGAL/Partition_2/Indirect_edge_compare.h +include/CGAL/Partition_2/Indirect_less_xy_2.h +include/CGAL/Partition_2/Indirect_not_less_yx_2.h +include/CGAL/Partition_2/Iterator_list.h +include/CGAL/Partition_2/Matrix.h +include/CGAL/Partition_2/Partition_opt_cvx_diagonal_list.h +include/CGAL/Partition_2/Partition_opt_cvx_edge.h +include/CGAL/Partition_2/Partition_opt_cvx_vertex.h +include/CGAL/Partition_2/Partition_traits_2_base.h +include/CGAL/Partition_2/Partition_vertex_map.h +include/CGAL/Partition_2/Partitioned_polygon_2.h +include/CGAL/Partition_2/Point_pair_less_xy_2.h +include/CGAL/Partition_2/Rotation_tree_2.h +include/CGAL/Partition_2/Rotation_tree_2_impl.h +include/CGAL/Partition_2/Rotation_tree_node_2.h +include/CGAL/Partition_2/Segment_less_yx_2.h +include/CGAL/Partition_2/Triangulation_indirect_traits_2.h +include/CGAL/Partition_2/Turn_reverser.h +include/CGAL/Partition_2/Vertex_visibility_graph_2.h +include/CGAL/Partition_2/Vertex_visibility_graph_2_impl.h +include/CGAL/Partition_2/is_degenerate_polygon_2.h +include/CGAL/Partition_2/partition_approx_convex_2.h +include/CGAL/Partition_2/partition_assertions.h +include/CGAL/Partition_2/partition_greene_approx_convex_2.h +include/CGAL/Partition_2/partition_optimal_convex_2.h +include/CGAL/Partition_2/partition_y_monotone_2.h +include/CGAL/Partition_is_valid_traits_2.h +include/CGAL/Partition_traits_2.h +include/CGAL/Plane_3.h +include/CGAL/Plane_separator.h +include/CGAL/Point_2.h +include/CGAL/Point_2_Iso_rectangle_2_intersection.h +include/CGAL/Point_2_Line_2_intersection.h +include/CGAL/Point_2_Point_2_intersection.h +include/CGAL/Point_2_Ray_2_intersection.h +include/CGAL/Point_2_Segment_2_intersection.h +include/CGAL/Point_2_Triangle_2_intersection.h +include/CGAL/Point_3.h +include/CGAL/Point_container.h +include/CGAL/Point_set_2.h +include/CGAL/Point_traits.h +include/CGAL/Point_with_psc_localisation.h +include/CGAL/Point_with_surface_index.h +include/CGAL/Point_with_surface_index_geom_traits.h +include/CGAL/Polygon_2/Polygon_2_algorithms_impl.h +include/CGAL/Polygon_2/Polygon_2_edge_circulator.h +include/CGAL/Polygon_2/Polygon_2_edge_iterator.h +include/CGAL/Polygon_2/Polygon_2_impl.h +include/CGAL/Polygon_2/Polygon_2_simplicity.h +include/CGAL/Polygon_2/Polygon_2_vertex_circulator.h +include/CGAL/Polygon_2/polygon_assertions.h +include/CGAL/Polygon_2.h +include/CGAL/Polygon_2_algorithms.h +include/CGAL/Polygon_convex_decomposition_2.h +include/CGAL/Polygon_offset_builder_2.h +include/CGAL/Polygon_offset_builder_traits_2.h +include/CGAL/Polygon_set_2.h +include/CGAL/Polygon_traits_2.h +include/CGAL/Polygon_with_holes_2.h +include/CGAL/PolyhedralSurf_neighbors.h +include/CGAL/Polyhedron_3.h +include/CGAL/Polyhedron_copy_3.h +include/CGAL/Polyhedron_decorator_3.h +include/CGAL/Polyhedron_incremental_builder_3.h +include/CGAL/Polyhedron_items_3.h +include/CGAL/Polyhedron_items_with_id_3.h +include/CGAL/Polyhedron_min_items_3.h +include/CGAL/Polyhedron_traits_3.h +include/CGAL/Polyhedron_traits_with_normals_3.h +include/CGAL/Polynomial/Algebraic_structure_traits.h +include/CGAL/Polynomial/Algebraic_structure_traits_extended.h +include/CGAL/Polynomial/CORE_Expr_root_stack.h +include/CGAL/Polynomial/CORE_kernel.h +include/CGAL/Polynomial/Cached_extended_euclidean_algorithm.h +include/CGAL/Polynomial/Chinese_remainder_traits.h +include/CGAL/Polynomial/Coercion_traits.h +include/CGAL/Polynomial/Fixed_polynomial.h +include/CGAL/Polynomial/Fraction_traits.h +include/CGAL/Polynomial/Interpolator.h +include/CGAL/Polynomial/Interval_polynomial.h +include/CGAL/Polynomial/Kernel.h +include/CGAL/Polynomial/Modular_traits.h +include/CGAL/Polynomial/Numeric_root_stack.h +include/CGAL/Polynomial/Polynomial.h +include/CGAL/Polynomial/Polynomial_type.h +include/CGAL/Polynomial/Real_embeddable_traits.h +include/CGAL/Polynomial/Root_stack_default_traits.h +include/CGAL/Polynomial/Scalar_factor_traits.h +include/CGAL/Polynomial/Sturm_root_stack.h +include/CGAL/Polynomial/Sturm_root_stack_traits.h +include/CGAL/Polynomial/basic.h +include/CGAL/Polynomial/bezout_matrix.h +include/CGAL/Polynomial/determinant.h +include/CGAL/Polynomial/fwd.h +include/CGAL/Polynomial/hgdelta_update.h +include/CGAL/Polynomial/internal/Alternation_counter.h +include/CGAL/Polynomial/internal/CORE_polynomial.h +include/CGAL/Polynomial/internal/Descartes_root_count.h +include/CGAL/Polynomial/internal/Double_with_infinity.h +include/CGAL/Polynomial/internal/Filtered_function.h +include/CGAL/Polynomial/internal/Filtered_kernel/Filtered_Descartes_has_root.h +include/CGAL/Polynomial/internal/Filtered_kernel/Filtered_Descartes_root_counter.h +include/CGAL/Polynomial/internal/Filtered_kernel/Filtered_are_negations.h +include/CGAL/Polynomial/internal/Filtered_kernel/Filtered_polynomial_rational_kernel.h +include/CGAL/Polynomial/internal/Filtered_kernel/Filtered_root_bound_evaluator.h +include/CGAL/Polynomial/internal/Filtered_kernel/Filtered_root_multiplicity.h +include/CGAL/Polynomial/internal/Filtered_kernel/Filtered_sign_at.h +include/CGAL/Polynomial/internal/Filtered_kernel.h +include/CGAL/Polynomial/internal/Filtered_number.h +include/CGAL/Polynomial/internal/Filtered_rational/Construct_filtered_function.h +include/CGAL/Polynomial/internal/Filtered_rational/Filtered_Descartes_has_root.h +include/CGAL/Polynomial/internal/Filtered_rational/Filtered_Descartes_root_counter.h +include/CGAL/Polynomial/internal/Filtered_rational/Filtered_Sturm_sequence.h +include/CGAL/Polynomial/internal/Filtered_rational/Filtered_are_negations.h +include/CGAL/Polynomial/internal/Filtered_rational/Filtered_rational_multiplicity.h +include/CGAL/Polynomial/internal/Filtered_rational/Filtered_rational_sign_above_rational.h +include/CGAL/Polynomial/internal/Filtered_rational/Filtered_rational_traits.h +include/CGAL/Polynomial/internal/Filtered_rational/Filtered_root_bound_evaluator.h +include/CGAL/Polynomial/internal/Filtered_rational/Filtered_sign_Sturm_sequence.h +include/CGAL/Polynomial/internal/Filtered_rational/Filtered_sign_at_rational.h +include/CGAL/Polynomial/internal/Filtered_rational/Filtered_standard_sequence.h +include/CGAL/Polynomial/internal/Fixed_polynomial_impl.h +include/CGAL/Polynomial/internal/GSL_numeric_solver.h +include/CGAL/Polynomial/internal/Isolating_interval.h +include/CGAL/Polynomial/internal/Kernel/Is_even_multiplicity.h +include/CGAL/Polynomial/internal/Kernel/Is_rational.h +include/CGAL/Polynomial/internal/Kernel/Isolating_interval.h +include/CGAL/Polynomial/internal/Kernel/Lower_bound_root.h +include/CGAL/Polynomial/internal/Kernel/Multiplicity.h +include/CGAL/Polynomial/internal/Kernel/Rational_between_roots.h +include/CGAL/Polynomial/internal/Kernel/Root_container.h +include/CGAL/Polynomial/internal/Kernel/Sign_above.h +include/CGAL/Polynomial/internal/Kernel/Sign_at.h +include/CGAL/Polynomial/internal/Kernel/Sign_below.h +include/CGAL/Polynomial/internal/Kernel/Sign_between_roots.h +include/CGAL/Polynomial/internal/Kernel/To_rational.h +include/CGAL/Polynomial/internal/Kernel/predicate_template.h +include/CGAL/Polynomial/internal/Polynomial_impl.h +include/CGAL/Polynomial/internal/Rational/Are_negations.h +include/CGAL/Polynomial/internal/Rational/Bezier_root_counter.h +include/CGAL/Polynomial/internal/Rational/Compare_isolated_roots_in_interval.h +include/CGAL/Polynomial/internal/Rational/Construct_function.h +include/CGAL/Polynomial/internal/Rational/Derivative.h +include/CGAL/Polynomial/internal/Rational/Descartes_has_root.h +include/CGAL/Polynomial/internal/Rational/Descartes_root_counter.h +include/CGAL/Polynomial/internal/Rational/Euclidean_Sturm_sequence.h +include/CGAL/Polynomial/internal/Rational/Evaluate_polynomial.h +include/CGAL/Polynomial/internal/Rational/Invert_variable.h +include/CGAL/Polynomial/internal/Rational/Map_rational_interval_to_positive.h +include/CGAL/Polynomial/internal/Rational/Monic_Sturm_sequence.h +include/CGAL/Polynomial/internal/Rational/Negate_variable.h +include/CGAL/Polynomial/internal/Rational/Primitive_part_Sturm_sequence.h +include/CGAL/Polynomial/internal/Rational/Pseudo_quotient.h +include/CGAL/Polynomial/internal/Rational/Pseudo_remainder.h +include/CGAL/Polynomial/internal/Rational/Quotient.h +include/CGAL/Polynomial/internal/Rational/Quotient_remainder.h +include/CGAL/Polynomial/internal/Rational/Rational_multiplicity.h +include/CGAL/Polynomial/internal/Rational/Rational_traits_base.h +include/CGAL/Polynomial/internal/Rational/Rational_translate_zero.h +include/CGAL/Polynomial/internal/Rational/Reduced_Sturm_sequence.h +include/CGAL/Polynomial/internal/Rational/Remainder.h +include/CGAL/Polynomial/internal/Rational/Root_bound_evaluator.h +include/CGAL/Polynomial/internal/Rational/Shift_power.h +include/CGAL/Polynomial/internal/Rational/Sign_Sturm_sequence.h +include/CGAL/Polynomial/internal/Rational/Sign_above_rational.h +include/CGAL/Polynomial/internal/Rational/Sign_at_rational.h +include/CGAL/Polynomial/internal/Rational/Sign_below_rational.h +include/CGAL/Polynomial/internal/Rational/Standard_sequence.h +include/CGAL/Polynomial/internal/Rational/Sturm_root_counter.h +include/CGAL/Polynomial/internal/Rational/Sturm_sequence.h +include/CGAL/Polynomial/internal/Rational/Sturm_sequence_base.h +include/CGAL/Polynomial/internal/Rational/Subresultant_Sturm_sequence.h +include/CGAL/Polynomial/internal/Root_stack_traits_base.h +include/CGAL/Polynomial/internal/Sign_variations_counter.h +include/CGAL/Polynomial/internal/Simple_interval_root.h +include/CGAL/Polynomial/internal/Statistics.h +include/CGAL/Polynomial/internal/Sturm_isolating_interval.h +include/CGAL/Polynomial/internal/Sturm_root_rep.h +include/CGAL/Polynomial/internal/config.h +include/CGAL/Polynomial/internal/filtered_function_leaf_nodes.h +include/CGAL/Polynomial/internal/filtered_function_node_bases.h +include/CGAL/Polynomial/internal/filtered_function_operation_nodes.h +include/CGAL/Polynomial/internal/interval_arithmetic.h +include/CGAL/Polynomial/internal/macros.h +include/CGAL/Polynomial/internal/nt_converters.h +include/CGAL/Polynomial/internal/numeric_solvers.h +include/CGAL/Polynomial/internal/numeric_solvers_support.h +include/CGAL/Polynomial/internal/polynomial_generators.h +include/CGAL/Polynomial/misc.h +include/CGAL/Polynomial/modular_filter.h +include/CGAL/Polynomial/modular_gcd.h +include/CGAL/Polynomial/modular_gcd_utcf_algorithm_M.h +include/CGAL/Polynomial/modular_gcd_utcf_dfai.h +include/CGAL/Polynomial/modular_gcd_utils.h +include/CGAL/Polynomial/polynomial_converters.h +include/CGAL/Polynomial/polynomial_gcd.h +include/CGAL/Polynomial/polynomial_gcd_implementations.h +include/CGAL/Polynomial/prs_resultant.h +include/CGAL/Polynomial/resultant.h +include/CGAL/Polynomial/square_free_factorize.h +include/CGAL/Polynomial.h +include/CGAL/Polynomial_traits_d.h +include/CGAL/Polynomial_type_generator.h +include/CGAL/Polynomials_1_2.h +include/CGAL/Polynomials_1_3.h +include/CGAL/Polynomials_2_2.h +include/CGAL/Polynomials_2_3.h +include/CGAL/Polynomials_for_line_3.h +include/CGAL/Polytope_distance_d.h +include/CGAL/Polytope_distance_d_traits_2.h +include/CGAL/Polytope_distance_d_traits_3.h +include/CGAL/Polytope_distance_d_traits_d.h +include/CGAL/Profile_counter.h +include/CGAL/Profile_timer.h +include/CGAL/QP_functions.h +include/CGAL/QP_models.h +include/CGAL/QP_options.h +include/CGAL/QP_solution.h +include/CGAL/QP_solver/Initialization.h +include/CGAL/QP_solver/QP__filtered_base.h +include/CGAL/QP_solver/QP__filtered_base_impl.h +include/CGAL/QP_solver/QP__partial_base.h +include/CGAL/QP_solver/QP_basis_inverse.h +include/CGAL/QP_solver/QP_basis_inverse_impl.h +include/CGAL/QP_solver/QP_exact_bland_pricing.h +include/CGAL/QP_solver/QP_full_exact_pricing.h +include/CGAL/QP_solver/QP_full_filtered_pricing.h +include/CGAL/QP_solver/QP_functions_impl.h +include/CGAL/QP_solver/QP_partial_exact_pricing.h +include/CGAL/QP_solver/QP_partial_filtered_pricing.h +include/CGAL/QP_solver/QP_pricing_strategy.h +include/CGAL/QP_solver/QP_solution_impl.h +include/CGAL/QP_solver/QP_solver.h +include/CGAL/QP_solver/QP_solver_bounds_impl.h +include/CGAL/QP_solver/QP_solver_impl.h +include/CGAL/QP_solver/QP_solver_nonstandardform_impl.h +include/CGAL/QP_solver/Unbounded_direction.h +include/CGAL/QP_solver/assertions.h +include/CGAL/QP_solver/basic.h +include/CGAL/QP_solver/debug.h +include/CGAL/QP_solver/functors.h +include/CGAL/Qt/CircularArcGraphicsItem.h +include/CGAL/Qt/ConstrainedTriangulationGraphicsItem.h +include/CGAL/Qt/Converter.h +include/CGAL/Qt/DelaunayMeshTriangulationGraphicsItem.h +include/CGAL/Qt/DemosMainWindow.h +include/CGAL/Qt/GraphicsItem.h +include/CGAL/Qt/GraphicsViewCircleInput.h +include/CGAL/Qt/GraphicsViewCircularArcInput.h +include/CGAL/Qt/GraphicsViewInput.h +include/CGAL/Qt/GraphicsViewIsoRectangleInput.h +include/CGAL/Qt/GraphicsViewLineInput.h +include/CGAL/Qt/GraphicsViewNavigation.h +include/CGAL/Qt/GraphicsViewPolylineInput.h +include/CGAL/Qt/LineGraphicsItem.h +include/CGAL/Qt/PainterOstream.h +include/CGAL/Qt/PolygonGraphicsItem.h +include/CGAL/Qt/PowerdiagramGraphicsItem.h +include/CGAL/Qt/RegularTriangulationGraphicsItem.h +include/CGAL/Qt/TriangulationGraphicsItem.h +include/CGAL/Qt/VoronoiGraphicsItem.h +include/CGAL/Qt/debug.h +include/CGAL/Qt/utility.h +include/CGAL/Qualified_result_of.h +include/CGAL/Quotient.h +include/CGAL/Random.h +include/CGAL/Random_access_adaptor.h +include/CGAL/Random_access_value_adaptor.h +include/CGAL/Random_convex_set_traits_2.h +include/CGAL/Random_polygon_2_sweep.h +include/CGAL/Random_polygon_traits_2.h +include/CGAL/Range_segment_tree_traits.h +include/CGAL/Range_tree_d.h +include/CGAL/Range_tree_k.h +include/CGAL/Rational_traits.h +include/CGAL/Ray_2.h +include/CGAL/Ray_2_Bbox_2_intersection.h +include/CGAL/Ray_2_Iso_rectangle_2_intersection.h +include/CGAL/Ray_2_Line_2_intersection.h +include/CGAL/Ray_2_Point_2_intersection.h +include/CGAL/Ray_2_Ray_2_intersection.h +include/CGAL/Ray_2_Segment_2_intersection.h +include/CGAL/Ray_2_Triangle_2_intersection.h +include/CGAL/Ray_3.h +include/CGAL/Real_embeddable_traits.h +include/CGAL/Real_timer.h +include/CGAL/Rectangular_p_center_traits_2.h +include/CGAL/Regular_complex_d.h +include/CGAL/Regular_grid_2.h +include/CGAL/Regular_triangulation_2.h +include/CGAL/Regular_triangulation_3.h +include/CGAL/Regular_triangulation_adaptation_policies_2.h +include/CGAL/Regular_triangulation_adaptation_traits_2.h +include/CGAL/Regular_triangulation_cell_base_3.h +include/CGAL/Regular_triangulation_euclidean_traits_2.h +include/CGAL/Regular_triangulation_euclidean_traits_3.h +include/CGAL/Regular_triangulation_face_base_2.h +include/CGAL/Regular_triangulation_filtered_traits_2.h +include/CGAL/Regular_triangulation_filtered_traits_3.h +include/CGAL/Regular_triangulation_vertex_base_2.h +include/CGAL/Residue.h +include/CGAL/Restricted_double.h +include/CGAL/Ridges.h +include/CGAL/Robust_circumcenter_traits_3.h +include/CGAL/Robust_construction.h +include/CGAL/Root_for_circles_2_2.h +include/CGAL/Root_for_spheres_2_3.h +include/CGAL/Root_of_2.h +include/CGAL/Root_of_traits.h +include/CGAL/Runge_kutta_integrator_2.h +include/CGAL/Safe_circulator_from_iterator.h +include/CGAL/Scalar_factor_traits.h +include/CGAL/Search_traits.h +include/CGAL/Search_traits_2.h +include/CGAL/Search_traits_3.h +include/CGAL/Search_traits_d.h +include/CGAL/Segment_2.h +include/CGAL/Segment_2_Iso_rectangle_2_intersection.h +include/CGAL/Segment_2_Line_2_intersection.h +include/CGAL/Segment_2_Point_2_intersection.h +include/CGAL/Segment_2_Ray_2_intersection.h +include/CGAL/Segment_2_Segment_2_intersection.h +include/CGAL/Segment_2_Triangle_2_intersection.h +include/CGAL/Segment_3.h +include/CGAL/Segment_Delaunay_graph_2/Are_parallel_C2.h +include/CGAL/Segment_Delaunay_graph_2/Are_same_points_C2.h +include/CGAL/Segment_Delaunay_graph_2/Are_same_segments_C2.h +include/CGAL/Segment_Delaunay_graph_2/Arrangement_enum.h +include/CGAL/Segment_Delaunay_graph_2/Arrangement_type_C2.h +include/CGAL/Segment_Delaunay_graph_2/Basic_predicates_C2.h +include/CGAL/Segment_Delaunay_graph_2/Cartesian_converter.h +include/CGAL/Segment_Delaunay_graph_2/Compare_x_2.h +include/CGAL/Segment_Delaunay_graph_2/Compare_y_2.h +include/CGAL/Segment_Delaunay_graph_2/Construct_storage_site_2.h +include/CGAL/Segment_Delaunay_graph_2/Construct_storage_site_with_info_2.h +include/CGAL/Segment_Delaunay_graph_2/Constructions_C2.h +include/CGAL/Segment_Delaunay_graph_2/Filtered_traits_base_2.h +include/CGAL/Segment_Delaunay_graph_2/Filtered_traits_concept_check_tags.h +include/CGAL/Segment_Delaunay_graph_2/Finite_edge_interior_conflict_C2.h +include/CGAL/Segment_Delaunay_graph_2/Infinite_edge_interior_conflict_C2.h +include/CGAL/Segment_Delaunay_graph_2/Is_degenerate_edge_C2.h +include/CGAL/Segment_Delaunay_graph_2/Kernel_wrapper_2.h +include/CGAL/Segment_Delaunay_graph_2/Orientation_C2.h +include/CGAL/Segment_Delaunay_graph_2/Oriented_side_C2.h +include/CGAL/Segment_Delaunay_graph_2/Oriented_side_of_bisector_C2.h +include/CGAL/Segment_Delaunay_graph_2/Predicates_C2.h +include/CGAL/Segment_Delaunay_graph_2/Segment_Delaunay_graph_2_impl.h +include/CGAL/Segment_Delaunay_graph_2/Segment_Delaunay_graph_hierarchy_2_impl.h +include/CGAL/Segment_Delaunay_graph_2/Sqrt_extension_1.h +include/CGAL/Segment_Delaunay_graph_2/Sqrt_extension_2.h +include/CGAL/Segment_Delaunay_graph_2/Traits_base_2.h +include/CGAL/Segment_Delaunay_graph_2/Traits_wrapper_2.h +include/CGAL/Segment_Delaunay_graph_2/Triangulation_face_base_with_edges_2.h +include/CGAL/Segment_Delaunay_graph_2/Vertex_conflict_C2.h +include/CGAL/Segment_Delaunay_graph_2/Voronoi_vertex_C2.h +include/CGAL/Segment_Delaunay_graph_2/Voronoi_vertex_ring_C2.h +include/CGAL/Segment_Delaunay_graph_2/Voronoi_vertex_sqrt_field_C2.h +include/CGAL/Segment_Delaunay_graph_2/basic.h +include/CGAL/Segment_Delaunay_graph_2/edge_list.h +include/CGAL/Segment_Delaunay_graph_2/short_names_2.h +include/CGAL/Segment_Delaunay_graph_2.h +include/CGAL/Segment_Delaunay_graph_adaptation_policies_2.h +include/CGAL/Segment_Delaunay_graph_adaptation_traits_2.h +include/CGAL/Segment_Delaunay_graph_filtered_traits_2.h +include/CGAL/Segment_Delaunay_graph_hierarchy_2.h +include/CGAL/Segment_Delaunay_graph_hierarchy_vertex_base_2.h +include/CGAL/Segment_Delaunay_graph_simple_site_2.h +include/CGAL/Segment_Delaunay_graph_simple_storage_site_2.h +include/CGAL/Segment_Delaunay_graph_site_2.h +include/CGAL/Segment_Delaunay_graph_storage_site_2.h +include/CGAL/Segment_Delaunay_graph_storage_site_with_info_2.h +include/CGAL/Segment_Delaunay_graph_storage_traits_2.h +include/CGAL/Segment_Delaunay_graph_storage_traits_with_info_2.h +include/CGAL/Segment_Delaunay_graph_traits_2.h +include/CGAL/Segment_Delaunay_graph_vertex_base_2.h +include/CGAL/Segment_tree_d.h +include/CGAL/Segment_tree_k.h +include/CGAL/Simple_cartesian.h +include/CGAL/Simple_circular_kernel_2.h +include/CGAL/Simple_homogeneous.h +include/CGAL/Simple_spherical_kernel_3.h +include/CGAL/Sixtuple.h +include/CGAL/Skin_surface_3.h +include/CGAL/Skin_surface_base_3.h +include/CGAL/Skin_surface_filtered_traits_3.h +include/CGAL/Skin_surface_marching_tetrahedra_observer_3.h +include/CGAL/Skin_surface_polyhedral_items_3.h +include/CGAL/Skin_surface_polyhedral_items_with_face_information.h +include/CGAL/Skin_surface_quadratic_surface_3.h +include/CGAL/Skin_surface_refinement_policy_3.h +include/CGAL/Skin_surface_traits_3.h +include/CGAL/Small_side_angle_bisector_decomposition_2.h +include/CGAL/Snap_rounding_2.h +include/CGAL/Snap_rounding_kd_2.h +include/CGAL/Snap_rounding_traits_2.h +include/CGAL/Sorted_matrix_search_traits_adaptor.h +include/CGAL/Sphere_3.h +include/CGAL/Spherical_kernel_3.h +include/CGAL/Spherical_kernel_intersections.h +include/CGAL/Spherical_kernel_type_equality_wrapper.h +include/CGAL/Splitters.h +include/CGAL/Sqrt_extension/Algebraic_extension_traits.h +include/CGAL/Sqrt_extension/Algebraic_structure_traits.h +include/CGAL/Sqrt_extension/Chinese_remainder_traits.h +include/CGAL/Sqrt_extension/Coercion_traits.h +include/CGAL/Sqrt_extension/Fraction_traits.h +include/CGAL/Sqrt_extension/Modular_traits.h +include/CGAL/Sqrt_extension/Real_embeddable_traits.h +include/CGAL/Sqrt_extension/Scalar_factor_traits.h +include/CGAL/Sqrt_extension/Sqrt_extension_type.h +include/CGAL/Sqrt_extension/io.h +include/CGAL/Sqrt_extension.h +include/CGAL/Square_border_parameterizer_3.h +include/CGAL/Static_filter_error.h +include/CGAL/Static_filters/Compare_y_at_x_2.h +include/CGAL/Static_filters/Coplanar_orientation_3.h +include/CGAL/Static_filters/Coplanar_side_of_bounded_circle_3.h +include/CGAL/Static_filters/Orientation_2.h +include/CGAL/Static_filters/Orientation_3.h +include/CGAL/Static_filters/Side_of_oriented_circle_2.h +include/CGAL/Static_filters/Side_of_oriented_sphere_3.h +include/CGAL/Static_filters/tools.h +include/CGAL/Static_filters.h +include/CGAL/Straight_2.h +include/CGAL/Straight_skeleton_2/Polygon_offset_builder_2_impl.h +include/CGAL/Straight_skeleton_2/Straight_skeleton_aux.h +include/CGAL/Straight_skeleton_2/Straight_skeleton_builder_2_impl.h +include/CGAL/Straight_skeleton_2/Straight_skeleton_builder_events_2.h +include/CGAL/Straight_skeleton_2/Straight_skeleton_builder_traits_2_aux.h +include/CGAL/Straight_skeleton_2/assertions.h +include/CGAL/Straight_skeleton_2/debug.h +include/CGAL/Straight_skeleton_2/test.h +include/CGAL/Straight_skeleton_2.h +include/CGAL/Straight_skeleton_builder_2.h +include/CGAL/Straight_skeleton_builder_traits_2.h +include/CGAL/Straight_skeleton_converter_2.h +include/CGAL/Straight_skeleton_face_base_2.h +include/CGAL/Straight_skeleton_halfedge_base_2.h +include/CGAL/Straight_skeleton_items_2.h +include/CGAL/Straight_skeleton_vertex_base_2.h +include/CGAL/Stream_lines_2.h +include/CGAL/Subdivision_mask_3.h +include/CGAL/Subdivision_method_3.h +include/CGAL/Subdivision_method_impl_3.h +include/CGAL/Surface_mesh_cell_base_3.h +include/CGAL/Surface_mesh_complex_2_in_triangulation_3.h +include/CGAL/Surface_mesh_default_criteria_3.h +include/CGAL/Surface_mesh_default_edges_criteria_3.h +include/CGAL/Surface_mesh_default_triangulation_3.h +include/CGAL/Surface_mesh_simplification/Detail/Common.h +include/CGAL/Surface_mesh_simplification/Detail/Edge_collapse.h +include/CGAL/Surface_mesh_simplification/Detail/Edge_collapse_impl.h +include/CGAL/Surface_mesh_simplification/HalfedgeGraph_Polyhedron_3.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Count_ratio_stop_predicate.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Count_stop_predicate.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Detail/Lindstrom_Turk_core.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Detail/Lindstrom_Turk_core_impl.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_length_cost.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_profile.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Edge_profile_impl.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/LindstromTurk.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/LindstromTurk_cost.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/LindstromTurk_params.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/LindstromTurk_placement.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Midpoint_and_length.h +include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Midpoint_placement.h +include/CGAL/Surface_mesh_simplification/edge_collapse.h +include/CGAL/Surface_mesh_simplification/halfedge_collapse_Polyhedron_3.h +include/CGAL/Surface_mesh_traits_generator_3.h +include/CGAL/Surface_mesh_triangulation_generator_3.h +include/CGAL/Surface_mesh_vertex_base_3.h +include/CGAL/Surface_mesher/Combining_oracle.h +include/CGAL/Surface_mesher/Has_edges.h +include/CGAL/Surface_mesher/Implicit_surface_oracle_3.h +include/CGAL/Surface_mesher/Intersection_data_structure_3.h +include/CGAL/Surface_mesher/Null_oracle_visitor.h +include/CGAL/Surface_mesher/Point_surface_indices_oracle_visitor.h +include/CGAL/Surface_mesher/Polyhedral_oracle.h +include/CGAL/Surface_mesher/Sphere_oracle_3.h +include/CGAL/Surface_mesher/Standard_criteria.h +include/CGAL/Surface_mesher/Surface_mesher.h +include/CGAL/Surface_mesher/Surface_mesher_edges_level.h +include/CGAL/Surface_mesher/Surface_mesher_edges_level_visitor.h +include/CGAL/Surface_mesher/Surface_mesher_manifold.h +include/CGAL/Surface_mesher/Surface_mesher_regular_edges.h +include/CGAL/Surface_mesher/Surface_mesher_visitor.h +include/CGAL/Surface_mesher/Types_generators.h +include/CGAL/Surface_mesher/Verbose_flag.h +include/CGAL/Surface_mesher/Vertices_on_the_same_psc_element_criterion.h +include/CGAL/Surface_mesher/Vertices_on_the_same_surface_criterion.h +include/CGAL/Surface_mesher_generator.h +include/CGAL/Sweep_line_2/Arr_basic_insertion_sl_visitor.h +include/CGAL/Sweep_line_2/Arr_basic_insertion_traits_2.h +include/CGAL/Sweep_line_2/Arr_batched_pl_sl_visitor.h +include/CGAL/Sweep_line_2/Arr_construction_event.h +include/CGAL/Sweep_line_2/Arr_construction_sl_visitor.h +include/CGAL/Sweep_line_2/Arr_construction_subcurve.h +include/CGAL/Sweep_line_2/Arr_default_overlay_traits_base.h +include/CGAL/Sweep_line_2/Arr_insertion_sl_visitor.h +include/CGAL/Sweep_line_2/Arr_insertion_traits_2.h +include/CGAL/Sweep_line_2/Arr_overlay_sl_visitor.h +include/CGAL/Sweep_line_2/Arr_overlay_subcurve.h +include/CGAL/Sweep_line_2/Arr_overlay_traits_2.h +include/CGAL/Sweep_line_2/Arr_vert_decomp_sl_visitor.h +include/CGAL/Sweep_line_2/Basic_sweep_line_2_impl.h +include/CGAL/Sweep_line_2/Sweep_line_2_debug.h +include/CGAL/Sweep_line_2/Sweep_line_2_impl.h +include/CGAL/Sweep_line_2/Sweep_line_2_utils.h +include/CGAL/Sweep_line_2/Sweep_line_2_visitors.h +include/CGAL/Sweep_line_2/Sweep_line_curve_pair.h +include/CGAL/Sweep_line_2/Sweep_line_event.h +include/CGAL/Sweep_line_2/Sweep_line_functors.h +include/CGAL/Sweep_line_2/Sweep_line_subcurve.h +include/CGAL/Sweep_line_2.h +include/CGAL/Sweep_line_2_algorithms.h +include/CGAL/Sweep_line_empty_visitor.h +include/CGAL/Taucs_fix.h +include/CGAL/Taucs_matrix.h +include/CGAL/Taucs_solver_traits.h +include/CGAL/Taucs_vector.h +include/CGAL/Tetrahedron_3.h +include/CGAL/Threetuple.h +include/CGAL/Timer.h +include/CGAL/Tools/Counter.h +include/CGAL/Tools/Label.h +include/CGAL/Tools/Log.h +include/CGAL/Tools/chained_map.h +include/CGAL/Tools/utility_macros.h +include/CGAL/Transform_iterator.h +include/CGAL/Tree_assertions.h +include/CGAL/Tree_base.h +include/CGAL/Tree_traits.h +include/CGAL/Triangle_2.h +include/CGAL/Triangle_2_Iso_rectangle_2_intersection.h +include/CGAL/Triangle_2_Line_2_intersection.h +include/CGAL/Triangle_2_Point_2_intersection.h +include/CGAL/Triangle_2_Ray_2_intersection.h +include/CGAL/Triangle_2_Segment_2_intersection.h +include/CGAL/Triangle_2_Triangle_2_do_intersect.h +include/CGAL/Triangle_2_Triangle_2_intersection.h +include/CGAL/Triangle_3.h +include/CGAL/Triangle_3_Line_3_do_intersect.h +include/CGAL/Triangle_3_Plane_3_do_intersect.h +include/CGAL/Triangle_3_Point_3_do_intersect.h +include/CGAL/Triangle_3_Ray_3_do_intersect.h +include/CGAL/Triangle_3_Segment_3_do_intersect.h +include/CGAL/Triangle_3_Tetrahedron_3_do_intersect.h +include/CGAL/Triangle_3_Triangle_3_do_intersect.h +include/CGAL/Triangular_field_2.h +include/CGAL/Triangulated_mixed_complex_observer_3.h +include/CGAL/Triangulation_2.h +include/CGAL/Triangulation_2_traits_3.h +include/CGAL/Triangulation_3.h +include/CGAL/Triangulation_cell_base_3.h +include/CGAL/Triangulation_cell_base_with_circumcenter_3.h +include/CGAL/Triangulation_cell_base_with_info_3.h +include/CGAL/Triangulation_conformer_2.h +include/CGAL/Triangulation_data_structure_2.h +include/CGAL/Triangulation_data_structure_3.h +include/CGAL/Triangulation_data_structure_using_list_2.h +include/CGAL/Triangulation_default_data_structure_2.h +include/CGAL/Triangulation_ds_cell_base_3.h +include/CGAL/Triangulation_ds_circulators_2.h +include/CGAL/Triangulation_ds_circulators_3.h +include/CGAL/Triangulation_ds_face_2.h +include/CGAL/Triangulation_ds_face_base_2.h +include/CGAL/Triangulation_ds_iterators_2.h +include/CGAL/Triangulation_ds_iterators_3.h +include/CGAL/Triangulation_ds_vertex_2.h +include/CGAL/Triangulation_ds_vertex_base_2.h +include/CGAL/Triangulation_ds_vertex_base_3.h +include/CGAL/Triangulation_euclidean_traits_2.h +include/CGAL/Triangulation_euclidean_traits_xy_3.h +include/CGAL/Triangulation_euclidean_traits_xz_3.h +include/CGAL/Triangulation_euclidean_traits_yz_3.h +include/CGAL/Triangulation_face_base_2.h +include/CGAL/Triangulation_face_base_with_info_2.h +include/CGAL/Triangulation_geom_traits_3.h +include/CGAL/Triangulation_hierarchy_2.h +include/CGAL/Triangulation_hierarchy_3.h +include/CGAL/Triangulation_hierarchy_vertex_base_2.h +include/CGAL/Triangulation_hierarchy_vertex_base_3.h +include/CGAL/Triangulation_incremental_builder_3.h +include/CGAL/Triangulation_iterator_adaptator.h +include/CGAL/Triangulation_line_face_circulator_2.h +include/CGAL/Triangulation_short_names_2.h +include/CGAL/Triangulation_short_names_3.h +include/CGAL/Triangulation_simplex_3.h +include/CGAL/Triangulation_utils_2.h +include/CGAL/Triangulation_utils_3.h +include/CGAL/Triangulation_vertex_base_2.h +include/CGAL/Triangulation_vertex_base_3.h +include/CGAL/Triangulation_vertex_base_with_id_2.h +include/CGAL/Triangulation_vertex_base_with_info_2.h +include/CGAL/Triangulation_vertex_base_with_info_3.h +include/CGAL/Trivial_iterator.h +include/CGAL/Two_vertices_parameterizer_3.h +include/CGAL/Twotuple.h +include/CGAL/Umbilics.h +include/CGAL/Uncertain.h +include/CGAL/Unfiltered_predicate_adaptor.h +include/CGAL/Union_find.h +include/CGAL/Union_of_balls_3.h +include/CGAL/Unique_hash_map.h +include/CGAL/Vector_2.h +include/CGAL/Vector_3.h +include/CGAL/Voronoi_diagram_2/Accessor.h +include/CGAL/Voronoi_diagram_2/Adaptation_traits_base_2.h +include/CGAL/Voronoi_diagram_2/Adaptation_traits_functors.h +include/CGAL/Voronoi_diagram_2/Apollonius_graph_degeneracy_testers.h +include/CGAL/Voronoi_diagram_2/Apollonius_graph_nearest_site_2.h +include/CGAL/Voronoi_diagram_2/Cached_degeneracy_testers.h +include/CGAL/Voronoi_diagram_2/Circulator_adaptors.h +include/CGAL/Voronoi_diagram_2/Connected_components.h +include/CGAL/Voronoi_diagram_2/Construct_dual_points.h +include/CGAL/Voronoi_diagram_2/Default_site_inserters.h +include/CGAL/Voronoi_diagram_2/Default_site_removers.h +include/CGAL/Voronoi_diagram_2/Degeneracy_tester_binders.h +include/CGAL/Voronoi_diagram_2/Delaunay_triangulation_degeneracy_testers.h +include/CGAL/Voronoi_diagram_2/Delaunay_triangulation_nearest_site_2.h +include/CGAL/Voronoi_diagram_2/Dummy_iterator.h +include/CGAL/Voronoi_diagram_2/Edge_less.h +include/CGAL/Voronoi_diagram_2/Face.h +include/CGAL/Voronoi_diagram_2/Finder_classes.h +include/CGAL/Voronoi_diagram_2/Halfedge.h +include/CGAL/Voronoi_diagram_2/Handle_adaptor.h +include/CGAL/Voronoi_diagram_2/Identity_rejectors.h +include/CGAL/Voronoi_diagram_2/Iterator_adaptors.h +include/CGAL/Voronoi_diagram_2/Policy_base.h +include/CGAL/Voronoi_diagram_2/Regular_triangulation_degeneracy_testers.h +include/CGAL/Voronoi_diagram_2/Regular_triangulation_nearest_site_2.h +include/CGAL/Voronoi_diagram_2/Segment_Delaunay_graph_degeneracy_testers.h +include/CGAL/Voronoi_diagram_2/Segment_Delaunay_graph_nearest_site_2.h +include/CGAL/Voronoi_diagram_2/Site_accessors.h +include/CGAL/Voronoi_diagram_2/Unbounded_edges.h +include/CGAL/Voronoi_diagram_2/Unbounded_faces.h +include/CGAL/Voronoi_diagram_2/Validity_testers.h +include/CGAL/Voronoi_diagram_2/Vertex.h +include/CGAL/Voronoi_diagram_2/basic.h +include/CGAL/Voronoi_diagram_2/short_names_2.h +include/CGAL/Voronoi_diagram_2/tags.h +include/CGAL/Voronoi_diagram_2.h +include/CGAL/Voronoi_intersection_2_traits_3.h +include/CGAL/Weighted_Minkowski_distance.h +include/CGAL/Weighted_alpha_shape_euclidean_traits_2.h +include/CGAL/Weighted_alpha_shape_euclidean_traits_3.h +include/CGAL/Weighted_point.h +include/CGAL/Weighted_point_with_psc_localisation.h +include/CGAL/Weighted_point_with_surface_index.h +include/CGAL/Weighted_point_with_surface_index_geom_traits.h +include/CGAL/Width_3.h +include/CGAL/Width_default_traits_3.h +include/CGAL/Width_polyhedron_3.h +include/CGAL/Win32_exception.h +include/CGAL/aff_transformation_tags.h +include/CGAL/algorithm.h +include/CGAL/all_furthest_neighbors_2.h +include/CGAL/apply_to_range.h +include/CGAL/approximated_offset_2.h +include/CGAL/arrange_offset_polygons_2.h +include/CGAL/array.h +include/CGAL/assertions.h +include/CGAL/assertions_behaviour.h +include/CGAL/auto_link/CGAL.h +include/CGAL/auto_link/CGALQt.h +include/CGAL/auto_link/CORE.h +include/CGAL/auto_link/GMP.h +include/CGAL/auto_link/ImageIO.h +include/CGAL/auto_link/LAPACK.h +include/CGAL/auto_link/MPFR.h +include/CGAL/auto_link/PDB.h +include/CGAL/auto_link/Qt4.h +include/CGAL/auto_link/TAUCS.h +include/CGAL/auto_link/auto_link.h +include/CGAL/barycenter.h +include/CGAL/basic.h +include/CGAL/basic_classes.h +include/CGAL/basic_constructions_2.h +include/CGAL/basic_constructions_3.h +include/CGAL/bbox_intersection_3.h +include/CGAL/boost/graph/graph_traits_Delaunay_triangulation_2.h +include/CGAL/boost/graph/graph_traits_HalfedgeDS.h +include/CGAL/boost/graph/graph_traits_Polyhedron_3.h +include/CGAL/boost/graph/graph_traits_Triangulation_2.h +include/CGAL/boost/graph/halfedge_graph_traits.h +include/CGAL/boost/graph/halfedge_graph_traits_HalfedgeDS.h +include/CGAL/boost/graph/halfedge_graph_traits_Polyhedron_3.h +include/CGAL/boost/graph/named_function_params.h +include/CGAL/boost/graph/properties.h +include/CGAL/boost/graph/properties_Polyhedron_3.h +include/CGAL/bounding_box.h +include/CGAL/box_intersection_d.h +include/CGAL/cartesian_homogeneous_conversion.h +include/CGAL/centroid.h +include/CGAL/certified_numeric_predicates.h +include/CGAL/certified_quotient_predicates.h +include/CGAL/ch_akl_toussaint.h +include/CGAL/ch_bykat.h +include/CGAL/ch_eddy.h +include/CGAL/ch_function_objects_2.h +include/CGAL/ch_graham_andrew.h +include/CGAL/ch_jarvis.h +include/CGAL/ch_melkman.h +include/CGAL/ch_selected_extreme_points_2.h +include/CGAL/circulator.h +include/CGAL/circulator_bases.h +include/CGAL/circulator_impl.h +include/CGAL/compare_vertices.h +include/CGAL/compiler_config.h +include/CGAL/compute_outer_frame_margin.h +include/CGAL/config.h +include/CGAL/connect_holes.h +include/CGAL/constant.h +include/CGAL/constructions/Polygon_offset_cons_ftC2.h +include/CGAL/constructions/Straight_skeleton_cons_ftC2.h +include/CGAL/constructions/constructions_for_voronoi_intersection_cartesian_2_3.h +include/CGAL/constructions/constructions_on_weighted_points_cartesian_3.h +include/CGAL/constructions/kernel_ftC2.h +include/CGAL/constructions/kernel_ftC3.h +include/CGAL/constructions/squared_radius_smallest_orthogonalcircle_ftC2.h +include/CGAL/constructions_d.h +include/CGAL/constructions_on_weighted_points_cartesian_2.h +include/CGAL/constructions_on_weighted_points_homogeneous_2.h +include/CGAL/convert_to_bfi.h +include/CGAL/convex_hull_2.h +include/CGAL/convex_hull_3.h +include/CGAL/convex_hull_constructive_traits_2.h +include/CGAL/convex_hull_incremental_3.h +include/CGAL/convex_hull_traits_2.h +include/CGAL/convexity_check_2.h +include/CGAL/convexity_check_3.h +include/CGAL/copy_n.h +include/CGAL/create_offset_polygons_2.h +include/CGAL/create_offset_polygons_from_polygon_with_holes_2.h +include/CGAL/create_straight_skeleton_2.h +include/CGAL/create_straight_skeleton_from_polygon_with_holes_2.h +include/CGAL/determinant.h +include/CGAL/distance_predicates_2.h +include/CGAL/distance_predicates_3.h +include/CGAL/double.h +include/CGAL/eigen.h +include/CGAL/eigen_2.h +include/CGAL/enum.h +include/CGAL/envelope_2.h +include/CGAL/envelope_3.h +include/CGAL/exceptions.h +include/CGAL/extended_euclidean_algorithm.h +include/CGAL/extremal_polygon_2.h +include/CGAL/float.h +include/CGAL/function_objects.h +include/CGAL/functions_on_enums.h +include/CGAL/functions_on_signs.h +include/CGAL/generators.h +include/CGAL/generic_sweep.h +include/CGAL/gl.h +include/CGAL/global_functions_circular_kernel_2.h +include/CGAL/global_functions_on_root_for_sphere_2_3.h +include/CGAL/global_functions_on_roots_and_polynomials_1_3.h +include/CGAL/global_functions_on_roots_and_polynomials_2_3.h +include/CGAL/global_functions_spherical_kernel_3.h +include/CGAL/glu.h +include/CGAL/gmpxx.h +include/CGAL/gmpxx_coercion_traits.h +include/CGAL/graph_traits_Arrangement_2.h +include/CGAL/graph_traits_Dual_Arrangement_2.h +include/CGAL/halfedgeDS_cut_component.h +include/CGAL/halfedgeds_connected_components.h +include/CGAL/hilbert_sort.h +include/CGAL/in_place_edge_list.h +include/CGAL/int.h +include/CGAL/interpolation_functions.h +include/CGAL/intersection_2.h +include/CGAL/intersection_2_1.h +include/CGAL/intersection_2_2.h +include/CGAL/intersection_2_3.h +include/CGAL/intersection_3.h +include/CGAL/intersection_3_1.h +include/CGAL/intersections.h +include/CGAL/intersections_d.h +include/CGAL/ipower.h +include/CGAL/is_y_monotone_2.h +include/CGAL/iterator.h +include/CGAL/kdtree_d.h +include/CGAL/kernel_assertions.h +include/CGAL/kernel_basic.h +include/CGAL/kernel_to_kernel.h +include/CGAL/known_bit_size_integers.h +include/CGAL/leda_bigfloat.h +include/CGAL/leda_bigfloat_interval.h +include/CGAL/leda_coercion_traits.h +include/CGAL/leda_integer.h +include/CGAL/leda_rational.h +include/CGAL/leda_real.h +include/CGAL/linear_least_squares_fitting_2.h +include/CGAL/linear_least_squares_fitting_3.h +include/CGAL/linear_least_squares_fitting_circles_2.h +include/CGAL/linear_least_squares_fitting_cuboids_3.h +include/CGAL/linear_least_squares_fitting_points_2.h +include/CGAL/linear_least_squares_fitting_points_3.h +include/CGAL/linear_least_squares_fitting_rectangles_2.h +include/CGAL/linear_least_squares_fitting_segments_2.h +include/CGAL/linear_least_squares_fitting_segments_3.h +include/CGAL/linear_least_squares_fitting_spheres_3.h +include/CGAL/linear_least_squares_fitting_tetrahedra_3.h +include/CGAL/linear_least_squares_fitting_triangles_2.h +include/CGAL/linear_least_squares_fitting_triangles_3.h +include/CGAL/long_double.h +include/CGAL/long_long.h +include/CGAL/make_piecewise_smooth_surface_mesh.h +include/CGAL/make_skin_surface_mesh_3.h +include/CGAL/make_surface_mesh.h +include/CGAL/make_union_of_balls_3.h +include/CGAL/marching_tetrahedra_3.h +include/CGAL/memory.h +include/CGAL/mesh_skin_surface_3.h +include/CGAL/mesh_union_of_balls_3.h +include/CGAL/min_max_n.h +include/CGAL/min_quadrilateral_2.h +include/CGAL/minimum_enclosing_quadrilateral_2.h +include/CGAL/minkowski_sum_2.h +include/CGAL/monotone_matrix_search.h +include/CGAL/more_functions_on_signs.h +include/CGAL/mpq_class.h +include/CGAL/mpz_class.h +include/CGAL/multiset_assertions.h +include/CGAL/natural_neighbor_coordinates_2.h +include/CGAL/natural_neighbor_coordinates_3.h +include/CGAL/nearest_neighbor_delaunay_2.h +include/CGAL/normal_vector_newell_3.h +include/CGAL/number_type_basic.h +include/CGAL/number_utils.h +include/CGAL/number_utils_classes.h +include/CGAL/offset_polygon_2.h +include/CGAL/parameterize.h +include/CGAL/partition_2.h +include/CGAL/partition_is_valid_2.h +include/CGAL/pierce_rectangles_2.h +include/CGAL/point_generators_2.h +include/CGAL/point_generators_3.h +include/CGAL/point_generators_d.h +include/CGAL/polygon_function_objects.h +include/CGAL/polyhedron_cut_plane_3.h +include/CGAL/polynomial_utils.h +include/CGAL/predicates/Polygon_offset_pred_ftC2.h +include/CGAL/predicates/Regular_triangulation_ftC2.h +include/CGAL/predicates/Regular_triangulation_ftC3.h +include/CGAL/predicates/Regular_triangulation_rtH2.h +include/CGAL/predicates/Regular_triangulation_rtH3.h +include/CGAL/predicates/Straight_skeleton_pred_ftC2.h +include/CGAL/predicates/in_smallest_orthogonalcircle_ftC2.h +include/CGAL/predicates/kernel_ftC2.h +include/CGAL/predicates/kernel_ftC3.h +include/CGAL/predicates/predicates_for_mixed_complex_3.h +include/CGAL/predicates/predicates_for_voronoi_intersection_cartesian_2_3.h +include/CGAL/predicates/predicates_on_weighted_points_cartesian_3.h +include/CGAL/predicates/sign_of_determinant.h +include/CGAL/predicates_d.h +include/CGAL/predicates_on_lines_2.h +include/CGAL/predicates_on_points_2.h +include/CGAL/predicates_on_points_3.h +include/CGAL/primes.h +include/CGAL/random_convex_set_2.h +include/CGAL/random_polygon_2.h +include/CGAL/random_selection.h +include/CGAL/range_search_delaunay_2.h +include/CGAL/rational_rotation.h +include/CGAL/rectangular_3_center_2.h +include/CGAL/rectangular_p_center_2.h +include/CGAL/regular_neighbor_coordinates_2.h +include/CGAL/representation_tags.h +include/CGAL/segment_intersection_points_2.h +include/CGAL/sibson_gradient_fitting.h +include/CGAL/simple_transformations_d.h +include/CGAL/simplest_rational_in_interval.h +include/CGAL/sorted_matrix_search.h +include/CGAL/spatial_sort.h +include/CGAL/squared_distance_2.h +include/CGAL/squared_distance_2_1.h +include/CGAL/squared_distance_2_2.h +include/CGAL/squared_distance_3.h +include/CGAL/squared_distance_3_0.h +include/CGAL/squared_distance_3_1.h +include/CGAL/squared_distance_3_2.h +include/CGAL/squared_distance_utils.h +include/CGAL/streamlines_assertions.h +include/CGAL/subdivide_skin_surface_mesh_3.h +include/CGAL/subdivide_union_of_balls_mesh_3.h +include/CGAL/surface_mesh_parameterization_assertions.h +include/CGAL/surface_neighbor_coordinates_3.h +include/CGAL/surface_neighbors_3.h +include/CGAL/sweep_observer.h +include/CGAL/tags.h +include/CGAL/to_rational.h +include/CGAL/triangulate_mixed_complex_3.h +include/CGAL/triangulate_power_diagram_3.h +include/CGAL/triangulation_assertions.h +include/CGAL/type_traits.h +include/CGAL/user_classes.h +include/CGAL/utility.h +include/CGAL/utils.h +include/CGAL/utils_classes.h +include/CGAL/vector.h +include/CGAL/version.h +include/CGAL/vtkSurfaceMesherContourFilter.h +include/CGAL/width_assertions.h +include/CGAL/wmult.h +@dirrm include/CGAL/AABB_tree +@dirrm include/CGAL/Algebraic_kernel_for_circles +@dirrm include/CGAL/Algebraic_kernel_for_spheres +@dirrm include/CGAL/Apollonius_graph_2/new_traits +@dirrm include/CGAL/Apollonius_graph_2/uncertain +@dirrm include/CGAL/Apollonius_graph_2 +@dirrm include/CGAL/Approximate_min_ellipsoid_d +@dirrm include/CGAL/Arr_geometry_traits +@dirrm include/CGAL/Arr_point_location +@dirrm include/CGAL/Arr_spherical_gaussian_map_3 +@dirrm include/CGAL/Arr_topology_traits +@dirrm include/CGAL/Arrangement_2 +@dirrm include/CGAL/Boolean_set_operations_2 +@dirrm include/CGAL/Box_intersection_d +@dirrm include/CGAL/CORE/geom2d +@dirrm include/CGAL/CORE/geom3d +@dirrm include/CGAL/CORE/poly +@dirrm include/CGAL/CORE +@dirrm include/CGAL/Cartesian +@dirrm include/CGAL/Circular_kernel_2 +@dirrm include/CGAL/Circular_kernel_3 +@dirrm include/CGAL/Convex_hull_2 +@dirrm include/CGAL/Envelope_2 +@dirrm include/CGAL/Envelope_3 +@dirrm include/CGAL/Filtered_bbox_circular_kernel_2 +@dirrm include/CGAL/Filtered_kernel +@dirrm include/CGAL/GMP +@dirrm include/CGAL/Homogeneous +@dirrm include/CGAL/IO/pixmaps +@dirrm include/CGAL/IO +@dirrm include/CGAL/Intersections_2 +@dirrm include/CGAL/Intersections_3 +@dirrm include/CGAL/Kernel +@dirrm include/CGAL/Kernel_d +@dirrm include/CGAL/Kinetic/IO/internal +@dirrm include/CGAL/Kinetic/IO +@dirrm include/CGAL/Kinetic/internal/Kernel +@dirrm include/CGAL/Kinetic/internal +@dirrm include/CGAL/Kinetic +@dirrm include/CGAL/Lapack +@dirrm include/CGAL/Mesh_2 +@dirrm include/CGAL/Meshes +@dirrm include/CGAL/Min_circle_2 +@dirrm include/CGAL/Min_ellipse_2 +@dirrm include/CGAL/Min_sphere_d +@dirrm include/CGAL/Min_sphere_of_spheres_d +@dirrm include/CGAL/Minkowski_sum_2 +@dirrm include/CGAL/Modular_arithmetic +@dirrm include/CGAL/Nef_2 +@dirrm include/CGAL/Nef_3 +@dirrm include/CGAL/Nef_S2 +@dirrm include/CGAL/Number_types +@dirrm include/CGAL/OpenNL +@dirrm include/CGAL/Optimisation +@dirrm include/CGAL/PDB/internal/tnt +@dirrm include/CGAL/PDB/internal +@dirrm include/CGAL/PDB +@dirrm include/CGAL/Partition_2 +@dirrm include/CGAL/Polygon_2 +@dirrm include/CGAL/Polynomial/internal/Filtered_kernel +@dirrm include/CGAL/Polynomial/internal/Filtered_rational +@dirrm include/CGAL/Polynomial/internal/Kernel +@dirrm include/CGAL/Polynomial/internal/Rational +@dirrm include/CGAL/Polynomial/internal +@dirrm include/CGAL/Polynomial +@dirrm include/CGAL/QP_solver +@dirrm include/CGAL/Qt +@dirrm include/CGAL/Segment_Delaunay_graph_2 +@dirrm include/CGAL/Sqrt_extension +@dirrm include/CGAL/Static_filters +@dirrm include/CGAL/Straight_skeleton_2 +@dirrm include/CGAL/Surface_mesh_simplification/Detail +@dirrm include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Detail +@dirrm include/CGAL/Surface_mesh_simplification/Policies/Edge_collapse +@dirrm include/CGAL/Surface_mesh_simplification/Policies +@dirrm include/CGAL/Surface_mesh_simplification +@dirrm include/CGAL/Surface_mesher +@dirrm include/CGAL/Sweep_line_2 +@dirrm include/CGAL/Tools +@dirrm include/CGAL/Voronoi_diagram_2 +@dirrm include/CGAL/auto_link +@dirrm include/CGAL/boost/graph +@dirrm include/CGAL/boost +@dirrm include/CGAL/constructions +@dirrm include/CGAL/predicates +@dirrm include/CGAL +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/CHANGES +%%PORTDOCS%%%%DOCSDIR%%/LICENSE +%%PORTDOCS%%%%DOCSDIR%%/LICENSE.FREE_USE +%%PORTDOCS%%%%DOCSDIR%%/LICENSE.LGPL +%%PORTDOCS%%%%DOCSDIR%%/LICENSE.QPL +%%PORTDOCS%%%%DOCSDIR%%/cgal_manual.pdf +%%PORTDOCS%%@dirrm %%DOCSDIR%% |