mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-08-17 00:48:48 +08:00
Documentation - Fix whitespaces (#809)
- Corrected spelling errors in comments (e.g., "od" to "of", "thr" to "the") - Removed unnecessary `<br>` HTML tags from comment formatting - Normalized whitespace in comments for consistency - Fixed terminology (e.g., "3-d" to "3D")
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
class TopoDS_Edge;
|
||||
class Adaptor3d_Curve;
|
||||
|
||||
//! This class makes the projection of a wire on a
|
||||
//! This class makes the projection of a wire on a
|
||||
//! shape.
|
||||
class BRepAlgo_NormalProjection
|
||||
{
|
||||
@@ -45,11 +45,11 @@ public:
|
||||
//! Add an edge or a wire to the list of shape to project
|
||||
Standard_EXPORT void Add(const TopoDS_Shape& ToProj);
|
||||
|
||||
//! Set the parameters used for computation
|
||||
//! Tol3d is the required tolerance between the 3d projected
|
||||
//! curve and its 2d representation
|
||||
//! InternalContinuity is the order of constraints
|
||||
//! used for approximation.
|
||||
//! Set the parameters used for computation
|
||||
//! Tol3d is the required tolerance between the 3d projected
|
||||
//! curve and its 2d representation
|
||||
//! InternalContinuity is the order of constraints
|
||||
//! used for approximation.
|
||||
//! MaxDeg and MaxSeg are the maximum degree and the maximum
|
||||
//! number of segment for BSpline resulting of an approximation.
|
||||
Standard_EXPORT void SetParams(const Standard_Real Tol3D,
|
||||
@@ -58,7 +58,7 @@ public:
|
||||
const Standard_Integer MaxDegree,
|
||||
const Standard_Integer MaxSeg);
|
||||
|
||||
//! Set the parameters used for computation
|
||||
//! Set the parameters used for computation
|
||||
//! in their default values
|
||||
Standard_EXPORT void SetDefaultParams();
|
||||
|
||||
@@ -68,14 +68,14 @@ public:
|
||||
//! if MaxDist < 0 then this method does not affect the algorithm
|
||||
Standard_EXPORT void SetMaxDistance(const Standard_Real MaxDist);
|
||||
|
||||
//! if With3d = Standard_False the 3dcurve is not computed
|
||||
//! the initial 3dcurve is kept to build the resulting edges.
|
||||
//! if With3d = Standard_False the 3dcurve is not computed
|
||||
//! the initial 3dcurve is kept to build the resulting edges.
|
||||
Standard_EXPORT void Compute3d(const Standard_Boolean With3d = Standard_True);
|
||||
|
||||
//! Manage limitation of projected edges.
|
||||
//! Manage limitation of projected edges.
|
||||
Standard_EXPORT void SetLimit(const Standard_Boolean FaceBoundaries = Standard_True);
|
||||
|
||||
//! Builds the result as a compound.
|
||||
//! Builds the result as a compound.
|
||||
Standard_EXPORT void Build();
|
||||
|
||||
Standard_EXPORT Standard_Boolean IsDone() const;
|
||||
@@ -89,7 +89,7 @@ public:
|
||||
//! For a projected edge, returns the corresponding initial face.
|
||||
Standard_EXPORT const TopoDS_Shape& Couple(const TopoDS_Edge& E) const;
|
||||
|
||||
//! Returns the list of shapes generated from the
|
||||
//! Returns the list of shapes generated from the
|
||||
//! shape <S>.
|
||||
Standard_EXPORT const TopTools_ListOfShape& Generated(const TopoDS_Shape& S);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user