Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 May 2020 05:35:11 +0000 (UTC)
From:      =?UTF-8?Q?Lo=c3=afc_Bartoletti?= <lbartoletti@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r534326 - in head: cad/openscad cad/openscad-devel databases/postgis23 databases/postgis24 databases/postgis25 databases/postgis30 databases/sfcgal databases/sfcgal/files games/flightge...
Message-ID:  <202005080535.0485ZBoZ014568@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lbartoletti
Date: Fri May  8 05:35:11 2020
New Revision: 534326
URL: https://svnweb.freebsd.org/changeset/ports/534326

Log:
  smath/cgal: Update to 5.0.2
  
  The new version of CGAL brings improvements and a lot of changes, including 2 major ones [1](header only[2] and require c++14) requiring to patch all software depending on it.
  
  [1] https://www.cgal.org/2019/11/08/cgal50/
  [2] https://doc.cgal.org/latest/Manual/installation.html
  
  math/cgal:
  
     - Update to 5.0.2
  
  databases/sfcgal:
  
     - Fix with cgal5 : use c++14 and add gmpxx link
  
  databases/postgis*:
  
     - bump portversion needed due to cgal and sfcgal changes
  
  cad/openscad:
  
     - remove LIB_DEPENDS and add BUILD_DEPENDS
     - Use c++14
  
  cad/openscad-devel:
  
     - remove LIB_DEPENDS and add BUILD_DEPENDS
     - Use c++14
  
  games/flightgear-terragear:
  
     - remove LIB_DEPENDS and add BUILD_DEPENDS
     - fix Boost error (ld: error: undefined symbol: boost::thread::hardware_concurrency())
  
  graphics/colmap:
  
     - remove LIB_DEPENDS and add BUILD_DEPENDS
     - fix CMAKE_CXX_FLAGS with c++14
  
  PR:		245824
  Approved by:	wen, jbeich, tcberner (mentor)
  Differential Revision:	D24578

Added:
  head/databases/sfcgal/files/
  head/databases/sfcgal/files/patch-CMakeLists.txt   (contents, props changed)
  head/databases/sfcgal/files/patch-src_CMakeLists.txt   (contents, props changed)
  head/databases/sfcgal/files/patch-src_config.h.cmake   (contents, props changed)
  head/games/flightgear-terragear/files/patch-src_CMakeLists.txt   (contents, props changed)
Modified:
  head/cad/openscad-devel/Makefile
  head/cad/openscad/Makefile
  head/cad/openscad/distinfo
  head/databases/postgis23/Makefile
  head/databases/postgis24/Makefile
  head/databases/postgis25/Makefile
  head/databases/postgis30/Makefile
  head/databases/sfcgal/Makefile
  head/games/flightgear-terragear/Makefile
  head/graphics/colmap/Makefile
  head/graphics/colmap/distinfo
  head/math/cgal/Makefile
  head/math/cgal/distinfo
  head/math/cgal/pkg-plist

Modified: head/cad/openscad-devel/Makefile
==============================================================================
--- head/cad/openscad-devel/Makefile	Fri May  8 05:34:55 2020	(r534325)
+++ head/cad/openscad-devel/Makefile	Fri May  8 05:35:11 2020	(r534326)
@@ -3,7 +3,7 @@
 
 PORTNAME=	openscad
 PORTVERSION=	2020.01.04
-PORTREVISION=	1
+PORTREVISION=	2
 #PORTREVISION=	1
 CATEGORIES=	cad
 PKGNAMESUFFIX=	-devel
@@ -17,12 +17,12 @@ COMMENT=	Programmer's solid 3D CAD modeller #'
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+BUILD_DEPENDS=  cgal>0:math/cgal
 LIB_DEPENDS=	libzip.so:archivers/libzip \
 		libhidapi.so:comms/hidapi \
 		libboost_regex.so:devel/boost-libs \
 		libqscintilla2_qt5.so:devel/qscintilla2-qt5 \
 		libopencsg.so:graphics/opencsg \
-		libCGAL.so:math/cgal \
 		libgmp.so:math/gmp \
 		libmpfr.so:math/mpfr \
 		libfreetype.so:print/freetype2 \
@@ -32,7 +32,7 @@ LIB_DEPENDS=	libzip.so:archivers/libzip \
 
 CONFLICTS=	openscad
 
-USES=		bison compiler:c++11-lib desktop-file-utils eigen:3 gettext \
+USES=		bison compiler:c++14-lang desktop-file-utils eigen:3 gettext \
 		gl gnome pkgconfig qmake qt:5 shared-mime-info xorg
 USE_GITHUB=	yes
 USE_GL=		gl glu glew

Modified: head/cad/openscad/Makefile
==============================================================================
--- head/cad/openscad/Makefile	Fri May  8 05:34:55 2020	(r534325)
+++ head/cad/openscad/Makefile	Fri May  8 05:35:11 2020	(r534326)
@@ -3,12 +3,15 @@
 
 PORTNAME=	openscad
 PORTVERSION=	2019.05.10
-PORTREVISION=	5
+PORTREVISION=	6
 #PORTREVISION=	1
 CATEGORIES=	cad
 
 PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
-PATCHFILES+=	b6c170cc5dd1.patch:-p1
+PATCHFILES+=	b6c170cc5dd1.patch:-p1 \
+		15acf6700674.patch:-p1 \
+		9c4d5ae7ab05.patch:-p1 \
+		07a56df933a3.patch:-p1
 
 MAINTAINER=	mr@FreeBSD.org
 COMMENT=	Programmer's solid 3D CAD modeller #'
@@ -16,12 +19,12 @@ COMMENT=	Programmer's solid 3D CAD modeller #'
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+BUILD_DEPENDS=  cgal>0:math/cgal
 LIB_DEPENDS=	libzip.so:archivers/libzip \
 		libhidapi.so:comms/hidapi \
 		libboost_regex.so:devel/boost-libs \
 		libqscintilla2_qt5.so:devel/qscintilla2-qt5 \
 		libopencsg.so:graphics/opencsg \
-		libCGAL.so:math/cgal \
 		libgmp.so:math/gmp \
 		libmpfr.so:math/mpfr \
 		libfreetype.so:print/freetype2 \
@@ -31,7 +34,7 @@ LIB_DEPENDS=	libzip.so:archivers/libzip \
 
 CONFLICTS=	openscad
 
-USES=		bison compiler:c++11-lib desktop-file-utils eigen:3 gettext \
+USES=		bison compiler:c++14-lang desktop-file-utils eigen:3 gettext \
 		gl gnome pkgconfig qmake qt:5 shared-mime-info xorg
 USE_GITHUB=	yes
 USE_GL=		gl glu glew

Modified: head/cad/openscad/distinfo
==============================================================================
--- head/cad/openscad/distinfo	Fri May  8 05:34:55 2020	(r534325)
+++ head/cad/openscad/distinfo	Fri May  8 05:35:11 2020	(r534326)
@@ -1,5 +1,11 @@
-TIMESTAMP = 1558624367
+TIMESTAMP = 1587474068
 SHA256 (openscad-openscad-2019.05.10-0f6d569b57112b79f657a82b0809dc420fbff163_GH0.tar.gz) = 0ddccc2acbf529926110d5504088472b203d064f9b22bafeb55ee3f44473d3c6
 SIZE (openscad-openscad-2019.05.10-0f6d569b57112b79f657a82b0809dc420fbff163_GH0.tar.gz) = 14602475
 SHA256 (b6c170cc5dd1.patch) = 635d1bddee1b79d4a022b167c48ce173cf447467721b69827136cfeb921ae0e4
 SIZE (b6c170cc5dd1.patch) = 681
+SHA256 (15acf6700674.patch) = 960a3edf2fd16acd9b1f976373107033ca99d17521e8ca49464a894a61c469da
+SIZE (15acf6700674.patch) = 1826
+SHA256 (9c4d5ae7ab05.patch) = d65a1733ed9476f02706115f7b2c765e49312c7cd085a2f2ca2a62a82e0f7f56
+SIZE (9c4d5ae7ab05.patch) = 2281
+SHA256 (07a56df933a3.patch) = c746be0de2f3e548fad8af2eef078030f12a822ed22d186d2da58dc3fb064bac
+SIZE (07a56df933a3.patch) = 760

Modified: head/databases/postgis23/Makefile
==============================================================================
--- head/databases/postgis23/Makefile	Fri May  8 05:34:55 2020	(r534325)
+++ head/databases/postgis23/Makefile	Fri May  8 05:35:11 2020	(r534326)
@@ -3,7 +3,7 @@
 
 PORTNAME=	postgis
 PORTVERSION=	2.3.10
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	databases geography
 MASTER_SITES=	https://download.osgeo.org/postgis/source/
 PKGNAMESUFFIX=	23

Modified: head/databases/postgis24/Makefile
==============================================================================
--- head/databases/postgis24/Makefile	Fri May  8 05:34:55 2020	(r534325)
+++ head/databases/postgis24/Makefile	Fri May  8 05:35:11 2020	(r534326)
@@ -3,7 +3,7 @@
 
 PORTNAME=	postgis
 PORTVERSION=	2.4.8
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	databases geography
 MASTER_SITES=	https://download.osgeo.org/postgis/source/
 PKGNAMESUFFIX=	24

Modified: head/databases/postgis25/Makefile
==============================================================================
--- head/databases/postgis25/Makefile	Fri May  8 05:34:55 2020	(r534325)
+++ head/databases/postgis25/Makefile	Fri May  8 05:35:11 2020	(r534326)
@@ -3,6 +3,7 @@
 
 PORTNAME=	postgis
 PORTVERSION=	2.5.4
+PORTREVISION=	1
 CATEGORIES=	databases geography
 MASTER_SITES=	https://download.osgeo.org/postgis/source/
 PKGNAMESUFFIX=	25

Modified: head/databases/postgis30/Makefile
==============================================================================
--- head/databases/postgis30/Makefile	Fri May  8 05:34:55 2020	(r534325)
+++ head/databases/postgis30/Makefile	Fri May  8 05:35:11 2020	(r534326)
@@ -3,6 +3,7 @@
 
 PORTNAME=	postgis
 PORTVERSION=	3.0.1
+PORTREVISION=	1
 CATEGORIES=	databases geography
 MASTER_SITES=	https://download.osgeo.org/postgis/source/
 PKGNAMESUFFIX=	30

Modified: head/databases/sfcgal/Makefile
==============================================================================
--- head/databases/sfcgal/Makefile	Fri May  8 05:34:55 2020	(r534325)
+++ head/databases/sfcgal/Makefile	Fri May  8 05:35:11 2020	(r534326)
@@ -4,7 +4,7 @@
 PORTNAME=	sfcgal
 DISTVERSIONPREFIX=	v
 DISTVERSION=	1.3.7
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	databases math graphics
 
 MAINTAINER=	lbartoletti@FreeBSD.org
@@ -13,12 +13,12 @@ COMMENT=	Wrapper library around CGAL for PostGIS
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-LIB_DEPENDS=	libCGAL.so:math/cgal \
-		libboost_system.so:devel/boost-libs \
+BUILD_DEPENDS=	cgal>0:math/cgal
+LIB_DEPENDS=	libboost_system.so:devel/boost-libs \
 		libgmp.so:math/gmp \
 		libmpfr.so:math/mpfr
 
-USES=		cmake compiler:c++0x libtool
+USES=		cmake compiler:c++14-lang libtool
 USE_GITHUB=	yes
 GH_ACCOUNT=	Oslandia
 GH_PROJECT=	SFCGAL

Added: head/databases/sfcgal/files/patch-CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sfcgal/files/patch-CMakeLists.txt	Fri May  8 05:35:11 2020	(r534326)
@@ -0,0 +1,24 @@
+--- CMakeLists.txt.orig	2019-06-03 10:11:36 UTC
++++ CMakeLists.txt
+@@ -2,6 +2,7 @@ cmake_minimum_required( VERSION 2.8 )
+ project( SFCGAL )
+ 
+ set( CMAKE_DEBUG_POSTFIX "d" )
++set(CMAKE_CXX_STANDARD 14)
+ 
+ #----------------------------------------------------------------------------
+ # build options
+@@ -56,8 +57,12 @@ endif()
+ 
+ # 4.3 minimal
+ # 4.13 recommended
+-find_package( CGAL 4.3 COMPONENTS Core REQUIRED )
++find_package( CGAL COMPONENTS Core REQUIRED )
+ message( STATUS "CGAL ${CGAL_VERSION} found" )
++
++if( "${CGAL_VERSION}" VERSION_GREATER_EQUAL "5.0.0")
++add_definitions( "-DCGAL_USE_GMPXX=1" )
++endif()
+ 
+ include_directories( ${CMAKE_BINARY_DIR}/include )
+ 

Added: head/databases/sfcgal/files/patch-src_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sfcgal/files/patch-src_CMakeLists.txt	Fri May  8 05:35:11 2020	(r534326)
@@ -0,0 +1,13 @@
+--- src/CMakeLists.txt.orig	2019-06-03 10:11:36 UTC
++++ src/CMakeLists.txt
+@@ -47,6 +47,10 @@ set_target_properties( SFCGAL PROPERTIES VERSION ${SFC
+ 
+ target_link_libraries( SFCGAL CGAL::CGAL CGAL::CGAL_Core)
+ 
++if( "${CGAL_VERSION}" VERSION_GREATER_EQUAL "5.0.0")
++target_link_libraries( SFCGAL gmpxx )
++endif()
++
+ target_link_libraries( SFCGAL ${Boost_LIBRARIES} )
+ 
+ if ( ${Use_precompiled_headers} )

Added: head/databases/sfcgal/files/patch-src_config.h.cmake
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sfcgal/files/patch-src_config.h.cmake	Fri May  8 05:35:11 2020	(r534326)
@@ -0,0 +1,10 @@
+--- src/config.h.cmake.orig	2019-06-03 10:11:36 UTC
++++ src/config.h.cmake
+@@ -21,7 +21,6 @@
+ #define _SFCGAL_CONFIG_H_
+ 
+ #define CGAL_DO_NOT_USE_BOOST_MP 1
+-#define CGAL_DO_NOT_USE_GMPXX 1
+ 
+ #include <SFCGAL/export.h>
+ 

Modified: head/games/flightgear-terragear/Makefile
==============================================================================
--- head/games/flightgear-terragear/Makefile	Fri May  8 05:34:55 2020	(r534325)
+++ head/games/flightgear-terragear/Makefile	Fri May  8 05:35:11 2020	(r534326)
@@ -2,7 +2,7 @@
 
 PORTNAME=	flightgear-terragear
 PORTVERSION=	20171007
-PORTREVISION=	10
+PORTREVISION=	11
 CATEGORIES=	games
 
 MAINTAINER=	ports@FreeBSD.org
@@ -10,8 +10,8 @@ COMMENT=	Tools for building scenery for the FlightGear
 
 LICENSE=	GPLv2
 
-LIB_DEPENDS=	libCGAL.so:math/cgal \
-		libgdal.so:graphics/gdal \
+BUILD_DEPENDS=	cgal>0:math/cgal
+LIB_DEPENDS=	libgdal.so:graphics/gdal \
 		libmpfr.so:math/mpfr \
 		libgmp.so:math/gmp \
 		libboost_thread.so:devel/boost-libs \

Added: head/games/flightgear-terragear/files/patch-src_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/flightgear-terragear/files/patch-src_CMakeLists.txt	Fri May  8 05:35:11 2020	(r534326)
@@ -0,0 +1,8 @@
+--- src/CMakeLists.txt.orig	2020-04-22 13:06:31 UTC
++++ src/CMakeLists.txt
+@@ -1,3 +1,5 @@
++
++find_package(Boost COMPONENTS thread system REQUIRED)
+ add_subdirectory(Prep)
+ add_subdirectory(Lib)
+ add_subdirectory(Airports)

Modified: head/graphics/colmap/Makefile
==============================================================================
--- head/graphics/colmap/Makefile	Fri May  8 05:34:55 2020	(r534325)
+++ head/graphics/colmap/Makefile	Fri May  8 05:35:11 2020	(r534326)
@@ -2,11 +2,12 @@
 
 PORTNAME=	colmap
 DISTVERSION=	3.5
-PORTREVISION=	10
+PORTREVISION=	11
 CATEGORIES=	graphics
 
 PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
 PATCHFILES+=	b5ccc54e68e3.patch:-p1
+PATCHFILES+=	c9e31ee9cde4.patch:-p1 # https://github.com/colmap/colmap/pull/853
 
 MAINTAINER=	jbeich@FreeBSD.org
 COMMENT=	Structure from motion and multi-view stereo
@@ -42,7 +43,7 @@ OPTIONS_DEFINE=		CGAL DOCS OPENMP SIMD TEST
 OPTIONS_DEFAULT=	CGAL OPENMP SIMD
 
 CGAL_DESC=		Graph-cut on Delaunay triangulation based meshing algorithm
-CGAL_LIB_DEPENDS=	libCGAL.so:math/cgal
+CGAL_BUILD_DEPENDS=	cgal>0:math/cgal
 CGAL_CMAKE_BOOL=	CGAL_ENABLED
 
 DOCS_BUILD_DEPENDS=	gmake:devel/gmake \

Modified: head/graphics/colmap/distinfo
==============================================================================
--- head/graphics/colmap/distinfo	Fri May  8 05:34:55 2020	(r534325)
+++ head/graphics/colmap/distinfo	Fri May  8 05:35:11 2020	(r534326)
@@ -3,3 +3,5 @@ SHA256 (colmap-colmap-3.5_GH0.tar.gz) = 7a23856a5662da
 SIZE (colmap-colmap-3.5_GH0.tar.gz) = 5872165
 SHA256 (b5ccc54e68e3.patch) = 38e8328e52889ec18dd69939c4fbef8b653d5f0fe022ca8eb3ae3b521582a3a8
 SIZE (b5ccc54e68e3.patch) = 1757
+SHA256 (c9e31ee9cde4.patch) = f1a85107e2b79c6bb32577543b6ae4b97cfa98a83f07357d69e70e1bf5de5a5b
+SIZE (c9e31ee9cde4.patch) = 12755

Modified: head/math/cgal/Makefile
==============================================================================
--- head/math/cgal/Makefile	Fri May  8 05:34:55 2020	(r534325)
+++ head/math/cgal/Makefile	Fri May  8 05:35:11 2020	(r534326)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	cgal
-PORTVERSION=	4.13
-PORTREVISION=	3
+PORTVERSION=	5.0.2
 CATEGORIES=	math
 MASTER_SITES=	https://github.com/${PORTNAME:tu}/${PORTNAME}/releases/download/releases/${DISTNAME}/
 DISTNAME=	${PORTNAME:tu}-${PORTVERSION}

Modified: head/math/cgal/distinfo
==============================================================================
--- head/math/cgal/distinfo	Fri May  8 05:34:55 2020	(r534325)
+++ head/math/cgal/distinfo	Fri May  8 05:35:11 2020	(r534326)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1552005187
-SHA256 (CGAL-4.13.tar.xz) = 3e3dd7a64febda58be54c3cbeba329ab6a73b72d4d7647ba4931ecd1fad0e3bc
-SIZE (CGAL-4.13.tar.xz) = 15367120
+TIMESTAMP = 1587453114
+SHA256 (CGAL-5.0.2.tar.xz) = bb3594ba390735404f0972ece301f369b1ff12646ad25e48056b4d49c976e1fa
+SIZE (CGAL-5.0.2.tar.xz) = 22147464

Modified: head/math/cgal/pkg-plist
==============================================================================
--- head/math/cgal/pkg-plist	Fri May  8 05:34:55 2020	(r534325)
+++ head/math/cgal/pkg-plist	Fri May  8 05:35:11 2020	(r534326)
@@ -1,3214 +1,3331 @@
-bin/cgal_create_CMakeLists
-bin/cgal_create_cmake_script
-bin/cgal_make_macosx_app
-include/CGAL/AABB_face_graph_triangle_primitive.h
-include/CGAL/AABB_halfedge_graph_segment_primitive.h
-include/CGAL/AABB_polyhedral_oracle.h
-include/CGAL/AABB_polyhedron_segment_primitive.h
-include/CGAL/AABB_polyhedron_triangle_primitive.h
-include/CGAL/AABB_primitive.h
-include/CGAL/AABB_segment_primitive.h
-include/CGAL/AABB_traits.h
-include/CGAL/AABB_tree.h
-include/CGAL/AABB_triangle_primitive.h
-include/CGAL/AABB_triangulation_3_triangle_primitive.h
-include/CGAL/Advancing_front_surface_reconstruction.h
-include/CGAL/Advancing_front_surface_reconstruction_cell_base_3.h
-include/CGAL/Advancing_front_surface_reconstruction_vertex_base_3.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_d/Algebraic_curve_kernel_2.h
-include/CGAL/Algebraic_kernel_d/Algebraic_real_d_1.h
-include/CGAL/Algebraic_kernel_d/Algebraic_real_quadratic_refinement_rep_bfi.h
-include/CGAL/Algebraic_kernel_d/Algebraic_real_rep.h
-include/CGAL/Algebraic_kernel_d/Algebraic_real_rep_bfi.h
-include/CGAL/Algebraic_kernel_d/Bitstream_coefficient_kernel.h
-include/CGAL/Algebraic_kernel_d/Bitstream_coefficient_kernel_at_alpha.h
-include/CGAL/Algebraic_kernel_d/Bitstream_descartes.h
-include/CGAL/Algebraic_kernel_d/Bitstream_descartes_E08_tree.h
-include/CGAL/Algebraic_kernel_d/Bitstream_descartes_rndl_tree.h
-include/CGAL/Algebraic_kernel_d/Bitstream_descartes_rndl_tree_traits.h
-include/CGAL/Algebraic_kernel_d/Curve_analysis_2.h
-include/CGAL/Algebraic_kernel_d/Curve_pair_analysis_2.h
-include/CGAL/Algebraic_kernel_d/Descartes.h
-include/CGAL/Algebraic_kernel_d/Event_line_builder.h
-include/CGAL/Algebraic_kernel_d/Float_traits.h
-include/CGAL/Algebraic_kernel_d/Interval_evaluate_1.h
-include/CGAL/Algebraic_kernel_d/Interval_evaluate_2.h
-include/CGAL/Algebraic_kernel_d/LRU_hashed_map.h
-include/CGAL/Algebraic_kernel_d/Real_embeddable_extension.h
-include/CGAL/Algebraic_kernel_d/Real_roots.h
-include/CGAL/Algebraic_kernel_d/Shear_controller.h
-include/CGAL/Algebraic_kernel_d/Shear_transformation.h
-include/CGAL/Algebraic_kernel_d/Status_line_CA_1.h
-include/CGAL/Algebraic_kernel_d/Status_line_CPA_1.h
-include/CGAL/Algebraic_kernel_d/Xy_coordinate_2.h
-include/CGAL/Algebraic_kernel_d/algebraic_curve_kernel_2_tools.h
-include/CGAL/Algebraic_kernel_d/bound_between_1.h
-include/CGAL/Algebraic_kernel_d/construct_binary.h
-include/CGAL/Algebraic_kernel_d/enums.h
-include/CGAL/Algebraic_kernel_d/exceptions.h
-include/CGAL/Algebraic_kernel_d/flags.h
-include/CGAL/Algebraic_kernel_d/macros.h
-include/CGAL/Algebraic_kernel_d/refine_zero_against.h
-include/CGAL/Algebraic_kernel_d/shear.h
-include/CGAL/Algebraic_kernel_d/univariate_polynomial_utils.h
-include/CGAL/Algebraic_kernel_d_1.h
-include/CGAL/Algebraic_kernel_d_2.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_kernel_rs_gmpq_d_1.h
-include/CGAL/Algebraic_kernel_rs_gmpz_d_1.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.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/predicate_profiler.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_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.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_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/Arithmetic_kernel/Arithmetic_kernel_base.h
-include/CGAL/Arr_Bezier_curve_traits_2.h
-include/CGAL/Arr_accessor.h
-include/CGAL/Arr_algebraic_segment_traits_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_directional_non_caching_segment_basic_traits_2.h
-include/CGAL/Arr_enums.h
-include/CGAL/Arr_extended_dcel.h
-include/CGAL/Arr_face_index_map.h
-include/CGAL/Arr_face_map.h
-include/CGAL/Arr_geodesic_arc_on_sphere_partition_traits_2.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/IO/Polycurve_2_iostream.h
-include/CGAL/Arr_geometry_traits/One_root_number.h
-include/CGAL/Arr_geometry_traits/Polycurve_2.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_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_active_edge.h
-include/CGAL/Arr_point_location/Td_active_fictitious_vertex.h
-include/CGAL/Arr_point_location/Td_active_trapezoid.h
-include/CGAL/Arr_point_location/Td_active_vertex.h
-include/CGAL/Arr_point_location/Td_dag.h
-include/CGAL/Arr_point_location/Td_dag_node.h
-include/CGAL/Arr_point_location/Td_inactive_edge.h
-include/CGAL/Arr_point_location/Td_inactive_fictitious_vertex.h
-include/CGAL/Arr_point_location/Td_inactive_trapezoid.h
-include/CGAL/Arr_point_location/Td_inactive_vertex.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/Trapezoidal_decomposition_2.h
-include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_impl.h
-include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_iostream.h
-include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_misc.h
-include/CGAL/Arr_point_location_result.h
-include/CGAL/Arr_polycurve_basic_traits_2.h
-include/CGAL/Arr_polycurve_traits_2.h
-include/CGAL/Arr_polyline_traits_2.h
-include/CGAL/Arr_rat_arc/Algebraic_point_2.h
-include/CGAL/Arr_rat_arc/Base_rational_arc_ds_1.h
-include/CGAL/Arr_rat_arc/Cache.h
-include/CGAL/Arr_rat_arc/Rational_arc_d_1.h
-include/CGAL/Arr_rat_arc/Rational_function.h
-include/CGAL/Arr_rat_arc/Rational_function_canonicalized_pair.h
-include/CGAL/Arr_rat_arc/Rational_function_ordered_pair.h
-include/CGAL/Arr_rat_arc/Rational_function_pair.h
-include/CGAL/Arr_rat_arc/Singleton.h
-include/CGAL/Arr_rational_function_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_on_sphere_transformation.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_polyhedral_sgm_traits.h
-include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_transformation.h
-include/CGAL/Arr_spherical_gaussian_map_3/Arr_spherical_gaussian_map_3.h
-include/CGAL/Arr_spherical_gaussian_map_3/Arr_transform_on_sphere.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_index_map.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.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_traits_adaptor_2_dispatching.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/arrangement_type_traits.h
-include/CGAL/Arrangement_2/graph_traits_dual.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_coordinates_2.h
-include/CGAL/Barycentric_coordinates_2/Discrete_harmonic_2.h
-include/CGAL/Barycentric_coordinates_2/Generalized_barycentric_coordinates_2.h
-include/CGAL/Barycentric_coordinates_2/Mean_value_2.h
-include/CGAL/Barycentric_coordinates_2/Segment_coordinates_2.h
-include/CGAL/Barycentric_coordinates_2/Triangle_coordinates_2.h
-include/CGAL/Barycentric_coordinates_2/Wachspress_2.h
-include/CGAL/Barycentric_coordinates_2/barycentric_enum_2.h
-include/CGAL/Bbox_2.h
-include/CGAL/Bbox_2_Line_2_intersection.h
-include/CGAL/Bbox_2_Line_2_intersection_impl.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.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_surface_sweep_2.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_on_surface_base_2.h
-include/CGAL/Boolean_set_operations_2/Gps_on_surface_base_2_impl.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/Indexed_event.h
-include/CGAL/Boolean_set_operations_2/Point_with_vertex.h
-include/CGAL/Boolean_set_operations_2/Polygon_2_curve_iterator.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_with_info_d.h
-include/CGAL/Box_intersection_d/box_limits.h
-include/CGAL/Box_intersection_d/segment_tree.h
-include/CGAL/Buffer_for_vao.h
-include/CGAL/CC_safe_handle.h
-include/CGAL/CGAL_Ipelet_base.h
-include/CGAL/CGAL_Ipelet_base_v6.h
-include/CGAL/CGAL_Ipelet_base_v7.h
-include/CGAL/CMap_linear_cell_complex_storages.h
-include/CGAL/CORE/BigFloat.h
-include/CGAL/CORE/BigFloatRep.h
-include/CGAL/CORE/BigFloat_impl.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/CoreAux_impl.h
-include/CGAL/CORE/CoreDefs.h
-include/CGAL/CORE/CoreDefs_impl.h
-include/CGAL/CORE/CoreIO_impl.h
-include/CGAL/CORE/Expr.h
-include/CGAL/CORE/ExprRep.h
-include/CGAL/CORE/Expr_impl.h
-include/CGAL/CORE/Filter.h
-include/CGAL/CORE/Gmp.h
-include/CGAL/CORE/Gmp_impl.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/Real_impl.h
-include/CGAL/CORE/RefCount.h
-include/CGAL/CORE/Timer.h
-include/CGAL/CORE/extLong.h
-include/CGAL/CORE/extLong_impl.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_arithmetic_kernel.h
-include/CGAL/CORE_coercion_traits.h
-include/CGAL/Cache.h
-include/CGAL/Cartesian.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/ConicCPA2.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/Weighted_point_2.h
-include/CGAL/Cartesian/Weighted_point_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_converter.h
-include/CGAL/Cartesian_converter_fwd.h
-include/CGAL/Cartesian_d.h
-include/CGAL/Cartesian_matrix.h
-include/CGAL/Cell_attribute.h
-include/CGAL/Cell_attribute_with_id.h
-include/CGAL/Cell_attribute_with_point.h
-include/CGAL/Cell_attribute_with_point_and_id.h
-include/CGAL/Cell_const_iterators.h
-include/CGAL/Cell_iterators.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/Circle_type.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_kernel_2.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/Intersection_traits.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_3/Circular_arc_3.h
-include/CGAL/Circular_kernel_3/Circular_arc_point_3.h
-include/CGAL/Circular_kernel_3/Intersection_traits.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_compare_to_right_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/Circulator_adapters.h
-include/CGAL/Circulator/Circulator_concepts.h
-include/CGAL/Circulator/Safe_circulator_from_iterator.h
-include/CGAL/Circulator_identity.h
-include/CGAL/Circulator_on_node.h
-include/CGAL/Circulator_project.h
-include/CGAL/Classification.h
-include/CGAL/Classification/Cluster.h
-include/CGAL/Classification/Color.h
-include/CGAL/Classification/ETHZ_random_forest_classifier.h
-include/CGAL/Classification/Evaluation.h
-include/CGAL/Classification/Feature/Cluster_mean_of_feature.h
-include/CGAL/Classification/Feature/Cluster_size.h
-include/CGAL/Classification/Feature/Cluster_variance_of_feature.h
-include/CGAL/Classification/Feature/Cluster_vertical_extent.h
-include/CGAL/Classification/Feature/Color_channel.h
-include/CGAL/Classification/Feature/Distance_to_plane.h
-include/CGAL/Classification/Feature/Echo_scatter.h
-include/CGAL/Classification/Feature/Eigen.h
-include/CGAL/Classification/Feature/Eigenvalue.h
-include/CGAL/Classification/Feature/Elevation.h
-include/CGAL/Classification/Feature/Gradient_of_feature.h
-include/CGAL/Classification/Feature/Hsv.h
-include/CGAL/Classification/Feature/Simple_feature.h
-include/CGAL/Classification/Feature/Vertical_dispersion.h
-include/CGAL/Classification/Feature/Verticality.h
-include/CGAL/Classification/Feature_base.h
-include/CGAL/Classification/Feature_set.h
-include/CGAL/Classification/Image.h
-include/CGAL/Classification/Label.h
-include/CGAL/Classification/Label_set.h
-include/CGAL/Classification/Local_eigen_analysis.h
-include/CGAL/Classification/Mesh_feature_generator.h
-include/CGAL/Classification/Mesh_neighborhood.h
-include/CGAL/Classification/OpenCV_random_forest_classifier.h
-include/CGAL/Classification/Planimetric_grid.h
-include/CGAL/Classification/Point_set_feature_generator.h
-include/CGAL/Classification/Point_set_neighborhood.h
-include/CGAL/Classification/Sum_of_weighted_features_classifier.h
-include/CGAL/Classification/classify.h
-include/CGAL/Classification/compressed_float.h
-include/CGAL/Classification/internal/auxiliary/dataview.h
-include/CGAL/Classification/internal/auxiliary/random-forest/common-libraries.hpp
-include/CGAL/Classification/internal/auxiliary/random-forest/forest.hpp
-include/CGAL/Classification/internal/auxiliary/random-forest/node-gini.hpp
-include/CGAL/Classification/internal/auxiliary/random-forest/node.hpp
-include/CGAL/Classification/internal/auxiliary/random-forest/tree.hpp
-include/CGAL/Classification/internal/verbosity.h
-include/CGAL/Classification/property_maps.h
-include/CGAL/Coercion_traits.h
-include/CGAL/Combination_enumerator.h
-include/CGAL/Combinatorial_map.h
-include/CGAL/Combinatorial_map_basic_operations.h
-include/CGAL/Combinatorial_map_constructors.h
-include/CGAL/Combinatorial_map_functors.h
-include/CGAL/Combinatorial_map_insertions.h
-include/CGAL/Combinatorial_map_iterators_base.h
-include/CGAL/Combinatorial_map_min_items.h
-include/CGAL/Combinatorial_map_operations.h
-include/CGAL/Combinatorial_map_save_load.h
-include/CGAL/Combinatorial_map_storages.h
-include/CGAL/Compact_container.h
-include/CGAL/Compact_mesh_cell_base_3.h
-include/CGAL/Compare_handles_with_or_without_timestamps.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/Complexity_tags.h
-include/CGAL/Compute_anchor_3.h
-include/CGAL/Compute_cone_boundaries_2.h
-include/CGAL/Concatenate_iterator.h
-include/CGAL/Concurrent_compact_container.h
-include/CGAL/Cone_spanners_2/Less_by_direction_2.h
-include/CGAL/Cone_spanners_2/Plane_scan_tree.h
-include/CGAL/Cone_spanners_2/Plane_scan_tree_impl.h
-include/CGAL/Cone_spanners_enum_2.h
-include/CGAL/Conic_2.h
-include/CGAL/Constrained_Delaunay_triangulation_2.h
-include/CGAL/Constrained_Delaunay_triangulation_face_base_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/Constrained_voronoi_diagram_2.h
-include/CGAL/Constraint_hierarchy_2.h
-include/CGAL/Construct_theta_graph_2.h
-include/CGAL/Construct_yao_graph_2.h
-include/CGAL/Convex_decomposition_3/Edge_sorter.h
-include/CGAL/Convex_decomposition_3/External_structure_builder.h
-include/CGAL/Convex_decomposition_3/Insert_vertex_into_edge.h
-include/CGAL/Convex_decomposition_3/Ray_hit_generator.h
-include/CGAL/Convex_decomposition_3/Ray_hit_generator2.h
-include/CGAL/Convex_decomposition_3/Reflex_edge_searcher.h
-include/CGAL/Convex_decomposition_3/Reflex_vertex_searcher.h
-include/CGAL/Convex_decomposition_3/SFace_separator.h
-include/CGAL/Convex_decomposition_3/SM_walls.h
-include/CGAL/Convex_decomposition_3/Single_wall_creator.h
-include/CGAL/Convex_decomposition_3/Single_wall_creator2.h
-include/CGAL/Convex_decomposition_3/Single_wall_creator3.h
-include/CGAL/Convex_decomposition_3/YVertical_wall_builder.h
-include/CGAL/Convex_decomposition_3/is_reflex_sedge.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_3/dual/Convex_hull_traits_dual_2.h
-include/CGAL/Convex_hull_3/dual/Convex_hull_traits_dual_3.h
-include/CGAL/Convex_hull_3/dual/halfspace_intersection_3.h
-include/CGAL/Convex_hull_3/dual/halfspace_intersection_with_constructions_3.h
-include/CGAL/Convex_hull_3/dual/interior_polyhedron_3.h
-include/CGAL/Convex_hull_3/dual/predicates.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_face_base_2.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/Curved_kernel_via_analysis_2/Arc_2.h
-include/CGAL/Curved_kernel_via_analysis_2/Curve_interval_arcno_cache.h
-include/CGAL/Curved_kernel_via_analysis_2/Curve_renderer_facade.h
-include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h
-include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_impl.h
-include/CGAL/Curved_kernel_via_analysis_2/Fig_stream_Curve_renderer_2.h
-include/CGAL/Curved_kernel_via_analysis_2/Filtered_curved_kernel_via_analysis_2_impl.h
-include/CGAL/Curved_kernel_via_analysis_2/Generic_arc_2.h
-include/CGAL/Curved_kernel_via_analysis_2/Generic_point_2.h
-include/CGAL/Curved_kernel_via_analysis_2/Make_x_monotone_2.h
-include/CGAL/Curved_kernel_via_analysis_2/Non_x_monotone_arc_2.h
-include/CGAL/Curved_kernel_via_analysis_2/Point_2.h
-include/CGAL/Curved_kernel_via_analysis_2/Sweep_curves_adapter_2.h
-include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_2.h
-include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_internals.h
-include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_traits.h
-include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_1.h
-include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_2.h
-include/CGAL/Curved_kernel_via_analysis_2/test/simple_models.h
-include/CGAL/Dart.h
-include/CGAL/Dart_const_iterators.h
-include/CGAL/Dart_iterators.h
-include/CGAL/Default.h
-include/CGAL/Default_diagonalize_traits.h
-include/CGAL/Deformation_Eigen_closest_rotation_traits_3.h
-include/CGAL/Deformation_Eigen_polar_closest_rotation_traits_3.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_mesh_vertex_base_2.h
-include/CGAL/Delaunay_mesher_2.h
-include/CGAL/Delaunay_mesher_no_edge_refinement_2.h
-include/CGAL/Delaunay_triangulation.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/Delaunay_triangulation_cell_base_3.h
-include/CGAL/Delaunay_triangulation_cell_base_with_circumcenter_3.h
-include/CGAL/Diagonalize_traits.h
-include/CGAL/Dimension.h
-include/CGAL/Direction_2.h
-include/CGAL/Direction_3.h
-include/CGAL/Distance_2.h
-include/CGAL/Double_map.h
-include/CGAL/Dummy_tds_2.h
-include/CGAL/Dynamic_matrix.h
-include/CGAL/Dynamic_property_map.h
-include/CGAL/Eigen_diagonalize_traits.h
-include/CGAL/Eigen_matrix.h
-include/CGAL/Eigen_solver_traits.h
-include/CGAL/Eigen_svd.h
-include/CGAL/Eigen_vector.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_tracing_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_plane_traits_3_functions.h
-include/CGAL/Envelope_3/Envelope_base.h

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005080535.0485ZBoZ014568>