CGAL 6.0 - 2D Generalized Barycentric Coordinates
|
A concept that describes the set of requirements of the template parameter GeomTraits
used to parameterize all classes and functions with 2D barycentric coordinates from the namespace CGAL::Barycentric_coordinates
.
Kernel
CGAL::Projection_traits_3<K>
CGAL::Projection_traits_xy_3<K>
CGAL::Projection_traits_yz_3<K>
CGAL::Projection_traits_xz_3<K>
Types | |
typedef unspecified_type | FT |
A model of FieldNumberType . | |
typedef unspecified_type | Comparison_result |
CGAL::Comparison_result or Uncertain<CGAL::Comparison_result> . | |
typedef unspecified_type | Orientation |
CGAL::Orientation or Uncertain<CGAL::Orientation> . | |
2D Geometric Objects | |
typedef unspecified_type | Point_2 |
A model of Kernel::Point_2 . | |
typedef unspecified_type | Vector_2 |
A model of Kernel::Vector_2 . | |
2D Generalized Constructions | |
typedef unspecified_type | Compute_area_2 |
A construction object that must provide the function operator: | |
typedef unspecified_type | Compute_squared_distance_2 |
A construction object that must provide the function operator: | |
typedef unspecified_type | Compute_squared_length_2 |
A construction object that must provide the function operator: | |
typedef unspecified_type | Compute_scalar_product_2 |
A construction object that must provide the function operator: | |
typedef unspecified_type | Compute_determinant_2 |
A construction object that must provide the function operator: | |
typedef unspecified_type | Construct_vector_2 |
A construction object that must provide the function operator: | |
2D Generalized Predicates | |
typedef unspecified_type | Equal_2 |
A predicate object that must provide the function operator: | |
typedef unspecified_type | Collinear_2 |
A predicate object that must provide the function operator: | |
typedef unspecified_type | Collinear_are_ordered_along_line_2 |
A predicate object that must provide the function operator: | |
typedef unspecified_type | Less_xy_2 |
A predicate object that must provide the function operator: | |
typedef unspecified_type | Compare_x_2 |
A predicate object that must provide the function operator: | |
typedef unspecified_type | Compare_y_2 |
A predicate object that must provide the function operator: | |
typedef unspecified_type | Orientation_2 |
A predicate object that must provide the function operator: | |
typedef unspecified_type CGAL::Barycentric_coordinates::BarycentricTraits_2::Compute_squared_length_2 |
A construction object that must provide the function operator:
FT operator(const Vector_2& v)
that returns the squared length of the vector v
.
A predicate object that must provide the function operator:
Orientation operator(const Point_2& p, const Point_2& q, const Point_2& r)
that returns CGAL::LEFT_TURN
if r
lies to the left of the oriented line l
defined by p
and q
, returns CGAL::RIGHT_TURN
if r
lies to the right of l
, and returns CGAL::COLLINEAR
if r
lies on l
.