File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
include/CoverageControl/cgal Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2929#ifndef CPPSRC_CORE_INCLUDE_COVERAGECONTROL_CGAL_CONFIG_H_
3030#define CPPSRC_CORE_INCLUDE_COVERAGECONTROL_CGAL_CONFIG_H_
3131
32- #include < CGAL/basic.h>
32+ // #include <CGAL/basic.h>
3333#include < CGAL/Arr_linear_traits_2.h>
34- #include < CGAL/Arr_walk_along_line_point_location.h>
34+ // #include <CGAL/Arr_walk_along_line_point_location.h>
3535#include < CGAL/Arrangement_2.h>
3636#include < CGAL/Delaunay_triangulation_2.h>
3737#include < CGAL/Exact_predicates_exact_constructions_kernel.h>
@@ -65,7 +65,7 @@ typedef CGAL::Partition_traits_2<K> Partition_traits_2;
6565typedef CGAL::Creator_uniform_2<double , CGAL_Point2> Creator;
6666typedef CGAL::Random_points_in_square_2<CGAL_Point2, Creator> Point_generator;
6767
68- typedef CGAL::Arr_walk_along_line_point_location<Arrangement_2> CGAL_pl;
68+ // typedef CGAL::Arr_walk_along_line_point_location<Arrangement_2> CGAL_pl;
6969using CGAL_Point_location_result = CGAL::Arr_point_location_result<Arrangement_2>;
7070using CGAL_Query_result = std::pair<CGAL_Point2, CGAL_Point_location_result::Type>;
7171
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ void PolygonYMonotonePartition(PointVector const &poly,
5050 }
5151 // Obtain partition //
5252 std::list<Partition_traits_2::Polygon_2> partition_polys;
53- CGAL::y_monotone_partition_2 (cgal_poly.begin (), cgal_poly.end (),
53+ CGAL::y_monotone_partition_2 (cgal_poly.vertices_begin (), cgal_poly.vertices_end (),
5454 std::back_inserter (partition_polys));
5555
5656 // Transform to coveragecontrol data type
You can’t perform that action at this time.
0 commit comments