Documentation - Fix whitespaces and typos (#821)

- Removed excessive whitespace between words in comments
- Removed <br> syntax
- Fixed spelling errors ("hilight" → "highlights", "texte" → "text")
- Improved comment formatting and structure
This commit is contained in:
luzpaz
2025-11-13 04:30:53 -05:00
committed by GitHub
parent 396b677095
commit df59c53e79
159 changed files with 1017 additions and 1012 deletions
@@ -29,7 +29,7 @@ class gp_Pnt2d;
class gp_Lin2d;
class BRepClass_Edge;
//! Provide an exploration of a BRep Face for the
//! Provide an exploration of a BRep Face for the
//! classification. Return UV edges.
class BRepClass_FaceExplorer
{
@@ -44,44 +44,44 @@ public:
//! bounding box. Returns True if point was not changed.
Standard_EXPORT Standard_Boolean CheckPoint(gp_Pnt2d& thePoint);
//! Should return True if the point is outside a
//! Should return True if the point is outside a
//! bounding volume of the face.
Standard_EXPORT Standard_Boolean Reject(const gp_Pnt2d& P) const;
//! Returns in <L>, <Par> a segment having at least
//! one intersection with the face boundary to
//! compute intersections.
//! Returns in <L>, <Par> a segment having at least
//! one intersection with the face boundary to
//! compute intersections.
Standard_EXPORT Standard_Boolean Segment(const gp_Pnt2d& P, gp_Lin2d& L, Standard_Real& Par);
//! Returns in <L>, <Par> a segment having at least
//! one intersection with the face boundary to
//! compute intersections. Each call gives another segment.
//! Returns in <L>, <Par> a segment having at least
//! one intersection with the face boundary to
//! compute intersections. Each call gives another segment.
Standard_EXPORT Standard_Boolean OtherSegment(const gp_Pnt2d& P, gp_Lin2d& L, Standard_Real& Par);
//! Starts an exploration of the wires.
Standard_EXPORT void InitWires();
//! Returns True if there is a current wire.
//! Returns True if there is a current wire.
Standard_Boolean MoreWires() const;
//! Sets the explorer to the next wire.
//! Sets the explorer to the next wire.
void NextWire();
//! Returns True if the wire bounding volume does not
//! Returns True if the wire bounding volume does not
//! intersect the segment.
Standard_EXPORT Standard_Boolean RejectWire(const gp_Lin2d& L, const Standard_Real Par) const;
//! Starts an exploration of the edges of the current
//! Starts an exploration of the edges of the current
//! wire.
Standard_EXPORT void InitEdges();
//! Returns True if there is a current edge.
Standard_Boolean MoreEdges() const;
//! Sets the explorer to the next edge.
//! Sets the explorer to the next edge.
void NextEdge();
//! Returns True if the edge bounding volume does not
//! Returns True if the edge bounding volume does not
//! intersect the segment.
Standard_EXPORT Standard_Boolean RejectEdge(const gp_Lin2d& L, const Standard_Real Par) const;