removal of Orientation_Linf_2 from traits

Signed-off-by: Panagiotis Cheilaris <philaris@cs.ntua.gr>
This commit is contained in:
Panagiotis Cheilaris 2013-02-17 21:46:59 +01:00
parent 02f9c2936a
commit ab6dcab6ea
3 changed files with 0 additions and 35 deletions

View File

@ -234,7 +234,6 @@ private:
typedef typename FK_traits::Compare_x_2 FK_Compare_x_2;
typedef typename FK_traits::Compare_y_2 FK_Compare_y_2;
typedef typename FK_traits::Orientation_L2_2 FK_Orientation_L2_2;
typedef typename FK_traits::Orientation_Linf_2 FK_Orientation_Linf_2;
typedef typename FK_traits::Orientation_2 FK_Orientation_2;
typedef typename FK_traits::Equal_2 FK_Equal_2;
typedef typename FK_traits::Are_parallel_2 FK_Are_parallel_2;
@ -260,7 +259,6 @@ private:
typedef typename EK_traits::Compare_x_2 EK_Compare_x_2;
typedef typename EK_traits::Compare_y_2 EK_Compare_y_2;
typedef typename EK_traits::Orientation_L2_2 EK_Orientation_L2_2;
typedef typename EK_traits::Orientation_Linf_2 EK_Orientation_Linf_2;
typedef typename EK_traits::Orientation_2 EK_Orientation_2;
typedef typename EK_traits::Equal_2 EK_Equal_2;
typedef typename EK_traits::Are_parallel_2 EK_Are_parallel_2;
@ -287,7 +285,6 @@ private:
typedef Sdg_compare_x_2<FK> FK_Compare_x_2;
typedef Sdg_compare_y_2<FK> FK_Compare_y_2;
typedef Sdg_orientation_L2_C2<FK> FK_Orientation_L2_2;
typedef Sdg_orientation_Linf_C2<FK> FK_Orientation_Linf_2;
typedef Sdg_orientation_C2<FK> FK_Orientation_2;
typedef Sdg_are_same_points_C2<FK> FK_Equal_2;
typedef Sdg_are_parallel_C2<FK> FK_Are_parallel_2;
@ -311,7 +308,6 @@ private:
typedef Sdg_compare_x_2<EK> EK_Compare_x_2;
typedef Sdg_compare_y_2<EK> EK_Compare_y_2;
typedef Sdg_orientation_L2_C2<EK> EK_Orientation_L2_2;
typedef Sdg_orientation_Linf_C2<EK> EK_Orientation_Linf_2;
typedef Sdg_orientation_C2<EK> EK_Orientation_2;
typedef Sdg_are_same_points_C2<EK> EK_Equal_2;
typedef Sdg_are_parallel_C2<EK> EK_Are_parallel_2;
@ -347,10 +343,6 @@ public:
Filtered_predicate<EK_Orientation_L2_2, FK_Orientation_L2_2, C2E, C2F>
Orientation_L2_2;
typedef
Filtered_predicate<EK_Orientation_Linf_2, FK_Orientation_Linf_2, C2E, C2F>
Orientation_Linf_2;
typedef
Filtered_predicate<EK_Orientation_2, FK_Orientation_2, C2E, C2F>
Orientation_2;
@ -462,11 +454,6 @@ public:
return Orientation_L2_2();
}
Orientation_Linf_2
orientation_Linf_2_object() const {
return Orientation_Linf_2();
}
Orientation_2
orientation_2_object() const {
return Orientation_2();

View File

@ -208,7 +208,6 @@ private:
typedef typename FK_traits::Compare_x_2 FK_Compare_x_2;
typedef typename FK_traits::Compare_y_2 FK_Compare_y_2;
typedef typename FK_traits::Orientation_L2_2 FK_Orientation_L2_2;
typedef typename FK_traits::Orientation_Linf_2 FK_Orientation_Linf_2;
typedef typename FK_traits::Orientation_2 FK_Orientation_2;
typedef typename FK_traits::Equal_2 FK_Equal_2;
typedef typename FK_traits::Are_parallel_2 FK_Are_parallel_2;
@ -234,7 +233,6 @@ private:
typedef typename EK_traits::Compare_x_2 EK_Compare_x_2;
typedef typename EK_traits::Compare_y_2 EK_Compare_y_2;
typedef typename EK_traits::Orientation_L2_2 EK_Orientation_L2_2;
typedef typename EK_traits::Orientation_Linf_2 EK_Orientation_Linf_2;
typedef typename EK_traits::Orientation_2 EK_Orientation_2;
typedef typename EK_traits::Equal_2 EK_Equal_2;
typedef typename EK_traits::Are_parallel_2 EK_Are_parallel_2;
@ -261,7 +259,6 @@ private:
typedef Sdg_compare_x_2<FK> FK_Compare_x_2;
typedef Sdg_compare_y_2<FK> FK_Compare_y_2;
typedef Sdg_orientation_L2_C2<FK> FK_Orientation_L2_2;
typedef Sdg_orientation_Linf_C2<FK> FK_Orientation_Linf_2;
typedef Sdg_orientation_C2<FK> FK_Orientation_2;
typedef Sdg_are_same_points_C2<FK> FK_Equal_2;
typedef Sdg_are_parallel_C2<FK> FK_Are_parallel_2;
@ -285,7 +282,6 @@ private:
typedef Sdg_compare_x_2<EK> EK_Compare_x_2;
typedef Sdg_compare_y_2<EK> EK_Compare_y_2;
typedef Sdg_orientation_L2_C2<EK> EK_Orientation_L2_2;
typedef Sdg_orientation_Linf_C2<EK> EK_Orientation_Linf_2;
typedef Sdg_orientation_C2<EK> EK_Orientation_2;
typedef Sdg_are_same_points_C2<EK> EK_Equal_2;
typedef Sdg_are_parallel_C2<EK> EK_Are_parallel_2;
@ -321,10 +317,6 @@ public:
Filtered_predicate<EK_Orientation_L2_2, FK_Orientation_L2_2, C2E, C2F>
Orientation_L2_2;
typedef
Filtered_predicate<EK_Orientation_Linf_2, FK_Orientation_Linf_2, C2E, C2F>
Orientation_Linf_2;
typedef
Filtered_predicate<EK_Orientation_2, FK_Orientation_2, C2E, C2F>
Orientation_2;
@ -436,11 +428,6 @@ public:
return Orientation_L2_2();
}
Orientation_Linf_2
orientation_Linf_2_object() const {
return Orientation_Linf_2();
}
Orientation_2
orientation_2_object() const {
return Orientation_2();

View File

@ -53,10 +53,6 @@ public:
CGAL_SEGMENT_DELAUNAY_GRAPH_2_NS::Orientation_C2<K>
Orientation_L2_2;
typedef
CGAL_SEGMENT_DELAUNAY_GRAPH_LINF_2_NS::Orientation_Linf_C2<K>
Orientation_Linf_2;
// used by triangulation
typedef
CGAL_SEGMENT_DELAUNAY_GRAPH_LINF_2_NS::Orientation_Linf_C2<K>
@ -106,11 +102,6 @@ public:
return Orientation_L2_2();
}
Orientation_Linf_2
orientation_Linf_2_object() const {
return Orientation_Linf_2();
}
Orientation_2
orientation_2_object() const {
return Orientation_2();