removing some unnecessary includes

This commit is contained in:
Sven Oesau 2024-09-11 14:41:07 +02:00
parent 9ff709885a
commit e012bdd11e
2 changed files with 5 additions and 6 deletions

View File

@ -41,7 +41,6 @@
#include <CGAL/linear_least_squares_fitting_2.h> #include <CGAL/linear_least_squares_fitting_2.h>
#include <CGAL/linear_least_squares_fitting_3.h> #include <CGAL/linear_least_squares_fitting_3.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h> #include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Polygon_2_algorithms.h>
// Boost includes. // Boost includes.
#include <boost/iterator/function_output_iterator.hpp> #include <boost/iterator/function_output_iterator.hpp>

View File

@ -17,14 +17,14 @@
// CGAL includes. // CGAL includes.
#include <CGAL/Timer.h> #include <CGAL/Timer.h>
#include <CGAL/optimal_bounding_box.h> //#include <CGAL/optimal_bounding_box.h>
#include <CGAL/Boolean_set_operations_2.h> //#include <CGAL/Boolean_set_operations_2.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h> #include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Exact_predicates_exact_constructions_kernel.h> #include <CGAL/Exact_predicates_exact_constructions_kernel.h>
#include <CGAL/intersections.h> #include <CGAL/intersections.h>
#include <CGAL/min_quadrilateral_2.h> #include <CGAL/min_quadrilateral_2.h>
#include <CGAL/Aff_transformation_2.h> //#include <CGAL/Aff_transformation_2.h>
#include <boost/optional/optional_io.hpp> //#include <boost/optional/optional_io.hpp>
// Internal includes. // Internal includes.
#include <CGAL/KSP/utils.h> #include <CGAL/KSP/utils.h>
@ -74,7 +74,7 @@ private:
using From_exact = CGAL::Cartesian_converter<Intersection_kernel, Kernel>; using From_exact = CGAL::Cartesian_converter<Intersection_kernel, Kernel>;
using Bbox_3 = CGAL::Bbox_3; using Bbox_3 = CGAL::Bbox_3;
using OBB_traits = CGAL::Oriented_bounding_box_traits_3<Kernel>; //using OBB_traits = CGAL::Oriented_bounding_box_traits_3<Kernel>;
using Parameters = KSP::internal::Parameters_3<FT>; using Parameters = KSP::internal::Parameters_3<FT>;