CGAL 5.2.2 - 2D Polygon Partitioning
|
Requirements of a traits class to be used with the function optimal_convex_partition_2()
that computes an optimal convex partition of a polygon.
Types | |
In addition to the types listed with the concept | |
typedef unspecified_type | Collinear_are_ordered_along_line_2 |
Predicate object type that determines orderings of Point_2 's on a line. More... | |
typedef unspecified_type | Are_stritcly_ordered_along_line_2 |
Predicate object type that determines orderings of Point_2 's. More... | |
Creation | |
OptimalConvexPartitionTraits_2 (OptimalConvexPartitionTraits_2 tr) | |
Operations | |
In addition to the functions required by | |
Collinear_are_ordered_along_line_2 | collinear_are_ordered_along_line_2_object () const |
Are_strictly_ordered_along_line_2 | are_strictly_ordered_along_line_2_object () const |
Predicate object type that determines orderings of Point_2
's.
Must provide bool operator()(Point_2 p, Point_2 q, Point_2 r)
that returns true
, iff the three points are collinear and q
lies strictly between p
and r
. Note that false
should be returned if q==p
or q==r
.
Predicate object type that determines orderings of Point_2
's on a line.
Must provide bool operator()(Point_2 p, Point_2 q, Point_2 r)
that returns true
, iff q
lies between p
and r
and p
, q
, and r
satisfy the precondition that they are collinear.