1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
// Copyright (c) 2014
// INRIA Saclay-Ile de France (France)
//
// This file is part of CGAL (www.cgal.org)
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1/NewKernel_d/include/CGAL/NewKernel_d/Kernel_2_interface.h $
// $Id: include/CGAL/NewKernel_d/Kernel_2_interface.h b26b07a1242 $
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
//
// Author(s) : Marc Glisse
#ifndef CGAL_KD_KERNEL_2_INTERFACE_H
#define CGAL_KD_KERNEL_2_INTERFACE_H
#include <CGAL/NewKernel_d/functor_tags.h>
#include <CGAL/transforming_iterator.h>
#include <CGAL/NewKernel_d/utils.h>
#include <CGAL/tuple.h>
namespace CGAL {
template <class Base_> struct Kernel_2_interface : public Base_ {
typedef Base_ Base;
typedef Kernel_2_interface<Base> Kernel;
typedef typename Get_type<Base, RT_tag>::type RT;
typedef typename Get_type<Base, FT_tag>::type FT;
typedef typename Get_type<Base, Bool_tag>::type Boolean;
typedef typename Get_type<Base, Sign_tag>::type Sign;
typedef typename Get_type<Base, Comparison_result_tag>::type Comparison_result;
typedef typename Get_type<Base, Orientation_tag>::type Orientation;
typedef typename Get_type<Base, Oriented_side_tag>::type Oriented_side;
typedef typename Get_type<Base, Bounded_side_tag>::type Bounded_side;
typedef typename Get_type<Base, Angle_tag>::type Angle;
typedef typename Get_type<Base, Point_tag>::type Point_2;
typedef typename Get_type<Base, Vector_tag>::type Vector_2;
typedef typename Get_type<Base, Segment_tag>::type Segment_2;
typedef std::tuple<Point_2,Point_2,Point_2> Triangle_2; // triangulation insists...
template <class T,int i> struct Help_2p_i {
typedef typename Get_functor<Base, T>::type LT;
typedef typename LT::result_type result_type;
LT lt;
Help_2p_i(Kernel const&k):lt(k){}
result_type operator()(Point_2 const&a, Point_2 const&b) {
return lt(a,b,i);
}
};
typedef Help_2p_i<Less_point_cartesian_coordinate_tag,0> Less_x_2;
typedef Help_2p_i<Less_point_cartesian_coordinate_tag,1> Less_y_2;
typedef Help_2p_i<Compare_point_cartesian_coordinate_tag,0> Compare_x_2;
typedef Help_2p_i<Compare_point_cartesian_coordinate_tag,1> Compare_y_2;
struct Compare_xy_2 {
Compare_x_2 cx_2;
Compare_y_2 cy_2;
Compare_xy_2(const Compare_x_2 & cx_2, const Compare_y_2 & cy_2)
: cx_2(cx_2), cy_2(cy_2)
{}
typename Compare_x_2::result_type operator()(const Point_2 & p, const Point_2 & q)
{
auto res = cx_2(p, q);
if (res == EQUAL) {
return cy_2(p, q);
}
return res;
}
};
struct Compare_distance_2 {
typedef typename Get_functor<Base, Compare_distance_tag>::type CD;
typedef typename CD::result_type result_type;
CD cd;
Compare_distance_2(Kernel const&k):cd(k){}
result_type operator()(Point_2 const&a, Point_2 const&b, Point_2 const&c) {
return cd(a,b,c);
}
result_type operator()(Point_2 const&a, Point_2 const&b, Point_2 const&c, Point_2 const&d) {
return cd(a,b,c,d);
}
};
struct Orientation_2 {
typedef typename Get_functor<Base, Orientation_of_points_tag>::type O;
typedef typename O::result_type result_type;
O o;
Orientation_2(Kernel const&k):o(k){}
result_type operator()(Point_2 const&a, Point_2 const&b, Point_2 const&c) {
//return o(a,b,c);
Point_2 const* t[3]={&a,&b,&c};
return o(make_transforming_iterator<Dereference_functor>(t+0),make_transforming_iterator<Dereference_functor>(t+3));
}
};
struct Side_of_oriented_circle_2 {
typedef typename Get_functor<Base, Side_of_oriented_sphere_tag>::type SOS;
typedef typename SOS::result_type result_type;
SOS sos;
Side_of_oriented_circle_2(Kernel const&k):sos(k){}
result_type operator()(Point_2 const&a, Point_2 const&b, Point_2 const&c, Point_2 const&d) {
//return sos(a,b,c,d);
Point_2 const* t[4]={&a,&b,&c};
return sos(make_transforming_iterator<Dereference_functor>(t+0),make_transforming_iterator<Dereference_functor>(t+3), d);
}
};
typedef typename Get_functor<Base, Construct_ttag<Point_tag> >::type Construct_point_2;
Less_x_2 less_x_2_object()const{ return Less_x_2(*this); }
Less_y_2 less_y_2_object()const{ return Less_y_2(*this); }
Compare_x_2 compare_x_2_object()const{ return Compare_x_2(*this); }
Compare_y_2 compare_y_2_object()const{ return Compare_y_2(*this); }
Compare_xy_2 compare_xy_2_object() const { return Compare_xy_2(compare_x_2_object(), compare_y_2_object()); }
Compare_distance_2 compare_distance_2_object()const{ return Compare_distance_2(*this); }
Orientation_2 orientation_2_object()const{ return Orientation_2(*this); }
Side_of_oriented_circle_2 side_of_oriented_circle_2_object()const{ return Side_of_oriented_circle_2(*this); }
Construct_point_2 construct_point_2_object()const{ return Construct_point_2(*this); }
};
}
#endif
|