From c3e1fadb330c970404695758b68298c4bd98ff10 Mon Sep 17 00:00:00 2001 From: kanhuang Date: Wed, 31 Jul 2013 17:03:18 -0400 Subject: [PATCH] fix issue of review 1 --- .../CGAL/Preprocessed_rotational_sweep_visibility_2.h | 6 +++--- .../doc/Visibility_2/CGAL/Rotational_sweep_visibility_2.h | 2 +- Visibility_2/doc/Visibility_2/CGAL/Simple_visibility_2.h | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Visibility_2/doc/Visibility_2/CGAL/Preprocessed_rotational_sweep_visibility_2.h b/Visibility_2/doc/Visibility_2/CGAL/Preprocessed_rotational_sweep_visibility_2.h index 14d0e25ef22..28b126613d7 100644 --- a/Visibility_2/doc/Visibility_2/CGAL/Preprocessed_rotational_sweep_visibility_2.h +++ b/Visibility_2/doc/Visibility_2/CGAL/Preprocessed_rotational_sweep_visibility_2.h @@ -128,7 +128,7 @@ The visibility region of `q` will be stored in `out_arr`. \pre `q` is in the interior or on the boundary of the given face `f` \return the face handle to the face in `out_arr` that represents the visibility region */ - Face_handle visibility_region(const Point_2& q, const Face& f, Output_Arrangement_2& out_arr); + Face_handle visibility_region(const Point_2& q, const Face_handle& f, Output_Arrangement_2& out_arr); /*! Computes the visibility region for the given query point `q` that is on the side of `halfedge`. @@ -136,11 +136,11 @@ The visibility region of `q` will be stored in `out_arr`. \param q is the query point from which the visibility region is computed \param halfedge the halfedge on which `q` is located \param out_arr is the output arrangement -\pre `half_edge` is a half edge of `this->arr()` +\pre `halfedge` is a half edge of `this->arr()` \pre `q` is on halfedge \return the face handle to the face in `out_arr` that represents the visibility region */ - Face_handle visibility_region(const Point_2& q, const Halfedge& halfedge, Output_Arrangement_2& out_arr); + Face_handle visibility_region(const Point_2& q, const Halfedge_handle& halfedge, Output_Arrangement_2& out_arr); /// @} diff --git a/Visibility_2/doc/Visibility_2/CGAL/Rotational_sweep_visibility_2.h b/Visibility_2/doc/Visibility_2/CGAL/Rotational_sweep_visibility_2.h index dc69fa516ae..a13dca8404a 100644 --- a/Visibility_2/doc/Visibility_2/CGAL/Rotational_sweep_visibility_2.h +++ b/Visibility_2/doc/Visibility_2/CGAL/Rotational_sweep_visibility_2.h @@ -131,7 +131,7 @@ The visibility region of `q` will be stored in `out_arr`. \param q is the query point from which the visibility region is computed \param halfedge the halfedge on which `q` is located \param out_arr is the output arrangement -\pre `half_edge` is a half edge of `this->arr()` +\pre `halfedge` is a half edge of `this->arr()` \pre `q` is on halfedge \return the face handle to the face in `out_arr` that represents the visibility region */ diff --git a/Visibility_2/doc/Visibility_2/CGAL/Simple_visibility_2.h b/Visibility_2/doc/Visibility_2/CGAL/Simple_visibility_2.h index c5aa66ee450..ad42e792860 100644 --- a/Visibility_2/doc/Visibility_2/CGAL/Simple_visibility_2.h +++ b/Visibility_2/doc/Visibility_2/CGAL/Simple_visibility_2.h @@ -138,7 +138,7 @@ The visibility region of `q` will be stored in `out_arr`. \pre `q` is in the interior or on the boundary of the given face `f` \return the face handle to the face in `out_arr` that represents the visibility region */ - Face_handle visibility_region(const Point_2& q, const Face& f, Output_Arrangement_2& out_arr); + Face_handle visibility_region(const Point_2& q, const Face_handle& f, Output_Arrangement_2& out_arr); /*! Computes the visibility region for the given query point `q` that is on the side of `halfedge`. @@ -146,11 +146,11 @@ The visibility region of `q` will be stored in `out_arr`. \param q is the query point from which the visibility region is computed \param halfedge the halfedge on which `q` is located \param out_arr is the output arrangement -\pre `half_edge` is a half edge of `this->arr()` -\pre `q` is on halfedge +\pre `halfedge` is a halfedge of `this->arr()` +\pre `q` is on `halfedge` \return the face handle to the face in `out_arr` that represents the visibility region */ - Face_handle visibility_region(const Point_2& q, const Halfedge& halfedge, Output_Arrangement_2& out_arr); + Face_handle visibility_region(const Point_2& q, const Halfedge_handle& halfedge, Output_Arrangement_2& out_arr); /// @}