mirror of https://github.com/CGAL/cgal
17 lines
535 B
C++
17 lines
535 B
C++
#ifndef BOPS_LINEAR_H
|
|
#define BOPS_LINEAR_H
|
|
|
|
#include <list>
|
|
#include <cassert>
|
|
|
|
#include <CGAL/Exact_predicates_exact_constructions_kernel.h>
|
|
#include <CGAL/Boolean_set_operations_2.h>
|
|
|
|
typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel;
|
|
typedef Kernel::Point_2 Point_2;
|
|
typedef CGAL::Polygon_2<Kernel> Polygon_2;
|
|
typedef CGAL::Polygon_with_holes_2<Kernel> Polygon_with_holes_2;
|
|
typedef std::list<Polygon_with_holes_2> Pgn_with_holes_2_container;
|
|
|
|
#endif
|