Missing param

This commit is contained in:
Clement Jamin 2015-07-09 09:20:25 +02:00
parent b645b9b084
commit 40fd40cc0e
3 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ public:
/*!
* Function object type that provides
* `Point_3 operator()(const Line_3& l)`
* `Point_3 operator()(const Line_3& l, int i)`
* returning an arbitrary point on `l`. It holds `point(i) == point(j)`,
* iff `i == j`. Furthermore, it is directed from `point(i)` to `point(j)`,
* for all `i < j`.

View File

@ -162,7 +162,7 @@ namespace CGAL {
struct Construct_point_on_3
{
Point_3 operator()(Line_3 const&) { return Point_3(); }
Point_3 operator()(Line_3 const&, int) { return Point_3(); }
};
Construct_point_on_3 construct_point_on_3_object() const
{ return Construct_point_on_3(); }

View File

@ -622,7 +622,7 @@ namespace CGAL {
Sphere_3 constr_sphere(const Point_3& c, FT r) const
{ return m_traits.construct_sphere_3_object()(c, r); }
Point_3 constr_point_on(const Line_3& l) const
{ return m_traits.construct_point_on_3_object()(l); }
{ return m_traits.construct_point_on_3_object()(l, 0); }
FT sqlen(const Vector_3& v) const
{ return m_traits.compute_squared_length_3_object()(v); }