mirror of https://github.com/CGAL/cgal
Add using statements for ansi-compliance
This commit is contained in:
parent
9db08e1461
commit
4acea23434
|
|
@ -359,7 +359,8 @@ public:
|
||||||
|
|
||||||
using Delaunay_graph::cw;
|
using Delaunay_graph::cw;
|
||||||
using Delaunay_graph::ccw;
|
using Delaunay_graph::ccw;
|
||||||
|
using Delaunay_graph::delete_vertex;
|
||||||
|
using Delaunay_graph::delete_face;
|
||||||
public:
|
public:
|
||||||
// TRAVERSAL OF THE DUAL GRAPH
|
// TRAVERSAL OF THE DUAL GRAPH
|
||||||
//----------------------------
|
//----------------------------
|
||||||
|
|
|
||||||
|
|
@ -65,6 +65,11 @@ private:
|
||||||
|
|
||||||
typedef Are_same_points_C2<K> Are_same_points_2;
|
typedef Are_same_points_C2<K> Are_same_points_2;
|
||||||
|
|
||||||
|
using Base::compute_supporting_line;
|
||||||
|
using Base::oriented_side_of_line;
|
||||||
|
using Base::compute_perpendicular;
|
||||||
|
using Base::opposite_line;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Are_same_points_2 same_points;
|
Are_same_points_2 same_points;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -60,6 +60,17 @@ public:
|
||||||
|
|
||||||
typedef typename Base::Homogeneous_point_2 Homogeneous_point_2;
|
typedef typename Base::Homogeneous_point_2 Homogeneous_point_2;
|
||||||
|
|
||||||
|
using Base::opposite_line;
|
||||||
|
using Base::compute_supporting_line;
|
||||||
|
using Base::oriented_side_of_line;
|
||||||
|
using Base::compare_squared_distances_to_line;
|
||||||
|
using Base::compare_squared_distances_to_lines;
|
||||||
|
using Base::compute_perpendicular;
|
||||||
|
using Base::projection_on_line;
|
||||||
|
using Base::compute_squared_distance;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
typedef Are_same_points_C2<K> Are_same_points_2;
|
typedef Are_same_points_C2<K> Are_same_points_2;
|
||||||
typedef Are_same_segments_C2<K> Are_same_segments_2;
|
typedef Are_same_segments_C2<K> Are_same_segments_2;
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,10 @@ private:
|
||||||
typedef typename Base::FT FT;
|
typedef typename Base::FT FT;
|
||||||
typedef typename Base::RT RT;
|
typedef typename Base::RT RT;
|
||||||
|
|
||||||
|
|
||||||
|
using Base::compute_supporting_line;
|
||||||
|
using Base::compute_perpendicular;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
typedef typename Base::Oriented_side Oriented_side;
|
typedef typename Base::Oriented_side Oriented_side;
|
||||||
typedef Oriented_side result_type;
|
typedef Oriented_side result_type;
|
||||||
|
|
|
||||||
|
|
@ -60,6 +60,11 @@ public:
|
||||||
typedef typename Base::Point_2 Point_2;
|
typedef typename Base::Point_2 Point_2;
|
||||||
typedef typename Base::Segment_2 Segment_2;
|
typedef typename Base::Segment_2 Segment_2;
|
||||||
|
|
||||||
|
using Base::compute_supporting_line;
|
||||||
|
using Base::compute_perpendicular;
|
||||||
|
using Base::opposite_line;
|
||||||
|
using Base::oriented_side_of_line;
|
||||||
|
using Base::compute_squared_distance;
|
||||||
private:
|
private:
|
||||||
bool is_endpoint(const Site_2& p, const Site_2& s) const
|
bool is_endpoint(const Site_2& p, const Site_2& s) const
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -65,6 +65,11 @@ public:
|
||||||
typedef typename Base::Oriented_side Oriented_side;
|
typedef typename Base::Oriented_side Oriented_side;
|
||||||
typedef typename Base::Sign Sign;
|
typedef typename Base::Sign Sign;
|
||||||
|
|
||||||
|
using Base::compute_supporting_line;
|
||||||
|
using Base::oriented_side_of_line;
|
||||||
|
using Base::opposite_line;
|
||||||
|
using Base::to_ft;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
typedef Are_same_points_C2<K> Are_same_points_2;
|
typedef Are_same_points_C2<K> Are_same_points_2;
|
||||||
typedef Are_same_segments_C2<K> Are_same_segments_2;
|
typedef Are_same_segments_C2<K> Are_same_segments_2;
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,7 @@ public:
|
||||||
using Base::compute_supporting_line;
|
using Base::compute_supporting_line;
|
||||||
using Base::oriented_side_of_line;
|
using Base::oriented_side_of_line;
|
||||||
using Base::opposite_line;
|
using Base::opposite_line;
|
||||||
|
using Base::compute_projection;
|
||||||
|
|
||||||
typedef enum {PPP = 0, PPS, PSS, SSS} vertex_t;
|
typedef enum {PPP = 0, PPS, PSS, SSS} vertex_t;
|
||||||
struct PPP_Type {};
|
struct PPP_Type {};
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,18 @@ protected:
|
||||||
typedef typename Base::Handle_map Handle_map;
|
typedef typename Base::Handle_map Handle_map;
|
||||||
typedef typename Base::Point_handle_pair Point_handle_pair;
|
typedef typename Base::Point_handle_pair Point_handle_pair;
|
||||||
|
|
||||||
|
using Base::merge_info;
|
||||||
|
using Base::same_segments;
|
||||||
|
using Base::is_degenerate_segment;
|
||||||
|
using Base::convert_info;
|
||||||
|
using Base::second_endpoint_of_segment;
|
||||||
|
using Base::split_storage_site;
|
||||||
|
using Base::first_endpoint_of_segment;
|
||||||
|
using Base::incircle;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
using Base::is_infinite;
|
||||||
|
|
||||||
typedef typename Base::Point_container Point_container;
|
typedef typename Base::Point_container Point_container;
|
||||||
typedef typename Base::size_type size_type;
|
typedef typename Base::size_type size_type;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue