diff --git a/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_CircArraySubfigure.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_CircArraySubfigure.hxx
index 65b15755a3..64c131e53a 100644
--- a/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_CircArraySubfigure.hxx
+++ b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_CircArraySubfigure.hxx
@@ -88,8 +88,8 @@ public:
//! returns True if (ListCount = 0) all elements are to be displayed
Standard_EXPORT Standard_Boolean DisplayFlag() const;
- //! returns 0 if half or fewer of the elements of the array are defined
- //! 1 if half or more of the elements are defined
+ //! returns 0 if half or fewer of the elements of the array are defined
+ //! returns 1 if half or more of the elements are defined
Standard_EXPORT Standard_Boolean DoDontFlag() const;
//! returns whether Index is to be processed (DO)
diff --git a/src/DataExchange/TKXSBase/Interface/Interface_CheckStatus.hxx b/src/DataExchange/TKXSBase/Interface/Interface_CheckStatus.hxx
index f720f3c53d..a0fd93b312 100644
--- a/src/DataExchange/TKXSBase/Interface/Interface_CheckStatus.hxx
+++ b/src/DataExchange/TKXSBase/Interface/Interface_CheckStatus.hxx
@@ -18,9 +18,13 @@
#define _Interface_CheckStatus_HeaderFile
//! Classifies checks
-//! OK : check is empty Warning : Warning, no Fail Fail : Fail
-//! Others to query :
-//! Any : any status Message : Warning/Fail NoFail : Warning/OK
+//! OK : check is empty
+//! Warning: Warning, no Fail
+//! Fail : Fail
+//! Others to query:
+//! Any : any status
+//! Message: Warning/Fail
+//! NoFail : Warning/OK
enum Interface_CheckStatus
{
Interface_CheckOK,
diff --git a/src/DataExchange/TKXSBase/Interface/Interface_CopyTool.hxx b/src/DataExchange/TKXSBase/Interface/Interface_CopyTool.hxx
index a1cd02ddd9..546601d378 100644
--- a/src/DataExchange/TKXSBase/Interface/Interface_CopyTool.hxx
+++ b/src/DataExchange/TKXSBase/Interface/Interface_CopyTool.hxx
@@ -48,7 +48,7 @@ class Interface_EntityIterator;
//! copy different parts of a starting Model to several Targets),
//! or incremental : in that case, it is possible to know what is
//! the content of the last increment (defined by last call to
-//! ClearLastFlags and queried by call to LastCopiedAfter)
+//! ClearLastFlags and queried by call to LastCopiedAfter)
//!
//! Works in two times : first, create the list of copied Entities
//! second, pushes them to a target Model (manages also Model's
@@ -128,7 +128,7 @@ public:
const Handle(Standard_Transient)& res);
//! Search for the result of a Starting Object (i.e. an Entity)
- //! Returns True if a Result is Bound (and fills "result")
+ //! Returns True if a Result is Bound (and fills "result")
//! Returns False if no result is Bound
Standard_EXPORT Standard_Boolean Search(const Handle(Standard_Transient)& ent,
Handle(Standard_Transient)& res) const;
diff --git a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep.hxx
index 04d524c64d..9570455ce8 100644
--- a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep.hxx
+++ b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep.hxx
@@ -28,7 +28,7 @@ class HLRBRep_Curve;
//! Hidden Lines Removal
//! algorithms on the BRep DataStructure.
//!
-//! The class PolyAlgo is used to remove Hidden lines
+//! The class PolyAlgo is used to remove Hidden lines
//! on Shapes with Triangulations.
class HLRBRep
{
diff --git a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLPropsATool.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLPropsATool.hxx
index 82d1a6e93e..fd347e613b 100644
--- a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLPropsATool.hxx
+++ b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLPropsATool.hxx
@@ -30,15 +30,15 @@ class HLRBRep_CLPropsATool
public:
DEFINE_STANDARD_ALLOC
- //! Computes the point
of parameter on the
+ //! Computes the point
of parameter on the
//! Curve from HLRBRep .
static void Value(const HLRBRep_Curve* A, const Standard_Real U, gp_Pnt2d& P);
- //! Computes the point and first derivative
+ //! Computes the point and first derivative
//! of parameter on the curve .
static void D1(const HLRBRep_Curve* A, const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V1);
- //! Computes the point , the first derivative
+ //! Computes the point , the first derivative
//! and second derivative of parameter on the
//! curve .
static void D2(const HLRBRep_Curve* A,
@@ -48,7 +48,7 @@ public:
gp_Vec2d& V2);
//! Computes the point , the first derivative ,
- //! the second derivative and third derivative
+ //! the second derivative and third derivative
//! of parameter on the curve .
static void D3(const HLRBRep_Curve* A,
const Standard_Real U,
@@ -57,17 +57,16 @@ public:
gp_Vec2d& V2,
gp_Vec2d& V3);
- //! returns the order of continuity of the curve .
- //! returns 1 : first derivative only is computable
- //! returns 2 : first and second derivative only are
- //! computable. returns 3 : first, second and third
- //! are computable.
+ //! returns the order of continuity of the curve .
+ //! returns 1: first derivative only is computable.
+ //! returns 2: first and second derivative only are computable.
+ //! returns 3: first, second and third are computable.
static Standard_Integer Continuity(const HLRBRep_Curve* A);
//! returns the first parameter bound of the curve.
static Standard_Real FirstParameter(const HLRBRep_Curve* A);
- //! returns the last parameter bound of the curve.
+ //! returns the last parameter bound of the curve.
//! FirstParameter must be less than LastParamenter.
static Standard_Real LastParameter(const HLRBRep_Curve* A);
diff --git a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Curve.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Curve.hxx
index 2a4af608e3..afc9f86c70 100644
--- a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Curve.hxx
+++ b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Curve.hxx
@@ -65,11 +65,11 @@ public:
//! Returns the 3D curve.
const BRepAdaptor_Curve& GetCurve() const;
- //! Returns the parameter on the 2d curve from the
+ //! Returns the parameter on the 2d curve from the
//! parameter on the 3d curve.
Standard_EXPORT Standard_Real Parameter2d(const Standard_Real P3d) const;
- //! Returns the parameter on the 3d curve from the
+ //! Returns the parameter on the 3d curve from the
//! parameter on the 2d curve.
Standard_EXPORT Standard_Real Parameter3d(const Standard_Real P2d) const;
@@ -79,25 +79,25 @@ public:
//! Update the minmax returns tol for enlarge;
Standard_EXPORT Standard_Real UpdateMinMax(Standard_Real TotMin[16], Standard_Real TotMax[16]);
- //! Computes the Z coordinate of the point of
+ //! Computes the Z coordinate of the point of
//! parameter U on the curve in the viewing coordinate system
Standard_EXPORT Standard_Real Z(const Standard_Real U) const;
- //! Computes the 3D point of parameter U on the
+ //! Computes the 3D point of parameter U on the
//! curve.
gp_Pnt Value3D(const Standard_Real U) const;
- //! Computes the 3D point of parameter U on the
+ //! Computes the 3D point of parameter U on the
//! curve.
void D0(const Standard_Real U, gp_Pnt& P) const;
- //! Computes the point of parameter U on the curve
+ //! Computes the point of parameter U on the curve
//! with its first derivative.
void D1(const Standard_Real U, gp_Pnt& P, gp_Vec& V) const;
//! Depending on computes the 2D point and
- //! tangent on the curve at sart (or at end). If the first
- //! derivative is null look after at start (or before at end)
+ //! tangent on the curve at sart (or at end). If the first
+ //! derivative is null look after at start (or before at end)
//! with the second derivative.
Standard_EXPORT void Tangent(const Standard_Boolean AtStart, gp_Pnt2d& P, gp_Dir2d& D) const;
@@ -107,15 +107,15 @@ public:
GeomAbs_Shape Continuity() const;
- //! If necessary, breaks the curve in intervals of
- //! continuity . And returns the number of
+ //! If necessary, breaks the curve in intervals of
+ //! continuity . And returns the number of
//! intervals.
Standard_Integer NbIntervals(const GeomAbs_Shape S) const;
- //! Stores in the parameters bounding the intervals
+ //! Stores in the parameters bounding the intervals
//! of continuity .
//!
- //! The array must provide enough room to accommodate
+ //! The array must provide enough room to accommodate
//! for the parameters. i.e. T.Length() > NbIntervals()
void Intervals(TColStd_Array1OfReal& T, const GeomAbs_Shape S) const;
@@ -131,7 +131,7 @@ public:
//! Computes the point of parameter U on the curve.
Standard_EXPORT void D0(const Standard_Real U, gp_Pnt2d& P) const;
- //! Computes the point of parameter U on the curve
+ //! Computes the point of parameter U on the curve
//! with its first derivative.
//! Raised if the continuity of the current interval
//! is not C1.
@@ -158,12 +158,12 @@ public:
//! Raised if N < 1.
Standard_EXPORT gp_Vec2d DN(const Standard_Real U, const Standard_Integer N) const;
- //! Returns the parametric resolution corresponding
+ //! Returns the parametric resolution corresponding
//! to the real space resolution .
Standard_Real Resolution(const Standard_Real R3d) const;
- //! Returns the type of the curve in the current
- //! interval : Line, Circle, Ellipse, Hyperbola,
+ //! Returns the type of the curve in the current
+ //! interval: Line, Circle, Ellipse, Hyperbola,
//! Parabola, BezierCurve, BSplineCurve, OtherCurve.
GeomAbs_CurveType GetType() const;
diff --git a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CurveTool.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CurveTool.hxx
index a0993b30b9..e5f58ba9da 100644
--- a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CurveTool.hxx
+++ b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CurveTool.hxx
@@ -48,14 +48,14 @@ public:
static GeomAbs_Shape Continuity(const Standard_Address C);
- //! Returns the number of intervals for continuity
+ //! Returns the number of intervals for continuity
//! . May be one if Continuity(myclass) >=
static Standard_Integer NbIntervals(const Standard_Address C);
- //! Stores in the parameters bounding the intervals
+ //! Stores in the parameters bounding the intervals
//! of continuity .
//!
- //! The array must provide enough room to accommodate
+ //! The array must provide enough room to accommodate
//! for the parameters. i.e. T.Length() > NbIntervals()
static void Intervals(const Standard_Address C, TColStd_Array1OfReal& T);
@@ -79,7 +79,7 @@ public:
//! Computes the point of parameter U on the curve.
static void D0(const Standard_Address C, const Standard_Real U, gp_Pnt2d& P);
- //! Computes the point of parameter U on the curve
+ //! Computes the point of parameter U on the curve
//! with its first derivative.
//! Raised if the continuity of the current interval
//! is not C1.
@@ -113,17 +113,17 @@ public:
//! Raised if N < 1.
static gp_Vec2d DN(const Standard_Address C, const Standard_Real U, const Standard_Integer N);
- //! Returns the parametric resolution corresponding
+ //! Returns the parametric resolution corresponding
//! to the real space resolution .
static Standard_Real Resolution(const Standard_Address C, const Standard_Real R3d);
- //! Returns the type of the curve in the current
- //! interval : Line, Circle, Ellipse, Hyperbola,
+ //! Returns the type of the curve in the current
+ //! interval: Line, Circle, Ellipse, Hyperbola,
//! Parabola, BezierCurve, BSplineCurve, OtherCurve.
static GeomAbs_CurveType GetType(const Standard_Address C);
- //! Returns the type of the curve in the current
- //! interval : Line, Circle, Ellipse, Hyperbola,
+ //! Returns the type of the curve in the current
+ //! interval: Line, Circle, Ellipse, Hyperbola,
//! Parabola, BezierCurve, BSplineCurve, OtherCurve.
static GeomAbs_CurveType TheType(const Standard_Address C);
diff --git a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Data.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Data.hxx
index cca9cdb60f..31c6fc7621 100644
--- a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Data.hxx
+++ b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Data.hxx
@@ -55,13 +55,13 @@ class HLRBRep_Data : public Standard_Transient
{
public:
- //! Create an empty data structure of vertices,
+ //! Create an empty data structure of vertices,
//! edges and faces.
Standard_EXPORT HLRBRep_Data(const Standard_Integer NV,
const Standard_Integer NE,
const Standard_Integer NF);
- //! Write in me with a translation of
+ //! Write in me with a translation of
//! ,,.
Standard_EXPORT void Write(const Handle(HLRBRep_Data)& DS,
const Standard_Integer dv,
@@ -72,15 +72,15 @@ public:
HLRBRep_Array1OfFData& FDataArray();
- //! Set the tolerance for the rejections during the
+ //! Set the tolerance for the rejections during the
//! exploration
void Tolerance(const Standard_ShortReal tol);
- //! returns the tolerance for the rejections during
+ //! returns the tolerance for the rejections during
//! the exploration
Standard_ShortReal Tolerance() const;
- //! end of building of the Data and updating
+ //! end of building of the Data and updating
//! all the information linked to the projection.
Standard_EXPORT void Update(const HLRAlgo_Projector& P);
@@ -101,7 +101,7 @@ public:
const Standard_Integer e1,
const Standard_Integer e2);
- //! Begin an iteration only on visible Edges
+ //! Begin an iteration only on visible Edges
//! crossing the face number .
Standard_EXPORT void InitEdge(const Standard_Integer FI, BRepTopAdaptor_MapOfShapeTool& MST);
@@ -109,19 +109,19 @@ public:
Standard_EXPORT void NextEdge(const Standard_Boolean skip = Standard_True);
- //! Returns the current Edge
+ //! Returns the current Edge
Standard_EXPORT Standard_Integer Edge() const;
- //! Returns true if the current edge to be hidden
+ //! Returns true if the current edge to be hidden
//! belongs to the hiding face.
Standard_Boolean HidingTheFace() const;
- //! Returns true if the current hiding face is not an
+ //! Returns true if the current hiding face is not an
//! auto-intersected one.
Standard_Boolean SimpleHidingFace() const;
- //! Intersect the current Edge with the boundary of
- //! the hiding face. The interferences are given by
+ //! Intersect the current Edge with the boundary of
+ //! the hiding face. The interferences are given by
//! the More, Next, and Value methods.
Standard_EXPORT void InitInterference();
@@ -129,7 +129,7 @@ public:
Standard_EXPORT void NextInterference();
- //! Returns True if the interference is rejected.
+ //! Returns True if the interference is rejected.
Standard_EXPORT Standard_Boolean RejectedInterference();
//! Returns True if the rejected interference is above
@@ -139,21 +139,21 @@ public:
HLRAlgo_Interference& Interference();
//! Returns the local description of the projection of
- //! the current LEdge at parameter .
+ //! the current LEdge at parameter .
Standard_EXPORT void LocalLEGeometry2D(const Standard_Real Param,
gp_Dir2d& Tg,
gp_Dir2d& Nm,
Standard_Real& Cu);
//! Returns the local description of the projection of
- //! the current FEdge at parameter .
+ //! the current FEdge at parameter .
Standard_EXPORT void LocalFEGeometry2D(const Standard_Integer FE,
const Standard_Real Param,
gp_Dir2d& Tg,
gp_Dir2d& Nm,
Standard_Real& Cu);
- //! Returns the local 3D state of the intersection
+ //! Returns the local 3D state of the intersection
//! between the current edge and the current face at the
//! and parameters.
Standard_EXPORT void EdgeState(const Standard_Real p1,
@@ -161,23 +161,23 @@ public:
TopAbs_State& stbef,
TopAbs_State& staf);
- //! Returns the true if the Edge belongs to the
+ //! Returns the true if the Edge belongs to the
//! Hiding Face.
Standard_Boolean EdgeOfTheHidingFace(const Standard_Integer E, const HLRBRep_EdgeData& ED) const;
- //! Returns the number of levels of hiding face above
- //! the first point of the edge . The
- //! InterferenceList is given to compute far away of
+ //! Returns the number of levels of hiding face above
+ //! the first point of the edge . The
+ //! InterferenceList is given to compute far away of
//! the Interferences and then come back.
Standard_EXPORT Standard_Integer HidingStartLevel(const Standard_Integer E,
const HLRBRep_EdgeData& ED,
const HLRAlgo_InterferenceList& IL);
- //! Returns the state of the Edge after
+ //! Returns the state of the Edge after
//! classification.
Standard_EXPORT TopAbs_State Compare(const Standard_Integer E, const HLRBRep_EdgeData& ED);
- //! Simple classification of part of edge [p1, p2].
+ //! Simple classification of part of edge [p1, p2].
//! Returns OUT if at least 1 of Nbp points of edge is out; otherwise returns IN.
//! It is used to check "suspicion" hidden part of edge.
Standard_EXPORT TopAbs_State SimplClassify(const Standard_Integer E,
@@ -203,22 +203,22 @@ public:
DEFINE_STANDARD_RTTIEXT(HLRBRep_Data, Standard_Transient)
private:
- //! Orient the OutLines ( left must be inside in
- //! projection ). Returns True if the face of a closed
- //! shell has been inverted;
+ //! Orient the OutLines (left must be inside projection).
+ //! Returns True if the face of a closed shell has been
+ //! inverted.
Standard_EXPORT Standard_Boolean OrientOutLine(const Standard_Integer I, HLRBRep_FaceData& FD);
- //! Orient the Edges which are not Internal OutLine,
+ //! Orient the Edges which are not Internal OutLine,
//! not Double and not IsoLine.
Standard_EXPORT void OrientOthEdge(const Standard_Integer I, HLRBRep_FaceData& FD);
- //! Returns True if the intersection is rejected.
+ //! Returns True if the intersection is rejected.
Standard_EXPORT Standard_Boolean RejectedPoint(const IntRes2d_IntersectionPoint& PInter,
const TopAbs_Orientation BoundOri,
const Standard_Integer NumSeg);
- //! Returns True if there is a common vertex between myLE and myFE depending on and
- //! .
+ //! Returns True if there is a common vertex between
+ //! myLE and myFE depending on and .
Standard_EXPORT Standard_Boolean SameVertex(const Standard_Boolean head1,
const Standard_Boolean head2);
diff --git a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf.hxx
index 0aa0620e03..a4c02831ef 100644
--- a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf.hxx
+++ b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf.hxx
@@ -38,7 +38,7 @@ class HLRBRep_TheInterferenceOfInterCSurf : public Intf_Interference
public:
DEFINE_STANDARD_ALLOC
- //! Constructs an empty interference between Polygon and
+ //! Constructs an empty interference between Polygon and
//! Polyhedron.
Standard_EXPORT HLRBRep_TheInterferenceOfInterCSurf();
@@ -48,29 +48,29 @@ public:
const HLRBRep_ThePolygonOfInterCSurf& thePolyg,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh);
- //! Constructs and computes an interference between the
+ //! Constructs and computes an interference between the
//! Straight Line and the Polyhedron.
Standard_EXPORT HLRBRep_TheInterferenceOfInterCSurf(
const gp_Lin& theLin,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh);
- //! Constructs and computes an interference between the
+ //! Constructs and computes an interference between the
//! Straight Lines and the Polyhedron.
Standard_EXPORT HLRBRep_TheInterferenceOfInterCSurf(
const Intf_Array1OfLin& theLins,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh);
- //! Computes an interference between the Polygon and the
+ //! Computes an interference between the Polygon and the
//! Polyhedron.
Standard_EXPORT void Perform(const HLRBRep_ThePolygonOfInterCSurf& thePolyg,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh);
- //! Computes an interference between the Straight Line and the
+ //! Computes an interference between the Straight Line and the
//! Polyhedron.
Standard_EXPORT void Perform(const gp_Lin& theLin,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh);
- //! Computes an interference between the Straight Lines and
+ //! Computes an interference between the Straight Lines and
//! the Polyhedron.
Standard_EXPORT void Perform(const Intf_Array1OfLin& theLins,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh);
@@ -82,33 +82,33 @@ public:
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh,
Bnd_BoundSortBox& theBoundSB);
- //! Constructs and computes an interference between the
+ //! Constructs and computes an interference between the
//! Straight Line and the Polyhedron.
Standard_EXPORT HLRBRep_TheInterferenceOfInterCSurf(
const gp_Lin& theLin,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh,
Bnd_BoundSortBox& theBoundSB);
- //! Constructs and computes an interference between the
+ //! Constructs and computes an interference between the
//! Straight Lines and the Polyhedron.
Standard_EXPORT HLRBRep_TheInterferenceOfInterCSurf(
const Intf_Array1OfLin& theLins,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh,
Bnd_BoundSortBox& theBoundSB);
- //! Computes an interference between the Polygon and the
+ //! Computes an interference between the Polygon and the
//! Polyhedron.
Standard_EXPORT void Perform(const HLRBRep_ThePolygonOfInterCSurf& thePolyg,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh,
Bnd_BoundSortBox& theBoundSB);
- //! Computes an interference between the Straight Line and the
+ //! Computes an interference between the Straight Line and the
//! Polyhedron.
Standard_EXPORT void Perform(const gp_Lin& theLin,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh,
Bnd_BoundSortBox& theBoundSB);
- //! Computes an interference between the Straight Lines and
+ //! Computes an interference between the Straight Lines and
//! the Polyhedron.
Standard_EXPORT void Perform(const Intf_Array1OfLin& theLins,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh,
@@ -127,7 +127,7 @@ public:
protected:
private:
- //! Computes the intersection between the segment
+ //! Computes the intersection between the segment
//! and the triangle of .
Standard_EXPORT void Intersect(const gp_Pnt& BegO,
const gp_Pnt& EndO,
@@ -135,7 +135,7 @@ private:
const Standard_Integer TTri,
const HLRBRep_ThePolyhedronOfInterCSurf& thePolyh);
- //! Computes the intersection between the segment
+ //! Computes the intersection between the segment
//! and the triangle of .
Standard_EXPORT void Intersect(const gp_Pnt& BegO,
const gp_Pnt& EndO,
diff --git a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_VertexList.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_VertexList.hxx
index 6619ab1dd6..ddb652066a 100644
--- a/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_VertexList.hxx
+++ b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_VertexList.hxx
@@ -50,19 +50,19 @@ public:
//! Returns True if the current vertex is on the boundary of the edge.
Standard_EXPORT Standard_Boolean IsBoundary() const;
- //! Returns True if the current vertex is an
+ //! Returns True if the current vertex is an
//! interference.
Standard_EXPORT Standard_Boolean IsInterference() const;
- //! Returns the orientation of the current vertex if
+ //! Returns the orientation of the current vertex if
//! it is on the boundary of the edge.
Standard_EXPORT TopAbs_Orientation Orientation() const;
- //! Returns the transition of the current vertex if
+ //! Returns the transition of the current vertex if
//! it is an interference.
Standard_EXPORT TopAbs_Orientation Transition() const;
- //! Returns the transition of the current vertex
+ //! Returns the transition of the current vertex
//! relative to the boundary if it is an interference.
Standard_EXPORT TopAbs_Orientation BoundaryTransition() const;
diff --git a/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DSFiller.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DSFiller.hxx
index c980f7457f..4bd823a33e 100644
--- a/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DSFiller.hxx
+++ b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DSFiller.hxx
@@ -30,13 +30,13 @@ class TopoDS_Vertex;
class Contap_Point;
class TopoDS_Edge;
-//! Provides methods to fill a HLRTopoBRep_Data.
+//! Provides methods to fill a HLRTopoBRep_Data.
class HLRTopoBRep_DSFiller
{
public:
DEFINE_STANDARD_ALLOC
- //! Stores in the outlines of using the current
+ //! Stores in the outlines of using the current
//! outliner and stores the isolines in using a Hatcher.
Standard_EXPORT static void Insert(const TopoDS_Shape& S,
Contap_Contour& FO,
@@ -46,7 +46,7 @@ public:
protected:
private:
- //! Stores in the outlines of using the current
+ //! Stores in the outlines of using the current
//! outliner.
Standard_EXPORT static void InsertFace(const Standard_Integer FI,
const TopoDS_Face& F,
@@ -54,21 +54,21 @@ private:
HLRTopoBRep_Data& DS,
const Standard_Boolean withPCurve);
- //! Make a vertex from an intersection point and
+ //! Make a vertex from an intersection point
and
//! store it in the data structure .
Standard_EXPORT static TopoDS_Vertex MakeVertex(const Contap_Point& P,
const Standard_Real tol,
HLRTopoBRep_Data& DS);
- //! Insert a vertex from an internal intersection
- //! point on restriction and store it in the
+ //! Insert a vertex from an internal intersection
+ //! point on restriction and store it in the
//! data structure .
Standard_EXPORT static void InsertVertex(const Contap_Point& P,
const Standard_Real tol,
const TopoDS_Edge& E,
HLRTopoBRep_Data& DS);
- //! Split all the edges with vertices in the data
+ //! Split all the edges with vertices in the data
//! structure.
Standard_EXPORT static void ProcessEdges(HLRTopoBRep_Data& DS);
};
diff --git a/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_Data.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_Data.hxx
index 2d939e6e41..e87cf82348 100644
--- a/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_Data.hxx
+++ b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_Data.hxx
@@ -34,7 +34,7 @@ class TopoDS_Face;
class TopoDS_Shape;
class TopoDS_Vertex;
-//! Stores the results of the OutLine and IsoLine
+//! Stores the results of the OutLine and IsoLine
//! processes.
class HLRTopoBRep_Data
{
@@ -46,7 +46,7 @@ public:
//! Clear of all the maps.
Standard_EXPORT void Clear();
- //! Clear of all the data not needed during and after
+ //! Clear of all the data not needed during and after
//! the hiding process.
Standard_EXPORT void Clean();
@@ -85,7 +85,7 @@ public:
//! Returns the list of the IsoLines.
const TopTools_ListOfShape& FaceIsoL(const TopoDS_Face& F) const;
- //! Returns True if V is an outline vertex on a
+ //! Returns True if V is an outline vertex on a
//! restriction.
Standard_Boolean IsOutV(const TopoDS_Vertex& V) const;
diff --git a/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_SimpleOffset.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_SimpleOffset.hxx
index 4579c1691f..e2e2066db8 100644
--- a/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_SimpleOffset.hxx
+++ b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_SimpleOffset.hxx
@@ -31,8 +31,8 @@
class BRepOffset_SimpleOffset;
DEFINE_STANDARD_HANDLE(BRepOffset_SimpleOffset, BRepTools_Modification)
-//! This class represents mechanism of simple offset algorithm i. e.
-//! topology-preserve offset construction without intersection.
+//! This class represents mechanism of simple offset algorithm
+//! i.e. topology-preserve offset construction without intersection.
//!
//! The list below shows mapping scheme:
//! - Each surface is mapped to its geometric offset surface.
@@ -54,17 +54,17 @@ public:
const Standard_Real theOffsetValue,
const Standard_Real theTolerance);
- //! Returns Standard_True if the face has been
- //! modified. In this case, is the new geometric
- //! support of the face, the new location,
- //! the new tolerance. has to be set to
- //! Standard_True when the modification reverses the
- //! normal of the surface.(the wires have to be
- //! reversed). has to be set to
- //! Standard_True if the orientation of the modified
- //! face changes in the shells which contain it. --
- //! Here, will return Standard_True if the
- //! -- gp_Trsf is negative.
+ //! Returns Standard_True if the face has been
+ //! modified. In this case, is the new geometric
+ //! support of the face, the new location,
+ //! the new tolerance. has to be set to
+ //! Standard_True when the modification reverses the
+ //! normal of the surface. (the wires have to be
+ //! reversed). has to be set to
+ //! Standard_True if the orientation of the modified
+ //! face changes in the shells which contain it.
+ //! Here, will return Standard_True if the
+ //! gp_Trsf is negative.
Standard_EXPORT Standard_Boolean NewSurface(const TopoDS_Face& F,
Handle(Geom_Surface)& S,
TopLoc_Location& L,
@@ -72,31 +72,31 @@ public:
Standard_Boolean& RevWires,
Standard_Boolean& RevFace) Standard_OVERRIDE;
- //! Returns Standard_True if the edge has been
- //! modified. In this case, is the new geometric
- //! support of the edge, the new location,
- //! the new tolerance. Otherwise, returns
- //! Standard_False, and , , are not
- //! significant.
+ //! Returns Standard_True if the edge has been
+ //! modified. In this case, is the new geometric
+ //! support of the edge, the new location,
+ //! the new tolerance. Otherwise, returns
+ //! Standard_False, and , ,
+ //! are not significant.
Standard_EXPORT Standard_Boolean NewCurve(const TopoDS_Edge& E,
Handle(Geom_Curve)& C,
TopLoc_Location& L,
Standard_Real& Tol) Standard_OVERRIDE;
- //! Returns Standard_True if the vertex has been
- //! modified. In this case, is the new geometric
- //! support of the vertex, the new tolerance.
- //! Otherwise, returns Standard_False, and ,
- //! are not significant.
+ //! Returns Standard_True if the vertex has been
+ //! modified. In this case, is the new geometric
+ //! support of the vertex, the new tolerance.
+ //! Otherwise, returns Standard_False, and ,
+ //! are not significant.
Standard_EXPORT Standard_Boolean NewPoint(const TopoDS_Vertex& V,
gp_Pnt& P,
Standard_Real& Tol) Standard_OVERRIDE;
- //! Returns Standard_True if the edge has a new
- //! curve on surface on the face .In this case,
- //! is the new geometric support of the edge, the
- //! new location, the new tolerance.
- //! Otherwise, returns Standard_False, and , ,
+ //! Returns Standard_True if the edge has a new
+ //! curve on surface on the face . In this case,
+ //! is the new geometric support of the edge,
+ //! the new location, the new tolerance.
+ //! Otherwise, returns Standard_False, and , ,
//! are not significant.
Standard_EXPORT Standard_Boolean NewCurve2d(const TopoDS_Edge& E,
const TopoDS_Face& F,
@@ -105,21 +105,21 @@ public:
Handle(Geom2d_Curve)& C,
Standard_Real& Tol) Standard_OVERRIDE;
- //! Returns Standard_True if the Vertex has a new
- //! parameter on the edge . In this case, is
- //! the parameter, the new tolerance.
- //! Otherwise, returns Standard_False, and ,
- //! are not significant.
+ //! Returns Standard_True if the Vertex has a new
+ //! parameter on the edge . In this case,
+ //! is the parameter, the new tolerance.
+ //! Otherwise, returns Standard_False, and ,
+ //! are not significant.
Standard_EXPORT Standard_Boolean NewParameter(const TopoDS_Vertex& V,
const TopoDS_Edge& E,
Standard_Real& P,
Standard_Real& Tol) Standard_OVERRIDE;
- //! Returns the continuity of between
+ //! Returns the continuity of between
//! and .
//!
- //! is the new edge created from .
- //! (resp. ) is the new face created from
+ //! is the new edge created from .
+ //! (resp. ) is the new face created from
//! (resp. ).
Standard_EXPORT GeomAbs_Shape Continuity(const TopoDS_Edge& E,
const TopoDS_Face& F1,
diff --git a/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_OneAxis.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_OneAxis.hxx
index f2bf97c9cb..4ddb7c7edc 100644
--- a/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_OneAxis.hxx
+++ b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_OneAxis.hxx
@@ -29,46 +29,44 @@
#include
class gp_Pnt2d;
-//! Algorithm to build primitives with one axis of
+//! Algorithm to build primitives with one axis of
//! revolution.
//!
-//! The revolution body is described by :
+//! The revolution body is described by:
//!
-//! A coordinate system (Ax2 from gp). The Z axis is
+//! A coordinate system (Ax2 from gp). The Z axis is
//! the rotational axis.
//!
-//! An Angle around the Axis, When the Angle is 2*PI
-//! the primitive is not limited by planar faces. The
+//! An Angle around the Axis, When the Angle is 2*PI
+//! the primitive is not limited by planar faces. The
//! U parameter range from 0 to Angle.
//!
//! A parameter range VMin, VMax on the meridian.
//!
-//! A meridian : The meridian is a curve described by
+//! A meridian: The meridian is a curve described by
//! a set of deferred methods.
//!
-//! The topology consists of A shell, Faces, Wires,
-//! Edges and Vertices. Methods are provided to build
-//! all the elements. Building an element implies the
-//! automatic building of all its sub-elements.
+//! The topology consists of A shell, Faces, Wires,
+//! Edges and Vertices. Methods are provided to build
+//! all the elements. Building an element implies the
+//! automatic building of all its sub-elements.
//!
//! So building the shell builds everything.
//!
-//! There are at most 5 faces :
+//! There are at most 5 faces:
//!
//! - The LateralFace.
-//!
//! - The TopFace and the BottomFace.
-//!
//! - The StartFace and the EndFace.
class BRepPrim_OneAxis
{
public:
DEFINE_STANDARD_ALLOC
- //! The MeridianOffset is added to the parameters on
- //! the meridian curve and to the V values of the
- //! pcurves. This is used for the sphere for example,
- //! to give a range on the meridian edge which is not
+ //! The MeridianOffset is added to the parameters on
+ //! the meridian curve and to the V values of the
+ //! pcurves. This is used for the sphere for example,
+ //! to give a range on the meridian edge which is not
//! VMin, VMax.
Standard_EXPORT void SetMeridianOffset(const Standard_Real MeridianOffset = 0);
@@ -89,20 +87,20 @@ public:
Standard_EXPORT void VMax(const Standard_Real V);
- //! Returns a face with no edges. The surface is the
+ //! Returns a face with no edges. The surface is the
//! lateral surface with normals pointing outward. The
- //! U parameter is the angle with the origin on the X
- //! axis. The V parameter is the parameter of the
+ //! U parameter is the angle with the origin on the X
+ //! axis. The V parameter is the parameter of the
//! meridian.
Standard_EXPORT virtual TopoDS_Face MakeEmptyLateralFace() const = 0;
- //! Returns an edge with a 3D curve made from the
- //! meridian in the XZ plane rotated by around
+ //! Returns an edge with a 3D curve made from the
+ //! meridian in the XZ plane rotated by around
//! the Z-axis. Ang may be 0 or myAngle.
Standard_EXPORT virtual TopoDS_Edge MakeEmptyMeridianEdge(const Standard_Real Ang) const = 0;
- //! Sets the parametric curve of the edge in the
- //! face to be the 2d representation of the
+ //! Sets the parametric curve of the edge in the
+ //! face to be the 2d representation of the
//! meridian.
Standard_EXPORT virtual void SetMeridianPCurve(TopoDS_Edge& E, const TopoDS_Face& F) const = 0;
@@ -110,72 +108,72 @@ public:
//! plane XZ.
Standard_EXPORT virtual gp_Pnt2d MeridianValue(const Standard_Real V) const = 0;
- //! Returns True if the point of parameter on the
+ //! Returns True if the point of parameter on the
//! meridian is on the Axis. Default implementation is
//! Abs(MeridianValue(V).X()) < Precision::Confusion()
Standard_EXPORT virtual Standard_Boolean MeridianOnAxis(const Standard_Real V) const;
- //! Returns True if the meridian is closed. Default
- //! implementation is
+ //! Returns True if the meridian is closed.
+ //! Default implementation is:
//! MeridianValue(VMin).IsEqual(MeridianValue(VMax),
//! Precision::Confusion())
Standard_EXPORT virtual Standard_Boolean MeridianClosed() const;
- //! Returns True if VMax is infinite. Default
- //! Precision::IsPositiveInfinite(VMax);
+ //! Returns True if VMax is infinite.
+ //! Default Precision::IsPositiveInfinite(VMax);
Standard_EXPORT virtual Standard_Boolean VMaxInfinite() const;
- //! Returns True if VMin is infinite. Default
- //! Precision::IsNegativeInfinite(VMax);
+ //! Returns True if VMin is infinite.
+ //! Default Precision::IsNegativeInfinite(VMax);
Standard_EXPORT virtual Standard_Boolean VMinInfinite() const;
- //! Returns True if there is a top face.
+ //! Returns True if there is a top face.
//!
- //! That is neither : VMaxInfinite()
+ //! That is neither: VMaxInfinite()
//! MeridianClosed()
//! MeridianOnAxis(VMax)
Standard_EXPORT virtual Standard_Boolean HasTop() const;
- //! Returns True if there is a bottom face.
+ //! Returns True if there is a bottom face.
//!
- //! That is neither : VMinInfinite()
+ //! That is neither: VMinInfinite()
//! MeridianClosed()
//! MeridianOnAxis(VMin)
Standard_EXPORT virtual Standard_Boolean HasBottom() const;
- //! Returns True if there are Start and End faces.
+ //! Returns True if there are Start and End faces.
//!
- //! That is : 2*PI - Angle > Precision::Angular()
+ //! That is: 2*PI - Angle > Precision::Angular()
Standard_EXPORT virtual Standard_Boolean HasSides() const;
- //! Returns the Shell containing all the Faces of the
+ //! Returns the Shell containing all the Faces of the
//! primitive.
Standard_EXPORT const TopoDS_Shell& Shell();
- //! Returns the lateral Face. It is oriented toward
+ //! Returns the lateral Face. It is oriented toward
//! the outside of the primitive.
Standard_EXPORT const TopoDS_Face& LateralFace();
- //! Returns the top planar Face. It is Oriented
+ //! Returns the top planar Face. It is Oriented
//! toward the +Z axis (outside).
Standard_EXPORT const TopoDS_Face& TopFace();
- //! Returns the Bottom planar Face. It is Oriented
+ //! Returns the Bottom planar Face. It is Oriented
//! toward the -Z axis (outside).
Standard_EXPORT const TopoDS_Face& BottomFace();
- //! Returns the Face starting the slice, it is
+ //! Returns the Face starting the slice, it is
//! oriented toward the exterior of the primitive.
Standard_EXPORT const TopoDS_Face& StartFace();
- //! Returns the Face ending the slice, it is oriented
+ //! Returns the Face ending the slice, it is oriented
//! toward the exterior of the primitive.
Standard_EXPORT const TopoDS_Face& EndFace();
- //! Returns the wire in the lateral face.
+ //! Returns the wire in the lateral face.
Standard_EXPORT const TopoDS_Wire& LateralWire();
- //! Returns the wire in the lateral face with the
+ //! Returns the wire in the lateral face with the
//! start edge.
Standard_EXPORT const TopoDS_Wire& LateralStartWire();
@@ -189,17 +187,17 @@ public:
//! Returns the wire in the bottom face.
Standard_EXPORT const TopoDS_Wire& BottomWire();
- //! Returns the wire in the start face.
+ //! Returns the wire in the start face.
Standard_EXPORT const TopoDS_Wire& StartWire();
- //! Returns the wire in the start face with the
+ //! Returns the wire in the start face with the
//! AxisEdge.
Standard_EXPORT const TopoDS_Wire& AxisStartWire();
- //! Returns the Wire in the end face.
+ //! Returns the Wire in the end face.
Standard_EXPORT const TopoDS_Wire& EndWire();
- //! Returns the Wire in the end face with the
+ //! Returns the Wire in the end face with the
//! AxisEdge.
Standard_EXPORT const TopoDS_Wire& AxisEndWire();
@@ -207,10 +205,10 @@ public:
//! on +Z of the Axis.
Standard_EXPORT const TopoDS_Edge& AxisEdge();
- //! Returns the Edge at angle 0.
+ //! Returns the Edge at angle 0.
Standard_EXPORT const TopoDS_Edge& StartEdge();
- //! Returns the Edge at angle Angle. If !HasSides()
+ //! Returns the Edge at angle Angle. If !HasSides()
//! the StartEdge and the EndEdge are the same edge.
Standard_EXPORT const TopoDS_Edge& EndEdge();
@@ -218,30 +216,30 @@ public:
//! Face.
Standard_EXPORT const TopoDS_Edge& StartTopEdge();
- //! Returns the linear Edge between start Face and
+ //! Returns the linear Edge between start Face and
//! bottom Face.
Standard_EXPORT const TopoDS_Edge& StartBottomEdge();
- //! Returns the linear Edge between end Face and top
+ //! Returns the linear Edge between end Face and top
//! Face.
Standard_EXPORT const TopoDS_Edge& EndTopEdge();
- //! Returns the linear Edge between end Face and
+ //! Returns the linear Edge between end Face and
//! bottom Face.
Standard_EXPORT const TopoDS_Edge& EndBottomEdge();
- //! Returns the edge at VMax. If MeridianClosed() the
+ //! Returns the edge at VMax. If MeridianClosed() the
//! TopEdge and the BottomEdge are the same edge.
Standard_EXPORT const TopoDS_Edge& TopEdge();
- //! Returns the edge at VMin. If MeridianClosed() the
+ //! Returns the edge at VMin. If MeridianClosed() the
//! TopEdge and the BottomEdge are the same edge.
Standard_EXPORT const TopoDS_Edge& BottomEdge();
//! Returns the Vertex at the Top altitude on the axis.
Standard_EXPORT const TopoDS_Vertex& AxisTopVertex();
- //! Returns the Vertex at the Bottom altitude on the
+ //! Returns the Vertex at the Bottom altitude on the
//! axis.
Standard_EXPORT const TopoDS_Vertex& AxisBottomVertex();
@@ -259,7 +257,7 @@ public:
Standard_EXPORT virtual ~BRepPrim_OneAxis();
protected:
- //! Creates a OneAxis algorithm. is used to build
+ //! Creates a OneAxis algorithm. is used to build
//! the Topology. The angle defaults to 2*PI.
Standard_EXPORT BRepPrim_OneAxis(const BRepPrim_Builder& B,
const gp_Ax2& A,
diff --git a/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Translation.hxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Translation.hxx
index 4997f66f01..6b566691eb 100644
--- a/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Translation.hxx
+++ b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Translation.hxx
@@ -29,16 +29,16 @@ class TopoDS_Shape;
class Sweep_NumShape;
class TopLoc_Location;
-//! Provides an algorithm to build object by
+//! Provides an algorithm to build object by
//! translation sweep.
class BRepSweep_Translation : public BRepSweep_Trsf
{
public:
DEFINE_STANDARD_ALLOC
- //! Creates a topology by translating with the
- //! vector . If C is true S Sucomponents are
- //! copied. If Canonize is true then generated surfaces
+ //! Creates a topology by translating with the
+ //! vector . If C is true S Sucomponents are copied
+ //! If Canonize is true then generated surfaces
//! are attempted to be canonized in simple types
Standard_EXPORT BRepSweep_Translation(const TopoDS_Shape& S,
const Sweep_NumShape& N,
@@ -62,8 +62,8 @@ public:
Standard_EXPORT TopoDS_Shape MakeEmptyGeneratingEdge(const TopoDS_Shape& aGenE,
const Sweep_NumShape& aDirV);
- //! Sets the parameters of the new vertex on the new
- //! face. The new face and new vertex where generated
+ //! Sets the parameters of the new vertex on the new
+ //! face. The new face and new vertex where generated
//! from aGenF, aGenV and aDirV .
Standard_EXPORT void SetParameters(const TopoDS_Shape& aNewFace,
TopoDS_Shape& aNewVertex,
@@ -71,8 +71,8 @@ public:
const TopoDS_Shape& aGenV,
const Sweep_NumShape& aDirV);
- //! Sets the parameter of the new vertex on the new
- //! edge. The new edge and new vertex where generated
+ //! Sets the parameter of the new vertex on the new
+ //! edge. The new edge and new vertex where generated
//! from aGenV aDirE, and aDirV.
Standard_EXPORT void SetDirectingParameter(const TopoDS_Shape& aNewEdge,
TopoDS_Shape& aNewVertex,
@@ -80,8 +80,8 @@ public:
const Sweep_NumShape& aDirE,
const Sweep_NumShape& aDirV);
- //! Sets the parameter of the new vertex on the new
- //! edge. The new edge and new vertex where generated
+ //! Sets the parameter of the new vertex on the new
+ //! edge. The new edge and new vertex where generated
//! from aGenE, aGenV and aDirV .
Standard_EXPORT void SetGeneratingParameter(const TopoDS_Shape& aNewEdge,
TopoDS_Shape& aNewVertex,
@@ -89,16 +89,16 @@ public:
const TopoDS_Shape& aGenV,
const Sweep_NumShape& aDirV);
- //! Builds the face addressed by [aGenS,aDirS], with
+ //! Builds the face addressed by [aGenS,aDirS], with
//! its geometric part, but without subcomponents. The
- //! couple aGenS, aDirS can be a "generating face and
- //! a directing vertex" or "a generating edge and a
- //! directing edge".
+ //! couple aGenS, aDirS can be a "generating face and
+ //! a directing vertex" or "a generating edge and a
+ //! directing edge".
Standard_EXPORT TopoDS_Shape MakeEmptyFace(const TopoDS_Shape& aGenS,
const Sweep_NumShape& aDirS);
//! Sets the PCurve for a new edge on a new face. The
- //! new edge and the new face were generated using
+ //! new edge and the new face were generated using
//! aGenF, aGenE and aDirV.
Standard_EXPORT void SetPCurve(const TopoDS_Shape& aNewFace,
TopoDS_Shape& aNewEdge,
@@ -108,7 +108,7 @@ public:
const TopAbs_Orientation orien);
//! Sets the PCurve for a new edge on a new face. The
- //! new edge and the new face were generated using
+ //! new edge and the new face were generated using
//! aGenE, aDirE and aDirV.
Standard_EXPORT void SetGeneratingPCurve(const TopoDS_Shape& aNewFace,
TopoDS_Shape& aNewEdge,
@@ -118,7 +118,7 @@ public:
const TopAbs_Orientation orien);
//! Sets the PCurve for a new edge on a new face. The
- //! new edge and the new face were generated using
+ //! new edge and the new face were generated using
//! aGenE, aDirE and aGenV.
Standard_EXPORT void SetDirectingPCurve(const TopoDS_Shape& aNewFace,
TopoDS_Shape& aNewEdge,
@@ -127,15 +127,15 @@ public:
const Sweep_NumShape& aDirE,
const TopAbs_Orientation orien);
- //! Returns the Orientation of the shell in the solid
- //! generated by the face aGenS with the edge aDirS.
- //! It is REVERSED if the surface is swept in the
+ //! Returns the Orientation of the shell in the solid
+ //! generated by the face aGenS with the edge aDirS.
+ //! It is REVERSED if the surface is swept in the
//! direction of the normal.
Standard_EXPORT TopAbs_Orientation DirectSolid(const TopoDS_Shape& aGenS,
const Sweep_NumShape& aDirS);
- //! Returns true if aNewSubShape (addressed by
- //! aSubGenS and aDirS) must be added in aNewShape
+ //! Returns true if aNewSubShape (addressed by
+ //! aSubGenS and aDirS) must be added in aNewShape
//! (addressed by aGenS and aDirS).
Standard_EXPORT Standard_Boolean GGDShapeIsToAdd(const TopoDS_Shape& aNewShape,
const TopoDS_Shape& aNewSubShape,
@@ -143,8 +143,8 @@ public:
const TopoDS_Shape& aSubGenS,
const Sweep_NumShape& aDirS) const;
- //! Returns true if aNewSubShape (addressed by
- //! aGenS and aSubDirS) must be added in aNewShape
+ //! Returns true if aNewSubShape (addressed by
+ //! aGenS and aSubDirS) must be added in aNewShape
//! (addressed by aGenS and aDirS).
Standard_EXPORT Standard_Boolean GDDShapeIsToAdd(const TopoDS_Shape& aNewShape,
const TopoDS_Shape& aNewSubShape,
@@ -152,9 +152,9 @@ public:
const Sweep_NumShape& aDirS,
const Sweep_NumShape& aSubDirS) const;
- //! In some particular cases the topology of a
- //! generated face must be composed of independent
- //! closed wires, in this case this function returns
+ //! In some particular cases the topology of a
+ //! generated face must be composed of independent
+ //! closed wires, in this case this function returns
//! true.
//! Here it always returns false.
Standard_EXPORT Standard_Boolean SeparatedWires(const TopoDS_Shape& aNewShape,
@@ -163,18 +163,18 @@ public:
const TopoDS_Shape& aSubGenS,
const Sweep_NumShape& aDirS) const;
- //! Returns true if aDirS and aGenS addresses a
- //! resulting Shape. In some specific cases the shape
- //! can be geometrically inexsistant, then this
+ //! Returns true if aDirS and aGenS addresses a
+ //! resulting Shape. In some specific cases the shape
+ //! can be geometrically inexsistant, then this
//! function returns false.
Standard_EXPORT Standard_Boolean HasShape(const TopoDS_Shape& aGenS,
const Sweep_NumShape& aDirS) const;
- //! Returns always false because here the
+ //! Returns always false because here the
//! transformation is a translation.
Standard_EXPORT Standard_Boolean IsInvariant(const TopoDS_Shape& aGenS) const;
- //! Returns the Vector of the Prism, if it is an infinite
+ //! Returns the Vector of the Prism, if it is an infinite
//! prism the Vec is unitar.
Standard_EXPORT gp_Vec Vec() const;
diff --git a/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Trsf.hxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Trsf.hxx
index e232371063..51a9d659fc 100644
--- a/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Trsf.hxx
+++ b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Trsf.hxx
@@ -28,15 +28,15 @@ class TopoDS_Shape;
class Sweep_NumShape;
//! This class is inherited from NumLinearRegularSweep
-//! to implement the simple swept primitives built
-//! moving a Shape with a Trsf. It often is possible
-//! to build the constructed subshapes by a simple
-//! move of the generating subshapes (shared topology
-//! and geometry). So two ways of construction are
-//! proposed :
+//! to implement the simple swept primitives built
+//! moving a Shape with a Trsf. It often is possible
+//! to build the constructed subshapes by a simple
+//! move of the generating subshapes (shared topology
+//! and geometry). So two ways of construction are
+//! proposed:
//!
-//! - sharing basis elements (the generatrice can be
-//! modified , for example PCurves can be added on
+//! - sharing basis elements (the generatrice can be
+//! modified, for example PCurves can be added on
//! faces);
//!
//! - copying everything.
@@ -45,7 +45,7 @@ class BRepSweep_Trsf : public BRepSweep_NumLinearRegularSweep
public:
DEFINE_STANDARD_ALLOC
- //! ends the construction of the swept primitive
+ //! ends the construction of the swept primitive
//! calling the virtual geometric functions that can't
//! be called in the initialize.
Standard_EXPORT void Init();
@@ -69,17 +69,17 @@ public:
Standard_EXPORT virtual TopoDS_Shape MakeEmptyGeneratingEdge(const TopoDS_Shape& aGenE,
const Sweep_NumShape& aDirV) = 0;
- //! Sets the parameters of the new vertex on the new
- //! face. The new face and new vertex where generated
- //! from aGenF, aGenV and aDirV .
+ //! Sets the parameters of the new vertex on the new
+ //! face. The new face and new vertex where generated
+ //! from aGenF, aGenV and aDirV.
Standard_EXPORT virtual void SetParameters(const TopoDS_Shape& aNewFace,
TopoDS_Shape& aNewVertex,
const TopoDS_Shape& aGenF,
const TopoDS_Shape& aGenV,
const Sweep_NumShape& aDirV) = 0;
- //! Sets the parameter of the new vertex on the new
- //! edge. The new edge and new vertex where generated
+ //! Sets the parameter of the new vertex on the new
+ //! edge. The new edge and new vertex where generated
//! from aGenV aDirE, and aDirV.
Standard_EXPORT virtual void SetDirectingParameter(const TopoDS_Shape& aNewEdge,
TopoDS_Shape& aNewVertex,
@@ -87,25 +87,25 @@ public:
const Sweep_NumShape& aDirE,
const Sweep_NumShape& aDirV) = 0;
- //! Sets the parameter of the new vertex on the new
- //! edge. The new edge and new vertex where generated
- //! from aGenE, aGenV and aDirV .
+ //! Sets the parameter of the new vertex on the new
+ //! edge. The new edge and new vertex where generated
+ //! from aGenE, aGenV and aDirV.
Standard_EXPORT virtual void SetGeneratingParameter(const TopoDS_Shape& aNewEdge,
TopoDS_Shape& aNewVertex,
const TopoDS_Shape& aGenE,
const TopoDS_Shape& aGenV,
const Sweep_NumShape& aDirV) = 0;
- //! Builds the face addressed by [aGenS,aDirS], with
+ //! Builds the face addressed by [aGenS,aDirS], with
//! its geometric part, but without subcomponents. The
- //! couple aGenS, aDirS can be a "generating face and
- //! a directing vertex" or "a generating edge and a
- //! directing edge".
+ //! couple aGenS, aDirS can be a "generating face and
+ //! a directing vertex" or "a generating edge and a
+ //! directing edge".
Standard_EXPORT virtual TopoDS_Shape MakeEmptyFace(const TopoDS_Shape& aGenS,
const Sweep_NumShape& aDirS) = 0;
//! Sets the PCurve for a new edge on a new face. The
- //! new edge and the new face were generated using
+ //! new edge and the new face were generated using
//! aGenF, aGenE and aDirV.
Standard_EXPORT virtual void SetPCurve(const TopoDS_Shape& aNewFace,
TopoDS_Shape& aNewEdge,
@@ -115,7 +115,7 @@ public:
const TopAbs_Orientation orien) = 0;
//! Sets the PCurve for a new edge on a new face. The
- //! new edge and the new face were generated using
+ //! new edge and the new face were generated using
//! aGenE, aDirE and aDirV.
Standard_EXPORT virtual void SetGeneratingPCurve(const TopoDS_Shape& aNewFace,
TopoDS_Shape& aNewEdge,
@@ -125,7 +125,7 @@ public:
const TopAbs_Orientation orien) = 0;
//! Sets the PCurve for a new edge on a new face. The
- //! new edge and the new face were generated using
+ //! new edge and the new face were generated using
//! aGenE, aDirE and aGenV.
Standard_EXPORT virtual void SetDirectingPCurve(const TopoDS_Shape& aNewFace,
TopoDS_Shape& aNewEdge,
@@ -134,8 +134,8 @@ public:
const Sweep_NumShape& aDirE,
const TopAbs_Orientation orien) = 0;
- //! Returns true if aNewSubShape (addressed by
- //! aSubGenS and aDirS) must be added in aNewShape
+ //! Returns true if aNewSubShape (addressed by
+ //! aSubGenS and aDirS) must be added in aNewShape
//! (addressed by aGenS and aDirS).
Standard_EXPORT virtual Standard_Boolean GGDShapeIsToAdd(const TopoDS_Shape& aNewShape,
const TopoDS_Shape& aNewSubShape,
@@ -143,8 +143,8 @@ public:
const TopoDS_Shape& aSubGenS,
const Sweep_NumShape& aDirS) const = 0;
- //! Returns true if aNewSubShape (addressed by
- //! aGenS and aSubDirS) must be added in aNewShape
+ //! Returns true if aNewSubShape (addressed by
+ //! aGenS and aSubDirS) must be added in aNewShape
//! (addressed by aGenS and aDirS).
Standard_EXPORT virtual Standard_Boolean GDDShapeIsToAdd(
const TopoDS_Shape& aNewShape,
@@ -153,9 +153,9 @@ public:
const Sweep_NumShape& aDirS,
const Sweep_NumShape& aSubDirS) const = 0;
- //! In some particular cases the topology of a
- //! generated face must be composed of independent
- //! closed wires, in this case this function returns
+ //! In some particular cases the topology of a
+ //! generated face must be composed of independent
+ //! closed wires, in this case this function returns
//! true.
Standard_EXPORT virtual Standard_Boolean SeparatedWires(const TopoDS_Shape& aNewShape,
const TopoDS_Shape& aNewSubShape,
@@ -163,25 +163,25 @@ public:
const TopoDS_Shape& aSubGenS,
const Sweep_NumShape& aDirS) const = 0;
- //! Returns true if aDirS and aGenS addresses a
- //! resulting Shape. In some specific cases the shape
- //! can be geometrically inexsistant, then this
+ //! Returns true if aDirS and aGenS addresses a
+ //! resulting Shape. In some specific cases the shape
+ //! can be geometrically inexsistant, then this
//! function returns false.
Standard_EXPORT virtual Standard_Boolean HasShape(const TopoDS_Shape& aGenS,
const Sweep_NumShape& aDirS) const = 0;
- //! Returns true if the geometry of aGenS is not
+ //! Returns true if the geometry of aGenS is not
//! modified by the trsf of the BRepSweep Trsf.
Standard_EXPORT virtual Standard_Boolean IsInvariant(const TopoDS_Shape& aGenS) const = 0;
- //! Called to propagate the continuity of every vertex
- //! between two edges of the generating wire aGenS on
+ //! Called to propagate the continuity of every vertex
+ //! between two edges of the generating wire aGenS on
//! the generated edge and faces.
Standard_EXPORT void SetContinuity(const TopoDS_Shape& aGenS, const Sweep_NumShape& aDirS);
protected:
- //! Initialize the Trsf BrepSweep, if aCopy is true
- //! the basis elements are shared as often as
+ //! Initialize the Trsf BrepSweep, if aCopy is true
+ //! the basis elements are shared as often as
//! possible, else everything is copied.
Standard_EXPORT BRepSweep_Trsf(const BRep_Builder& aBuilder,
const TopoDS_Shape& aGenShape,
diff --git a/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShape.hxx b/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShape.hxx
index 1a6233f8e2..ed7a52aa02 100644
--- a/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShape.hxx
+++ b/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShape.hxx
@@ -25,7 +25,7 @@
#include
#include
-//! Gives a simple indexed representation of a
+//! Gives a simple indexed representation of a
//! Directing Edge topology.
class Sweep_NumShape
{
@@ -37,14 +37,14 @@ public:
//! Creates a new simple indexed edge.
//!
- //! For an Edge : Index is the number of vertices (0,
- //! 1 or 2),Type is TopAbs_EDGE, Closed is true if it
- //! is a closed edge, BegInf is true if the Edge is
- //! infinite at the begenning, EndInf is true if the
+ //! For an Edge : Index is the number of vertices (0,
+ //! 1 or 2),Type is TopAbs_EDGE, Closed is true if it
+ //! is a closed edge, BegInf is true if the Edge is
+ //! infinite at the beginning, EndInf is true if the
//! edge is infinite at the end.
//!
//! For a Vertex : Index is the index of the vertex in
- //! the edge (1 or 2), Type is TopAbsVERTEX, all the
+ //! the edge (1 or 2), Type is TopAbsVERTEX, all the
//! other fields have no meanning.
Standard_EXPORT Sweep_NumShape(const Standard_Integer Index,
const TopAbs_ShapeEnum Type,
@@ -54,10 +54,10 @@ public:
//! Reinitialize a simple indexed edge.
//!
- //! For an Edge : Index is the number of vertices (0,
- //! 1 or 2),Type is TopAbs_EDGE, Closed is true if it
- //! is a closed edge, BegInf is true if the Edge is
- //! infinite at the begenning, EndInf is true if the
+ //! For an Edge : Index is the number of vertices (0,
+ //! 1 or 2),Type is TopAbs_EDGE, Closed is true if it
+ //! is a closed edge, BegInf is true if the Edge is
+ //! infinite at the beginning, EndInf is true if the
//! edge is infinite at the end.
//!
//! For a Vertex : Index is the index of the vertex in
diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_BSplineRestriction.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_BSplineRestriction.hxx
index a04ebb1b51..da632d3c7d 100644
--- a/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_BSplineRestriction.hxx
+++ b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_BSplineRestriction.hxx
@@ -74,18 +74,18 @@ public:
const Standard_Boolean Rational,
const Handle(ShapeCustom_RestrictionParameters)& aModes);
- //! Returns Standard_True if the face has been
- //! modified. In this case, is the new geometric
- //! support of the face, the new location,
- //! the new tolerance. has to be set to
- //! Standard_True when the modification reverses the
- //! normal of the surface.(the wires have to be
- //! reversed). has to be set to
- //! Standard_True if the orientation of the modified
+ //! Returns Standard_True if the face has been
+ //! modified. In this case, is the new geometric
+ //! support of the face, the new location,
+ //! the new tolerance. has to be set to
+ //! Standard_True when the modification reverses the
+ //! normal of the surface. (the wires have to be
+ //! reversed). has to be set to
+ //! Standard_True if the orientation of the modified
//! face changes in the shells which contain it.
//!
- //! Otherwise, returns Standard_False, and , ,
- //! , , are not significant.
+ //! Otherwise, returns Standard_False, and , ,
+ //! , , are not significant.
Standard_EXPORT Standard_Boolean NewSurface(const TopoDS_Face& F,
Handle(Geom_Surface)& S,
TopLoc_Location& L,
@@ -93,30 +93,30 @@ public:
Standard_Boolean& RevWires,
Standard_Boolean& RevFace) Standard_OVERRIDE;
- //! Returns Standard_True if curve from the edge has been
- //! modified. In this case, is the new geometric
- //! support of the edge, the new location,
- //! the new tolerance.
+ //! Returns Standard_True if curve from the edge has been
+ //! modified. In this case, is the new geometric
+ //! support of the edge, the new location,
+ //! the new tolerance.
//! Otherwise, returns Standard_True if Surface is modified or
//! one of pcurves of edge is modified. In this case C is copy of
//! geometric support of the edge.
- //! In other cases returns Standard_False, and , , are not
+ //! In other cases returns Standard_False, and , , are not
//! significant.
Standard_EXPORT Standard_Boolean NewCurve(const TopoDS_Edge& E,
Handle(Geom_Curve)& C,
TopLoc_Location& L,
Standard_Real& Tol) Standard_OVERRIDE;
- //! Returns Standard_True if the edge has been modified.
+ //! Returns Standard_True if the edge has been modified.
//! In this case,if curve on the surface is modified,
- //! is the new geometric support of the edge, the
+ //! is the new geometric support of the edge, the
//! new location, the new tolerance. If curve on the surface
//! is not modified C is copy curve on surface from the edge .
//!
- //! Otherwise, returns Standard_False, and , ,
+ //! Otherwise, returns Standard_False, and , ,
//! are not significant.
//!
- //! is the new edge created from .
+ //! is the new edge created from .
//! is the new face created from . They may be useful.
Standard_EXPORT Standard_Boolean NewCurve2d(const TopoDS_Edge& E,
const TopoDS_Face& F,
@@ -125,7 +125,7 @@ public:
Handle(Geom2d_Curve)& C,
Standard_Real& Tol) Standard_OVERRIDE;
- //! Returns Standard_True if the surface has been modified.
+ //! Returns Standard_True if the surface has been modified.
//! if flag IsOf equals Standard_True Offset surfaces are approximated to Offset
//! if Standard_False to BSpline
Standard_EXPORT Standard_Boolean ConvertSurface(const Handle(Geom_Surface)& aSurface,
@@ -136,7 +136,7 @@ public:
const Standard_Real VL,
const Standard_Boolean IsOf = Standard_True);
- //! Returns Standard_True if the curve has been modified.
+ //! Returns Standard_True if the curve has been modified.
//! if flag IsOf equals Standard_True Offset curves are approximated to Offset
//! if Standard_False to BSpline
Standard_EXPORT Standard_Boolean ConvertCurve(const Handle(Geom_Curve)& aCurve,
@@ -187,7 +187,7 @@ public:
//! Sets max number of segments for approximation.
void SetMaxNbSegments(const Standard_Integer MaxNbSegments);
- //! Sets priority for approximation curves and surface.
+ //! Sets priority for approximation curves and surface.
//! If Degree is True approximation is made with degree less
//! then specified MaxDegree at the expense of number of spanes.
//! If Degree is False approximation is made with number of
diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToBSpline.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToBSpline.hxx
index a0c576ee13..2eec6910ba 100644
--- a/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToBSpline.hxx
+++ b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToBSpline.hxx
@@ -58,11 +58,11 @@ public:
//! Sets mode for conversion of Plane surfaces.
Standard_EXPORT void SetPlaneMode(const Standard_Boolean planeMode);
- //! Returns Standard_True if the face has been
+ //! Returns Standard_True if the face has been
//! modified. In this case, is the new geometric
- //! support of the face, the new location,
- //! the new tolerance. Otherwise, returns
- //! Standard_False, and , , are not
+ //! support of the face, the new location,
+ //! the new tolerance. Otherwise, returns
+ //! Standard_False, and , ,