fix issue of review 1

This commit is contained in:
kanhuang 2013-07-31 17:03:18 -04:00
parent fd36bc76c0
commit c3e1fadb33
3 changed files with 8 additions and 8 deletions

View File

@ -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);
/// @}

View File

@ -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
*/

View File

@ -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);
/// @}