compare_xy_3_object() in Cartesian.h
less_distance_to_point_3_object in Cartesian.h and Cartesian3.h
This commit is contained in:
Mariette Yvinec 2000-04-20 11:57:01 +00:00
parent b701558940
commit 88a80b454f
2 changed files with 5 additions and 5 deletions

View File

@ -748,7 +748,7 @@ compare_z_3_object() const
typedef CGALi::Compare_xy Compare_xy_3;
Compare_xy_3
compare_xy_3_object() const
{ return Compare_xyz_3(); }
{ return Compare_xy_3(); }
typedef CGALi::Compare_xyz Compare_xyz_3;
Compare_xyz_3
@ -757,8 +757,8 @@ compare_xyz_3_object() const
typedef CGAL ::p_Less_dist_to_point<Point_3> Less_distance_to_point_3;
Less_distance_to_point_3
less_distance_to_point_3_object() const
{ return Less_distance_to_point_3(); }
less_distance_to_point_3_object(const Point_3& p) const
{ return Less_distance_to_point_3(p); }
typedef CGALi::Collinear Collinear_3;
Collinear_3

View File

@ -445,8 +445,8 @@ compare_xyz_3_object() const
typedef CGAL ::p_Less_dist_to_point<Point_3> Less_distance_to_point_3;
Less_distance_to_point_3
less_distance_to_point_3_object() const
{ return Less_distance_to_point_3(); }
less_distance_to_point_3_object(const Point_3& p) const
{ return Less_distance_to_point_3(p); }
typedef CGALi::Collinear Collinear_3;
Collinear_3