mirror of https://github.com/CGAL/cgal
fixed
compare_xy_3_object() in Cartesian.h less_distance_to_point_3_object in Cartesian.h and Cartesian3.h
This commit is contained in:
parent
b701558940
commit
88a80b454f
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue