/** @file polygon2d.hpp * Definitions for polygon storage and manipulation */ #pragma once #include #include namespace cdt{ using K = CGAL::Exact_predicates_inexact_constructions_kernel; using point2d = K::Point_2; using polygon2d = CGAL::Polygon_with_holes_2; }