improve phrasing

This commit is contained in:
Sébastien Loriot 2017-09-08 08:38:33 +02:00
parent c3833d0fb0
commit 8cf200f6b0
2 changed files with 5 additions and 4 deletions

View File

@ -56,8 +56,9 @@ void vertex_node(vertex_descriptor vd, Point& pt);
/*!
computes the subdivided points `ept1` and `ept2` based on the neighborhood
of the halfedge `hd` (which opposite is on the border), as well as the updated
position `vpt` of its target vertex. Along `hd`, `ept1` is before `ept2`.
of the halfedge `hd` (whose opposite is on the border).
Along `hd`, `ept1` comes before `ept2`.
`vpt` is the updated point for the target vertex of `hd`.
*/
void border_node(halfedge_descriptor hd, Point& ept1, Point& ept2, Point& vpt);

View File

@ -585,8 +585,8 @@ public:
pt = CGAL::ORIGIN + cv;
}
/// computes the \f$ \sqrt{3}\f$ edge-points `ept1` and `ept2` of the halfedge `hd`,
/// as well as the updated point for its target vertex.
/// computes the \f$ \sqrt{3}\f$ edge-points `ept1` and `ept2` of the halfedge `hd`.
/// The updated point coordinates for the target vertex of `hd` is also computed and put in `vpt`.
/// \attention Border subdivision only happens every second step of a <em>single</em>
/// successive \f$ \sqrt{3}\f$ subdivision (thus requiring a depth larger than 1).
void border_node(halfedge_descriptor hd, Point& ept1, Point& ept2, Point& vpt) {