CGAL 4.5 - 2D Minkowski Sums
|
#include <CGAL/Polygon_convex_decomposition_2.h>
The Optimal_convex_decomposition_2
class provides an implementation of Greene's dynamic programming algorithm for optimal decomposition of a polygon into convex sub-polygons [4]. Note that this algorithm requires O(n4) time and O(n3) space in the worst case, where n is the size of the input polygon.
Kernel | must be a geometric kernel that can be used for the polygon. |
Container | must be a container that can be used for the polygon. It is by default std::vector<typename Kernel::Point_2> . |
Public Types | |
typedef CGAL::Polygon_2 < Kernel, Container > | Polygon_2 |