diff --git a/src/AIS/AIS_InteractiveContext.hxx b/src/AIS/AIS_InteractiveContext.hxx index c418d178b1..bae22b7123 100644 --- a/src/AIS/AIS_InteractiveContext.hxx +++ b/src/AIS/AIS_InteractiveContext.hxx @@ -1128,7 +1128,7 @@ public: //! Allows to add or remove the object given to the list of current and highlight/unhighlight it correspondingly. //! Is valid for global context only; for local context use method AddOrRemoveSelected. - //! Since this method makes sence only for neutral point selection of a whole object, + //! Since this method makes sense only for neutral point selection of a whole object, //! if 0 selection of the object is empty this method simply does nothing. Standard_DEPRECATED ("Local Context is deprecated - local selection should be used without Local Context") void AddOrRemoveCurrentObject (const Handle(AIS_InteractiveObject)& theObj, diff --git a/src/AIS/AIS_InteractiveContext_1.cxx b/src/AIS/AIS_InteractiveContext_1.cxx index ea6ca0bf84..efb53f9914 100644 --- a/src/AIS/AIS_InteractiveContext_1.cxx +++ b/src/AIS/AIS_InteractiveContext_1.cxx @@ -1010,9 +1010,7 @@ void AIS_InteractiveContext::SetSelected (const Handle(SelectMgr_EntityOwner)& t //======================================================================= //function : AddOrRemoveSelected -//purpose : Adds or removes current object from AIS selection and highlights/unhighlights it. -// Since this method makes sence only for neutral point selection of a whole object, -// if 0 selection of the object is empty this method simply does nothing. +//purpose : //======================================================================= void AIS_InteractiveContext::AddOrRemoveSelected (const Handle(AIS_InteractiveObject)& theObject, const Standard_Boolean theToUpdateViewer) diff --git a/src/AIS/AIS_Manipulator.hxx b/src/AIS/AIS_Manipulator.hxx index c950e7c9aa..73ea0527db 100644 --- a/src/AIS/AIS_Manipulator.hxx +++ b/src/AIS/AIS_Manipulator.hxx @@ -203,7 +203,7 @@ public: //! Computes transformation of parent object according to the active mode and input motion vector. //! You can use this method to get object transformation according to current mode or use own algorithm - //! to implement any other tranformation for modes. + //! to implement any other transformation for modes. //! @return transformation of parent object. Standard_EXPORT Standard_Boolean ObjectTransformation (const Standard_Integer theX, const Standard_Integer theY, const Handle(V3d_View)& theView, gp_Trsf& theTrsf); diff --git a/src/Adaptor3d/Adaptor3d_Surface.hxx b/src/Adaptor3d/Adaptor3d_Surface.hxx index 00add4069e..a3163f92da 100644 --- a/src/Adaptor3d/Adaptor3d_Surface.hxx +++ b/src/Adaptor3d/Adaptor3d_Surface.hxx @@ -46,16 +46,14 @@ DEFINE_STANDARD_HANDLE(Adaptor3d_Surface, Standard_Transient) //! of a surface for generic algorithms. //! //! The Surface can be decomposed in intervals of any -//! continuity in U and V using the method -//! NbIntervals. A current interval can be set. Most -//! of the methods apply to the current interval. +//! continuity in U and V using the method NbIntervals. +//! A current interval can be set. +//! Most of the methods apply to the current interval. //! Warning: All the methods are virtual and implemented with a -//! raise to allow to redefined only the methods realy -//! used. +//! raise to allow to redefined only the methods really used. //! -//! Polynomial coefficients of BSpline surfaces used for their evaluation are -//! cached for better performance. Therefore these evaluations are not -//! thread-safe and parallel evaluations need to be prevented. +//! Polynomial coefficients of BSpline surfaces used for their evaluation are cached for better performance. +//! Therefore these evaluations are not thread-safe and parallel evaluations need to be prevented. class Adaptor3d_Surface : public Standard_Transient { DEFINE_STANDARD_RTTIEXT(Adaptor3d_Surface, Standard_Transient) diff --git a/src/Adaptor3d/Adaptor3d_TopolTool.hxx b/src/Adaptor3d/Adaptor3d_TopolTool.hxx index 2c742aef26..8426e761dd 100644 --- a/src/Adaptor3d/Adaptor3d_TopolTool.hxx +++ b/src/Adaptor3d/Adaptor3d_TopolTool.hxx @@ -30,18 +30,14 @@ class Adaptor3d_HVertex; DEFINE_STANDARD_HANDLE(Adaptor3d_TopolTool, Standard_Transient) //! This class provides a default topological tool, -//! based on the Umin,Vmin,Umax,Vmax of an HSurface -//! from Adaptor3d. -//! All methods and fields may be redefined when -//! inheriting from this class. -//! This class is used to instantiate algorithmes -//! as Intersection, outlines,... +//! based on the Umin,Vmin,Umax,Vmax of an HSurface from Adaptor3d. +//! All methods and fields may be redefined when inheriting from this class. +//! This class is used to instantiate algorithms as Intersection, outlines,... class Adaptor3d_TopolTool : public Standard_Transient { public: - Standard_EXPORT Adaptor3d_TopolTool(); Standard_EXPORT Adaptor3d_TopolTool(const Handle(Adaptor3d_Surface)& Surface); @@ -127,42 +123,41 @@ public: Standard_EXPORT virtual Standard_Boolean DomainIsInfinite(); Standard_EXPORT virtual Standard_Address Edge() const; - - //! compute the sample-points for the intersections algorithms - //! by adaptive algorithm for BSpline surfaces. For other surfaces algorithm - //! is the same as in method ComputeSamplePoints(), but only fill arrays of U - //! and V sample parameters; - //! theDefl is a requred deflection - //! theNUmin, theNVmin are minimal nb points for U and V. - Standard_EXPORT virtual void SamplePnts (const Standard_Real theDefl, const Standard_Integer theNUmin, const Standard_Integer theNVmin); - - //! compute the sample-points for the intersections algorithms - //! by adaptive algorithm for BSpline surfaces - is used in SamplePnts - //! theDefl is a requred deflection - //! theNUmin, theNVmin are minimal nb points for U and V. - Standard_EXPORT virtual void BSplSamplePnts (const Standard_Real theDefl, const Standard_Integer theNUmin, const Standard_Integer theNVmin); - + + //! Compute the sample-points for the intersections algorithms by adaptive algorithm for BSpline surfaces. + //! For other surfaces algorithm is the same as in method ComputeSamplePoints(), + //! but only fill arrays of U and V sample parameters; + //! @param theDefl [in] a required deflection + //! @param theNUmin [in] minimal nb points for U + //! @param theNVmin [in] minimal nb points for V + Standard_EXPORT virtual void SamplePnts (const Standard_Real theDefl, + const Standard_Integer theNUmin, + const Standard_Integer theNVmin); + + //! Compute the sample-points for the intersections algorithms + //! by adaptive algorithm for BSpline surfaces - is used in SamplePnts + //! @param theDefl [in] required deflection + //! @param theNUmin [in] minimal nb points for U + //! @param theNVmin [in] minimal nb points for V + Standard_EXPORT virtual void BSplSamplePnts (const Standard_Real theDefl, + const Standard_Integer theNUmin, + const Standard_Integer theNVmin); + //! Returns true if provide uniform sampling of points. Standard_EXPORT virtual Standard_Boolean IsUniformSampling() const; - - - DEFINE_STANDARD_RTTIEXT(Adaptor3d_TopolTool,Standard_Transient) protected: - Handle(Adaptor3d_Surface) myS; Standard_Integer myNbSamplesU; Standard_Integer myNbSamplesV; Handle(TColStd_HArray1OfReal) myUPars; Handle(TColStd_HArray1OfReal) myVPars; - private: - Standard_Integer nbRestr; Standard_Integer idRestr; Standard_Real Uinf; @@ -174,13 +169,6 @@ private: Standard_Integer idVtx; Handle(Adaptor3d_HVertex) myVtx[2]; - }; - - - - - - #endif // _Adaptor3d_TopolTool_HeaderFile diff --git a/src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.cxx b/src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.cxx index bb2e29f6dc..ae47b436e5 100644 --- a/src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.cxx +++ b/src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.cxx @@ -416,7 +416,7 @@ void AdvApp2Var_ApproxAFunc2Var::ComputePatches(const AdvApprox_Cutting& UChoice myConstraints.UpdateInV(Vdec); break; case 3 : -// It is necesary to cut in U and V +// It is necessary to cut in U and V myResult.UpdateInU(Udec); myConstraints.UpdateInU(Udec); myResult.UpdateInV(Vdec); @@ -796,7 +796,7 @@ void AdvApp2Var_ApproxAFunc2Var::ComputeCritError() //======================================================================= //function : ConvertBS -//purpose : Convertion of the approximation in BSpline Surface +//purpose : Conversion of the approximation in BSpline Surface //======================================================================= void AdvApp2Var_ApproxAFunc2Var::ConvertBS() diff --git a/src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.hxx b/src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.hxx index 5b86d4e0fd..8a3dc0aa24 100644 --- a/src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.hxx +++ b/src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.hxx @@ -51,7 +51,7 @@ class Geom_BSplineSurface; //! [FirstInU, LastInU]: The Bounds in U of the Approximation //! [FirstInV, LastInV]: The Bounds in V of the Approximation //! FavorIso : Give preference to extract u-iso or v-iso on F(U,V) -//! This can be usefull to optimize the methode +//! This can be useful to optimize the method //! ContInU, ContInV : Continuity waiting in u and v //! PrecisCode : Precision on approximation's error mesurement //! 1 : Fast computation and average precision @@ -64,7 +64,7 @@ class Geom_BSplineSurface; //! where iu (resp. iv) = 0 if ContInU (resp. ContInV) = GeomAbs_C0, //! = 1 if = GeomAbs_C1, //! = 2 if = GeomAbs_C2. -//! MaxPatch : Maximun number of Patch waiting +//! MaxPatch : Maximum number of Patch waiting //! number of Patch is number of u span * number of v span //! Func : The external method to evaluate F(U,V) //! Crit : To (re)defined condition of convergence diff --git a/src/AdvApp2Var/AdvApp2Var_SysBase.cxx b/src/AdvApp2Var/AdvApp2Var_SysBase.cxx index f0d5d83ea0..b3c0964e32 100644 --- a/src/AdvApp2Var/AdvApp2Var_SysBase.cxx +++ b/src/AdvApp2Var/AdvApp2Var_SysBase.cxx @@ -1675,7 +1675,7 @@ int maoverf_(integer *nbentr, /* Other types of tables (INTEGER*2, INTEGER, REAL, ...) */ /* are not managed by the routine. */ -/* It is usable in phase of developpement to detect the */ +/* It is usable in phase of development to detect the */ /* errors of initialization. */ /* In official version, these calls will be inactive. */ @@ -1770,7 +1770,7 @@ int maoverf_(integer *nbentr, /* TABLES */ -/* DATAS */ +/* DATA */ /* Parameter adjustments */ --dtable; diff --git a/src/AdvApprox/AdvApprox_ApproxAFunction.hxx b/src/AdvApprox/AdvApprox_ApproxAFunction.hxx index 727076b52a..035fe46d2b 100644 --- a/src/AdvApprox/AdvApprox_ApproxAFunction.hxx +++ b/src/AdvApprox/AdvApprox_ApproxAFunction.hxx @@ -122,7 +122,7 @@ public: Standard_EXPORT Standard_Real AverageError (const Standard_Integer Dimension, const Standard_Integer Index) const; - //! diplay information on approximation. + //! display information on approximation. Standard_EXPORT void Dump (Standard_OStream& o) const; diff --git a/src/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx b/src/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx index b4789a6a15..53d81b0647 100644 --- a/src/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx +++ b/src/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx @@ -174,17 +174,17 @@ public: protected: - //! is used by the constuctors above. + //! is used by the constructors above. Standard_EXPORT void Init (const AppDef_MultiLine& SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint); //! returns the number of second member columns. //! Is used internally to initialize the fields. Standard_EXPORT Standard_Integer NbBColumns (const AppDef_MultiLine& SSP) const; - //! returns the first point beeing fitted. + //! returns the first point being fitted. Standard_EXPORT Standard_Integer TheFirstPoint (const AppParCurves_Constraint FirstCons, const Standard_Integer FirstPoint) const; - //! returns the last point beeing fitted. + //! returns the last point being fitted. Standard_EXPORT Standard_Integer TheLastPoint (const AppParCurves_Constraint LastCons, const Standard_Integer LastPoint) const; //! Affects the fields in the case of a constraint point. diff --git a/src/AppDef/AppDef_MyLineTool.hxx b/src/AppDef/AppDef_MyLineTool.hxx index b40b26de7a..c6e9ce4b20 100644 --- a/src/AppDef/AppDef_MyLineTool.hxx +++ b/src/AppDef/AppDef_MyLineTool.hxx @@ -31,9 +31,8 @@ class AppDef_MultiLine; -//! example of MultiLine tool corresponding to the tools of the packages -//! AppParCurves and Approx. For Approx, the tool will not addd points -//! if the algorithms want some. +//! Example of MultiLine tool corresponding to the tools of the packages AppParCurves and Approx. +//! For Approx, the tool will not add points if the algorithms want some. class AppDef_MyLineTool { public: diff --git a/src/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute.hxx b/src/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute.hxx index 2841640d69..cab5b55aa9 100644 --- a/src/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute.hxx +++ b/src/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute.hxx @@ -174,17 +174,17 @@ public: protected: - //! is used by the constuctors above. + //! is used by the constructors above. Standard_EXPORT void Init (const AppDef_MultiLine& SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint); //! returns the number of second member columns. //! Is used internally to initialize the fields. Standard_EXPORT Standard_Integer NbBColumns (const AppDef_MultiLine& SSP) const; - //! returns the first point beeing fitted. + //! returns the first point being fitted. Standard_EXPORT Standard_Integer TheFirstPoint (const AppParCurves_Constraint FirstCons, const Standard_Integer FirstPoint) const; - //! returns the last point beeing fitted. + //! returns the last point being fitted. Standard_EXPORT Standard_Integer TheLastPoint (const AppParCurves_Constraint LastCons, const Standard_Integer LastPoint) const; //! Affects the fields in the case of a constraint point. diff --git a/src/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute.hxx b/src/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute.hxx index 699914e2ef..4c6ec7636e 100644 --- a/src/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute.hxx +++ b/src/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute.hxx @@ -174,17 +174,17 @@ public: protected: - //! is used by the constuctors above. + //! is used by the constructors above. Standard_EXPORT void Init (const AppDef_MultiLine& SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint); //! returns the number of second member columns. //! Is used internally to initialize the fields. Standard_EXPORT Standard_Integer NbBColumns (const AppDef_MultiLine& SSP) const; - //! returns the first point beeing fitted. + //! returns the first point being fitted. Standard_EXPORT Standard_Integer TheFirstPoint (const AppParCurves_Constraint FirstCons, const Standard_Integer FirstPoint) const; - //! returns the last point beeing fitted. + //! returns the last point being fitted. Standard_EXPORT Standard_Integer TheLastPoint (const AppParCurves_Constraint LastCons, const Standard_Integer LastPoint) const; //! Affects the fields in the case of a constraint point. diff --git a/src/AppDef/AppDef_ParLeastSquareOfTheGradient.hxx b/src/AppDef/AppDef_ParLeastSquareOfTheGradient.hxx index fe92cd376f..37c1704473 100644 --- a/src/AppDef/AppDef_ParLeastSquareOfTheGradient.hxx +++ b/src/AppDef/AppDef_ParLeastSquareOfTheGradient.hxx @@ -174,17 +174,17 @@ public: protected: - //! is used by the constuctors above. + //! is used by the constructors above. Standard_EXPORT void Init (const AppDef_MultiLine& SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint); //! returns the number of second member columns. //! Is used internally to initialize the fields. Standard_EXPORT Standard_Integer NbBColumns (const AppDef_MultiLine& SSP) const; - //! returns the first point beeing fitted. + //! returns the first point being fitted. Standard_EXPORT Standard_Integer TheFirstPoint (const AppParCurves_Constraint FirstCons, const Standard_Integer FirstPoint) const; - //! returns the last point beeing fitted. + //! returns the last point being fitted. Standard_EXPORT Standard_Integer TheLastPoint (const AppParCurves_Constraint LastCons, const Standard_Integer LastPoint) const; //! Affects the fields in the case of a constraint point. diff --git a/src/AppDef/AppDef_TheLeastSquares.hxx b/src/AppDef/AppDef_TheLeastSquares.hxx index 6791003fdb..6570f299f8 100644 --- a/src/AppDef/AppDef_TheLeastSquares.hxx +++ b/src/AppDef/AppDef_TheLeastSquares.hxx @@ -174,17 +174,17 @@ public: protected: - //! is used by the constuctors above. + //! is used by the constructors above. Standard_EXPORT void Init (const AppDef_MultiLine& SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint); //! returns the number of second member columns. //! Is used internally to initialize the fields. Standard_EXPORT Standard_Integer NbBColumns (const AppDef_MultiLine& SSP) const; - //! returns the first point beeing fitted. + //! returns the first point being fitted. Standard_EXPORT Standard_Integer TheFirstPoint (const AppParCurves_Constraint FirstCons, const Standard_Integer FirstPoint) const; - //! returns the last point beeing fitted. + //! returns the last point being fitted. Standard_EXPORT Standard_Integer TheLastPoint (const AppParCurves_Constraint LastCons, const Standard_Integer LastPoint) const; //! Affects the fields in the case of a constraint point. diff --git a/src/AppDef/AppDef_Variational.cxx b/src/AppDef/AppDef_Variational.cxx index 2f2a607869..facdb75e9e 100644 --- a/src/AppDef/AppDef_Variational.cxx +++ b/src/AppDef/AppDef_Variational.cxx @@ -921,11 +921,13 @@ void AppDef_Variational::Dump(Standard_OStream& o) const o << " NbSegments " << myKnots->Length()-1 << std::endl; } else - { if (myIsOverConstr) o << "The probleme is overconstraint " << std::endl; - else o << " Erreur dans l''approximation" << std::endl; - } + { + o << (myIsOverConstr + ? " The problem is overconstraint" + : " Error in approximation") << std::endl; + } } -// + //======================================================================= //function : SetConstraints //purpose : Define the constraints to approximate diff --git a/src/Approx/Approx_SweepApproximation.cxx b/src/Approx/Approx_SweepApproximation.cxx index 27304cda84..a12fc94c69 100644 --- a/src/Approx/Approx_SweepApproximation.cxx +++ b/src/Approx/Approx_SweepApproximation.cxx @@ -406,7 +406,7 @@ Standard_Boolean Approx_SweepApproximation::D0(const Standard_Real Param, myPoles2d->ChangeArray1(), myWeigths->ChangeArray1()); - // poles3d are multiplied by weight after tranlation. + // poles3d are multiplied by weight after translation. for (ii=1; ii<=Num1DSS; ii++) { myPoles->ChangeValue(ii).ChangeCoord() -= Translation.XYZ(); @@ -553,7 +553,7 @@ Standard_Boolean Approx_SweepApproximation::D2(const Standard_Real Param, myDWeigths->ChangeArray1(), myD2Weigths->ChangeArray1()); - // Multiply poles3d by the weight after tranlations. + // Multiply poles3d by the weight after translations. for (ii=1; ii<=Num1DSS; ii++) { // First translate myPoles->ChangeValue(ii).ChangeCoord() diff --git a/src/Approx/Approx_SweepApproximation.hxx b/src/Approx/Approx_SweepApproximation.hxx index 232998816e..d350f9d4f8 100644 --- a/src/Approx/Approx_SweepApproximation.hxx +++ b/src/Approx/Approx_SweepApproximation.hxx @@ -72,7 +72,7 @@ public: //! [First, Last] : Approx_SweepApproximation.cdl //! Tol3d : Tolerance to surface approximation //! Tol2d : Tolerance used to perform curve approximation - //! Normaly the 2d curve are approximated with a + //! Normally the 2d curve are approximated with a //! tolerance given by the resolution on support surfaces, //! but if this tolerance is too large Tol2d is used. //! TolAngular : Tolerance (in radian) to control the angle @@ -111,10 +111,10 @@ public: const TColStd_Array1OfInteger& SurfVMults() const; - //! returns the maximum error in the suface approximation. + //! returns the maximum error in the surface approximation. Standard_EXPORT Standard_Real MaxErrorOnSurf() const; - //! returns the average error in the suface approximation. + //! returns the average error in the surface approximation. Standard_EXPORT Standard_Real AverageErrorOnSurf() const; Standard_Integer NbCurves2d() const; diff --git a/src/Approx/Approx_SweepFunction.hxx b/src/Approx/Approx_SweepFunction.hxx index bda5fbd60e..206e158e4d 100644 --- a/src/Approx/Approx_SweepFunction.hxx +++ b/src/Approx/Approx_SweepFunction.hxx @@ -52,12 +52,12 @@ public: //! compute the first derivative in v direction of the //! section for v = param - //! Warning : It used only for C1 or C2 aproximation + //! Warning : It used only for C1 or C2 approximation Standard_EXPORT virtual Standard_Boolean D1 (const Standard_Real Param, const Standard_Real First, const Standard_Real Last, TColgp_Array1OfPnt& Poles, TColgp_Array1OfVec& DPoles, TColgp_Array1OfPnt2d& Poles2d, TColgp_Array1OfVec2d& DPoles2d, TColStd_Array1OfReal& Weigths, TColStd_Array1OfReal& DWeigths); //! compute the second derivative in v direction of the //! section for v = param - //! Warning : It used only for C2 aproximation + //! Warning : It used only for C2 approximation Standard_EXPORT virtual Standard_Boolean D2 (const Standard_Real Param, const Standard_Real First, const Standard_Real Last, TColgp_Array1OfPnt& Poles, TColgp_Array1OfVec& DPoles, TColgp_Array1OfVec& D2Poles, TColgp_Array1OfPnt2d& Poles2d, TColgp_Array1OfVec2d& DPoles2d, TColgp_Array1OfVec2d& D2Poles2d, TColStd_Array1OfReal& Weigths, TColStd_Array1OfReal& DWeigths, TColStd_Array1OfReal& D2Weigths); //! get the number of 2d curves to approximate. @@ -105,26 +105,22 @@ public: //! SurfTol error inside the surface. Standard_EXPORT virtual void GetTolerance (const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, TColStd_Array1OfReal& Tol3d) const = 0; - //! Is usefull, if (me) have to run numerical - //! algorithm to perform D0, D1 or D2 + //! Is useful, if (me) have to run numerical algorithm to perform D0, D1 or D2 Standard_EXPORT virtual void SetTolerance (const Standard_Real Tol3d, const Standard_Real Tol2d) = 0; //! Get the barycentre of Surface. - //! An very poor estimation is sufficent. - //! This information is usefull to perform well - //! conditioned rational approximation. + //! An very poor estimation is sufficient. + //! This information is useful to perform well conditioned rational approximation. //! Warning: Used only if IsRational Standard_EXPORT virtual gp_Pnt BarycentreOfSurf() const; - //! Returns the length of the greater section. This - //! information is usefull to G1's control. + //! Returns the length of the greater section. + //! Thisinformation is useful to G1's control. //! Warning: With an little value, approximation can be slower. Standard_EXPORT virtual Standard_Real MaximalSection() const; - //! Compute the minimal value of weight for each poles - //! in all sections. - //! This information is usefull to control error - //! in rational approximation. + //! Compute the minimal value of weight for each poles in all sections. + //! This information is useful to control error in rational approximation. //! Warning: Used only if IsRational Standard_EXPORT virtual void GetMinimalWeight (TColStd_Array1OfReal& Weigths) const; diff --git a/src/ApproxInt/ApproxInt_ImpPrmSvSurfaces.gxx b/src/ApproxInt/ApproxInt_ImpPrmSvSurfaces.gxx index f2c7ea9798..2aa215b58c 100644 --- a/src/ApproxInt/ApproxInt_ImpPrmSvSurfaces.gxx +++ b/src/ApproxInt/ApproxInt_ImpPrmSvSurfaces.gxx @@ -72,7 +72,7 @@ static Standard_Boolean IsSingular( const gp_Vec& theDU, // Condition // Tg=theDU*theTg2D.X()+theDV*theTg2D.Y() // has to be satisfied strictly. -// More over, vector Tg has to be NORMALYZED +// More over, vector Tg has to be NORMALIZED // (if theIsTo3DTgCompute == TRUE then new computed vector will // always have magnitude 1.0). //======================================================================= @@ -86,7 +86,7 @@ static Standard_Boolean SingularProcessing( const gp_Vec& theDU, { //Attention: @ \sin theAngTol \approx theAngTol @ (for cross-product) - //Really, vector theTg3D has to be normalyzed (if theIsTo3DTgCompute == FALSE). + //Really, vector theTg3D has to be normalized (if theIsTo3DTgCompute == FALSE). const Standard_Real aSQTan = theTg3D.SquareMagnitude(); const Standard_Real aSqMagnDU = theDU.SquareMagnitude(), @@ -113,7 +113,7 @@ static Standard_Boolean SingularProcessing( const gp_Vec& theDU, if(theIsTo3DTgCompute) { - //theTg3D will be normalyzed. Its magnitude is + //theTg3D will be normalized. Its magnitude is const Standard_Real aTgMagn = 1.0; const Standard_Real aNorm = sqrt(aSqMagnDV); @@ -156,7 +156,7 @@ static Standard_Boolean SingularProcessing( const gp_Vec& theDU, if(theIsTo3DTgCompute) { - //theTg3D will be normalyzed. Its magnitude is + //theTg3D will be normalized. Its magnitude is const Standard_Real aTgMagn = 1.0; const Standard_Real aNorm = sqrt(aSqMagnDU); @@ -286,7 +286,7 @@ static Standard_Boolean SingularProcessing( const gp_Vec& theDU, // Condition // Tg=theDU*theTg2D.X()+theDV*theTg2D.Y() // has to be satisfied strictly. -// More over, vector Tg has always to be NORMALYZED. +// More over, vector Tg has always to be NORMALIZED. //======================================================================= static Standard_Boolean NonSingularProcessing(const gp_Vec& theDU, const gp_Vec& theDV, @@ -621,7 +621,7 @@ Standard_Boolean ApproxInt_ImpPrmSvSurfaces::Compute( Standard_Real& u1, aNormalPrm.Divide(sqrt(aSQMagnPrm)); } - //Analogicaly for implicit surface + //Analogically for implicit surface if(aSQMagnImp < aNullValue) { isImpSingular = Standard_True; @@ -657,7 +657,7 @@ Standard_Boolean ApproxInt_ImpPrmSvSurfaces::Compute( Standard_Real& u1, //(3D- and 2D-tangents are still not defined) //Ask to pay attention to the fact that here - //aNormalImp and aNormalPrm are normalyzed. + //aNormalImp and aNormalPrm are normalized. //Therefore, @ \left \| \vec{Tg} \right \| = 0.0 @ //if and only if (aNormalImp || aNormalPrm). Tg = aNormalImp.Crossed(aNormalPrm); @@ -672,7 +672,7 @@ Standard_Boolean ApproxInt_ImpPrmSvSurfaces::Compute( Standard_Real& u1, return Standard_False; } - //Normalyze Tg vector + //Normalize Tg vector Tg.Divide(sqrt(aSQMagnTg)); MyTg = Tg; diff --git a/src/ApproxInt/ApproxInt_KnotTools.cxx b/src/ApproxInt/ApproxInt_KnotTools.cxx index a8f892cc48..afc21266fa 100644 --- a/src/ApproxInt/ApproxInt_KnotTools.cxx +++ b/src/ApproxInt/ApproxInt_KnotTools.cxx @@ -243,7 +243,7 @@ void ApproxInt_KnotTools::ComputeKnotInds(const NCollection_LocalArray using BOPAlgo_BuilderSolid algorithm; //! -//! 4. Treat the result: Eliminate solid containig faces from ; +//! 4. Treat the result: Eliminate solid containing faces from ; //! //! 5. Fill internal shapes: add internal vertices and edges into //! created solids; @@ -115,11 +115,11 @@ public: - //! Empty contructor. + //! Empty constructor. BOPAlgo_MakerVolume(); virtual ~BOPAlgo_MakerVolume(); - //! Empty contructor. + //! Empty constructor. BOPAlgo_MakerVolume(const Handle(NCollection_BaseAllocator)& theAllocator); //! Clears the data. diff --git a/src/BOPAlgo/BOPAlgo_WireSplitter_1.cxx b/src/BOPAlgo/BOPAlgo_WireSplitter_1.cxx index 37ed067bce..2ebac40a3c 100644 --- a/src/BOPAlgo/BOPAlgo_WireSplitter_1.cxx +++ b/src/BOPAlgo/BOPAlgo_WireSplitter_1.cxx @@ -239,9 +239,10 @@ void BOPAlgo_WireSplitter::SplitBlock(const TopoDS_Face& myFace, } } // - // Each vertex has one edge In and one - Out. Good. But it is not enought - // to consider that nothing to do with this. We must check edges on TShape - // coinsidence. If there are such edges there is something to do with. + // Each vertex has one edge In and one - Out. Good. + // But it is not enough to consider that nothing to do with this. + // We must check edges on TShape coincidence. + // If there are such edges there is something to do with. if (bNothingToDo) { Standard_Integer aNbE, aNbMapEE; Standard_Boolean bFlag; @@ -1085,4 +1086,4 @@ Standard_Boolean RefineAngle2D(const TopoDS_Vertex& aV, } }// for (i=0; i<2; ++i) { return !bRet; -} \ No newline at end of file +} diff --git a/src/BOPDS/BOPDS_CommonBlock.hxx b/src/BOPDS/BOPDS_CommonBlock.hxx index d01bddf5c8..14a2f2a118 100644 --- a/src/BOPDS/BOPDS_CommonBlock.hxx +++ b/src/BOPDS/BOPDS_CommonBlock.hxx @@ -45,12 +45,12 @@ public: - //! Empty contructor + //! Empty constructor Standard_EXPORT BOPDS_CommonBlock(); - //! Contructor - //! - the allocator to manage the memory + //! Constructor + //! @param theAllocator the allocator to manage the memory Standard_EXPORT BOPDS_CommonBlock(const Handle(NCollection_BaseAllocator)& theAllocator); diff --git a/src/BOPDS/BOPDS_Curve.hxx b/src/BOPDS/BOPDS_Curve.hxx index ef085af703..73ea48a99b 100644 --- a/src/BOPDS/BOPDS_Curve.hxx +++ b/src/BOPDS/BOPDS_Curve.hxx @@ -41,14 +41,15 @@ public: - //! Empty contructor - BOPDS_Curve(); -virtual ~BOPDS_Curve(); + //! Empty constructor + BOPDS_Curve(); + + virtual ~BOPDS_Curve(); - //! Contructor - //! - the allocator to manage the memory - BOPDS_Curve(const Handle(NCollection_BaseAllocator)& theAllocator); + //! Constructor + //! @param theAllocator the allocator to manage the memory + BOPDS_Curve(const Handle(NCollection_BaseAllocator)& theAllocator); //! Modifier diff --git a/src/BOPDS/BOPDS_DS.hxx b/src/BOPDS/BOPDS_DS.hxx index 418a4b9fe4..75ebc192b6 100644 --- a/src/BOPDS/BOPDS_DS.hxx +++ b/src/BOPDS/BOPDS_DS.hxx @@ -86,13 +86,13 @@ public: - //! Empty contructor + //! Empty constructor Standard_EXPORT BOPDS_DS(); -Standard_EXPORT virtual ~BOPDS_DS(); - - //! Contructor - //! theAllocator - the allocator to manage the memory + Standard_EXPORT virtual ~BOPDS_DS(); + + //! Constructor + //! @param theAllocator the allocator to manage the memory Standard_EXPORT BOPDS_DS(const Handle(NCollection_BaseAllocator)& theAllocator); diff --git a/src/BOPDS/BOPDS_FaceInfo.hxx b/src/BOPDS/BOPDS_FaceInfo.hxx index 70d2fffd55..110ac9a781 100644 --- a/src/BOPDS/BOPDS_FaceInfo.hxx +++ b/src/BOPDS/BOPDS_FaceInfo.hxx @@ -39,14 +39,14 @@ public: - //! Empty contructor - BOPDS_FaceInfo(); -virtual ~BOPDS_FaceInfo(); - + //! Empty constructor + BOPDS_FaceInfo(); - //! Contructor - //! theAllocator - the allocator to manage the memory - BOPDS_FaceInfo(const Handle(NCollection_BaseAllocator)& theAllocator); + virtual ~BOPDS_FaceInfo(); + + //! Constructor + //! @param theAllocator the allocator to manage the memory + BOPDS_FaceInfo(const Handle(NCollection_BaseAllocator)& theAllocator); //! Clears the contents diff --git a/src/BOPDS/BOPDS_IndexRange.hxx b/src/BOPDS/BOPDS_IndexRange.hxx index 058bb79942..d3396eaa31 100644 --- a/src/BOPDS/BOPDS_IndexRange.hxx +++ b/src/BOPDS/BOPDS_IndexRange.hxx @@ -34,7 +34,7 @@ public: - //! Empty contructor + //! Empty constructor BOPDS_IndexRange(); //! Modifier diff --git a/src/BOPDS/BOPDS_Iterator.hxx b/src/BOPDS/BOPDS_Iterator.hxx index 9faf534c49..cf9cb9d9b4 100644 --- a/src/BOPDS/BOPDS_Iterator.hxx +++ b/src/BOPDS/BOPDS_Iterator.hxx @@ -46,12 +46,12 @@ public: DEFINE_STANDARD_ALLOC - //! Empty contructor + //! Empty constructor Standard_EXPORT BOPDS_Iterator(); Standard_EXPORT virtual ~BOPDS_Iterator(); - //! Contructor - //! theAllocator - the allocator to manage the memory + //! Constructor + //! @param theAllocator the allocator to manage the memory Standard_EXPORT BOPDS_Iterator(const Handle(NCollection_BaseAllocator)& theAllocator); //! Modifier diff --git a/src/BOPDS/BOPDS_IteratorSI.hxx b/src/BOPDS/BOPDS_IteratorSI.hxx index 0f94f71f0b..9c88ae5fd9 100644 --- a/src/BOPDS/BOPDS_IteratorSI.hxx +++ b/src/BOPDS/BOPDS_IteratorSI.hxx @@ -42,13 +42,13 @@ public: - //! Empty contructor + //! Empty constructor Standard_EXPORT BOPDS_IteratorSI(); -Standard_EXPORT virtual ~BOPDS_IteratorSI(); - - //! Contructor - //! theAllocator - the allocator to manage the memory + Standard_EXPORT virtual ~BOPDS_IteratorSI(); + + //! Constructor + //! @param theAllocator the allocator to manage the memory Standard_EXPORT BOPDS_IteratorSI(const Handle(NCollection_BaseAllocator)& theAllocator); //! Updates the lists of possible intersections diff --git a/src/BOPDS/BOPDS_Pave.hxx b/src/BOPDS/BOPDS_Pave.hxx index 29a0556ea4..4fa4544590 100644 --- a/src/BOPDS/BOPDS_Pave.hxx +++ b/src/BOPDS/BOPDS_Pave.hxx @@ -35,7 +35,7 @@ public: - //! Empty contructor + //! Empty constructor BOPDS_Pave(); //! Modifier diff --git a/src/BOPDS/BOPDS_PaveBlock.hxx b/src/BOPDS/BOPDS_PaveBlock.hxx index 0606dbb7af..8e699b2150 100644 --- a/src/BOPDS/BOPDS_PaveBlock.hxx +++ b/src/BOPDS/BOPDS_PaveBlock.hxx @@ -44,16 +44,12 @@ class BOPDS_PaveBlock : public Standard_Transient public: - - - //! Empty contructor + //! Empty constructor Standard_EXPORT BOPDS_PaveBlock(); - - //! Contructor - //! - the allocator to manage the memory + //! Constructor + //! @param theAllocator the allocator to manage the memory Standard_EXPORT BOPDS_PaveBlock(const Handle(NCollection_BaseAllocator)& theAllocator); - //! Modifier //! Sets the first pave diff --git a/src/BOPDS/BOPDS_Point.hxx b/src/BOPDS/BOPDS_Point.hxx index b324cf21b3..d2761a8e9b 100644 --- a/src/BOPDS/BOPDS_Point.hxx +++ b/src/BOPDS/BOPDS_Point.hxx @@ -37,7 +37,7 @@ public: - //! Empty contructor + //! Empty constructor BOPDS_Point(); virtual ~BOPDS_Point(); diff --git a/src/BOPDS/BOPDS_ShapeInfo.hxx b/src/BOPDS/BOPDS_ShapeInfo.hxx index a07f059c84..d454ed3789 100644 --- a/src/BOPDS/BOPDS_ShapeInfo.hxx +++ b/src/BOPDS/BOPDS_ShapeInfo.hxx @@ -36,16 +36,14 @@ public: DEFINE_STANDARD_ALLOC - + //! Empty constructor + BOPDS_ShapeInfo(); - //! Empty contructor - BOPDS_ShapeInfo(); -virtual ~BOPDS_ShapeInfo(); - + virtual ~BOPDS_ShapeInfo(); - //! Contructor - //! theAllocator - the allocator to manage the memory - BOPDS_ShapeInfo(const Handle(NCollection_BaseAllocator)& theAllocator); + //! Constructor + //! @param theAllocator the allocator to manage the memory + BOPDS_ShapeInfo(const Handle(NCollection_BaseAllocator)& theAllocator); //! Modifier diff --git a/src/BOPTools/BOPTools_AlgoTools2D.cxx b/src/BOPTools/BOPTools_AlgoTools2D.cxx index 7304421ac4..85642012a1 100644 --- a/src/BOPTools/BOPTools_AlgoTools2D.cxx +++ b/src/BOPTools/BOPTools_AlgoTools2D.cxx @@ -691,7 +691,7 @@ void BOPTools_AlgoTools2D::IsEdgeIsoline( const TopoDS_Edge& theE, if(aSqMagn <= gp::Resolution()) return; - //Normalyze aT + //Normalize aT aT /= sqrt(aSqMagn); //sin(da) ~ da, when da->0. diff --git a/src/BRep/BRep_TFace.hxx b/src/BRep/BRep_TFace.hxx index d77c472d11..dd23f43f2b 100644 --- a/src/BRep/BRep_TFace.hxx +++ b/src/BRep/BRep_TFace.hxx @@ -36,7 +36,7 @@ DEFINE_STANDARD_HANDLE(BRep_TFace, TopoDS_TFace) //! The Tface from BRep is based on the TFace from //! TopoDS. The TFace contains : //! -//! * A suface, a tolerance and a Location. +//! * A surface, a tolerance and a Location. //! //! * A NaturalRestriction flag, when this flag is //! True the boundary of the face is known to be the diff --git a/src/BRepAdaptor/BRepAdaptor_CompCurve.cxx b/src/BRepAdaptor/BRepAdaptor_CompCurve.cxx index 619f46d039..64acb5ee91 100644 --- a/src/BRepAdaptor/BRepAdaptor_CompCurve.cxx +++ b/src/BRepAdaptor/BRepAdaptor_CompCurve.cxx @@ -116,7 +116,7 @@ BRepAdaptor_CompCurve::BRepAdaptor_CompCurve(const TopoDS_Wire& theWire, } } - Forward = Standard_True; // Defaut ; The Reverse Edges are parsed. + Forward = Standard_True; // Default ; The Reverse Edges are parsed. if((NbEdge > 2) || ((NbEdge==2) && (!myWire.Closed())) ) { TopAbs_Orientation Or = myCurves->Value(1).Edge().Orientation(); TopoDS_Vertex VI, VL; diff --git a/src/BRepAdaptor/BRepAdaptor_Curve.hxx b/src/BRepAdaptor/BRepAdaptor_Curve.hxx index 583413934f..3cbfb2f663 100644 --- a/src/BRepAdaptor/BRepAdaptor_Curve.hxx +++ b/src/BRepAdaptor/BRepAdaptor_Curve.hxx @@ -206,17 +206,15 @@ public: Standard_EXPORT Standard_Integer NbKnots() const Standard_OVERRIDE; - //! Warning : - //! This will make a copy of the Bezier Curve - //! since it applies to it myTsrf . Be carefull when - //! using this method + //! Warning: + //! This will make a copy of the Bezier Curve since it applies to it myTsrf. + //! Be careful when using this method. Standard_EXPORT Handle(Geom_BezierCurve) Bezier() const Standard_OVERRIDE; - //! Warning : - //! This will make a copy of the BSpline Curve - //! since it applies to it myTsrf . Be carefull when - //! using this method + //! Warning: + //! This will make a copy of the BSpline Curve since it applies to it myTsrf. + //! Be careful when using this method. Standard_EXPORT Handle(Geom_BSplineCurve) BSpline() const Standard_OVERRIDE; Standard_EXPORT Handle(Geom_OffsetCurve) OffsetCurve() const Standard_OVERRIDE; diff --git a/src/BRepAlgo/BRepAlgo.cxx b/src/BRepAlgo/BRepAlgo.cxx index db36f5b3b0..46cbe8f282 100644 --- a/src/BRepAlgo/BRepAlgo.cxx +++ b/src/BRepAlgo/BRepAlgo.cxx @@ -111,7 +111,7 @@ TopoDS_Wire BRepAlgo::ConcatenateWire(const TopoDS_Wire& W, if(index==0){ //storage of the first edge features First0=First; - if(edge.Orientation()==TopAbs_REVERSED){ //(usefull for the closed wire) + if(edge.Orientation()==TopAbs_REVERSED){ //(useful for the closed wire) Vfirst=TopExp::LastVertex(edge); tab(index)->Reverse(); } diff --git a/src/BRepAlgo/BRepAlgo_Tool.hxx b/src/BRepAlgo/BRepAlgo_Tool.hxx index a344fcf3d7..277da9704f 100644 --- a/src/BRepAlgo/BRepAlgo_Tool.hxx +++ b/src/BRepAlgo/BRepAlgo_Tool.hxx @@ -37,8 +37,8 @@ public: //! 1 - Remove all the free boundary and the faces //! connex to such edges. //! 2 - Remove all the shapes not valid in the result - //! (according to the side of offseting) - //! in this verion only the first point is implemented. + //! (according to the side of offsetting) + //! in this version only the first point is implemented. Standard_EXPORT static TopoDS_Shape Deboucle3D (const TopoDS_Shape& S, const TopTools_MapOfShape& Boundary); diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Section.hxx b/src/BRepAlgoAPI/BRepAlgoAPI_Section.hxx index e465059642..2582d5705a 100644 --- a/src/BRepAlgoAPI/BRepAlgoAPI_Section.hxx +++ b/src/BRepAlgoAPI/BRepAlgoAPI_Section.hxx @@ -30,7 +30,7 @@ class Geom_Surface; -//! The algorithm is to build a Secton operation between arguments and tools. +//! The algorithm is to build a Section operation between arguments and tools. //! The result of Section operation consists of vertices and edges. //! The result of Section operation contains: //! 1. new vertices that are subjects of V/V, E/E, E/F, F/F interferences @@ -56,7 +56,7 @@ Standard_EXPORT virtual ~BRepAlgoAPI_Section(); //! -argument //! -tool //! - the flag: - //! if =True - the algorithm is performed immediatly + //! if =True - the algorithm is performed immediately //! Obsolete Standard_EXPORT BRepAlgoAPI_Section(const TopoDS_Shape& S1, const TopoDS_Shape& S2, const Standard_Boolean PerformNow = Standard_True); @@ -65,7 +65,7 @@ Standard_EXPORT virtual ~BRepAlgoAPI_Section(); //! -tool //! - PaveFiller object that is carried out //! - the flag: - //! if =True - the algorithm is performed immediatly + //! if =True - the algorithm is performed immediately //! Obsolete Standard_EXPORT BRepAlgoAPI_Section(const TopoDS_Shape& S1, const TopoDS_Shape& S2, const BOPAlgo_PaveFiller& aDSF, const Standard_Boolean PerformNow = Standard_True); @@ -73,7 +73,7 @@ Standard_EXPORT virtual ~BRepAlgoAPI_Section(); //! - argument //! - tool //! - the flag: - //! if =True - the algorithm is performed immediatly + //! if =True - the algorithm is performed immediately //! Obsolete Standard_EXPORT BRepAlgoAPI_Section(const TopoDS_Shape& S1, const gp_Pln& Pl, const Standard_Boolean PerformNow = Standard_True); @@ -81,7 +81,7 @@ Standard_EXPORT virtual ~BRepAlgoAPI_Section(); //! - argument //! - tool //! - the flag: - //! if =True - the algorithm is performed immediatly + //! if =True - the algorithm is performed immediately //! Obsolete Standard_EXPORT BRepAlgoAPI_Section(const TopoDS_Shape& S1, const Handle(Geom_Surface)& Sf, const Standard_Boolean PerformNow = Standard_True); @@ -89,7 +89,7 @@ Standard_EXPORT virtual ~BRepAlgoAPI_Section(); //! - argument //! - tool //! - the flag: - //! if =True - the algorithm is performed immediatly + //! if =True - the algorithm is performed immediately //! Obsolete Standard_EXPORT BRepAlgoAPI_Section(const Handle(Geom_Surface)& Sf, const TopoDS_Shape& S2, const Standard_Boolean PerformNow = Standard_True); @@ -97,7 +97,7 @@ Standard_EXPORT virtual ~BRepAlgoAPI_Section(); //! - argument //! - tool //! - the flag: - //! if =True - the algorithm is performed immediatly + //! if =True - the algorithm is performed immediately //! Obsolete Standard_EXPORT BRepAlgoAPI_Section(const Handle(Geom_Surface)& Sf1, const Handle(Geom_Surface)& Sf2, const Standard_Boolean PerformNow = Standard_True); diff --git a/src/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox.hxx b/src/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox.hxx index bb1f99dc9f..2c5606b57a 100644 --- a/src/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox.hxx +++ b/src/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox.hxx @@ -174,17 +174,17 @@ public: protected: - //! is used by the constuctors above. + //! is used by the constructors above. Standard_EXPORT void Init (const BRepApprox_TheMultiLineOfApprox& SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint); //! returns the number of second member columns. //! Is used internally to initialize the fields. Standard_EXPORT Standard_Integer NbBColumns (const BRepApprox_TheMultiLineOfApprox& SSP) const; - //! returns the first point beeing fitted. + //! returns the first point being fitted. Standard_EXPORT Standard_Integer TheFirstPoint (const AppParCurves_Constraint FirstCons, const Standard_Integer FirstPoint) const; - //! returns the last point beeing fitted. + //! returns the last point being fitted. Standard_EXPORT Standard_Integer TheLastPoint (const AppParCurves_Constraint LastCons, const Standard_Integer LastPoint) const; //! Affects the fields in the case of a constraint point. diff --git a/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox.hxx b/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox.hxx index 5f81231745..309dd8604a 100644 --- a/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox.hxx +++ b/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox.hxx @@ -174,17 +174,17 @@ public: protected: - //! is used by the constuctors above. + //! is used by the constructors above. Standard_EXPORT void Init (const BRepApprox_TheMultiLineOfApprox& SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint); //! returns the number of second member columns. //! Is used internally to initialize the fields. Standard_EXPORT Standard_Integer NbBColumns (const BRepApprox_TheMultiLineOfApprox& SSP) const; - //! returns the first point beeing fitted. + //! returns the first point being fitted. Standard_EXPORT Standard_Integer TheFirstPoint (const AppParCurves_Constraint FirstCons, const Standard_Integer FirstPoint) const; - //! returns the last point beeing fitted. + //! returns the last point being fitted. Standard_EXPORT Standard_Integer TheLastPoint (const AppParCurves_Constraint LastCons, const Standard_Integer LastPoint) const; //! Affects the fields in the case of a constraint point. diff --git a/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox.hxx b/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox.hxx index 77a35026e3..24d0f5578c 100644 --- a/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox.hxx +++ b/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox.hxx @@ -174,17 +174,17 @@ public: protected: - //! is used by the constuctors above. + //! is used by the constructors above. Standard_EXPORT void Init (const BRepApprox_TheMultiLineOfApprox& SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint); //! returns the number of second member columns. //! Is used internally to initialize the fields. Standard_EXPORT Standard_Integer NbBColumns (const BRepApprox_TheMultiLineOfApprox& SSP) const; - //! returns the first point beeing fitted. + //! returns the first point being fitted. Standard_EXPORT Standard_Integer TheFirstPoint (const AppParCurves_Constraint FirstCons, const Standard_Integer FirstPoint) const; - //! returns the last point beeing fitted. + //! returns the last point being fitted. Standard_EXPORT Standard_Integer TheLastPoint (const AppParCurves_Constraint LastCons, const Standard_Integer LastPoint) const; //! Affects the fields in the case of a constraint point. diff --git a/src/BRepBlend/BRepBlend_AppFuncRoot.hxx b/src/BRepBlend/BRepBlend_AppFuncRoot.hxx index 12829edfca..1c3bce30d8 100644 --- a/src/BRepBlend/BRepBlend_AppFuncRoot.hxx +++ b/src/BRepBlend/BRepBlend_AppFuncRoot.hxx @@ -112,17 +112,17 @@ public: Standard_EXPORT virtual void SetTolerance (const Standard_Real Tol3d, const Standard_Real Tol2d) Standard_OVERRIDE; //! Get the barycentre of Surface. An very poor - //! estimation is sufficent. This information is usefull + //! estimation is sufficient. This information is useful //! to perform well conditioned rational approximation. Standard_EXPORT virtual gp_Pnt BarycentreOfSurf() const Standard_OVERRIDE; //! Returns the length of the maximum section. This - //! information is usefull to perform well conditioned rational + //! information is useful to perform well conditioned rational //! approximation. Standard_EXPORT virtual Standard_Real MaximalSection() const Standard_OVERRIDE; //! Compute the minimal value of weight for each poles - //! of all sections. This information is usefull to + //! of all sections. This information is useful to //! perform well conditioned rational approximation. Standard_EXPORT virtual void GetMinimalWeight (TColStd_Array1OfReal& Weigths) const Standard_OVERRIDE; diff --git a/src/BRepBlend/BRepBlend_AppSurface.hxx b/src/BRepBlend/BRepBlend_AppSurface.hxx index d2f547d917..8ae9866071 100644 --- a/src/BRepBlend/BRepBlend_AppSurface.hxx +++ b/src/BRepBlend/BRepBlend_AppSurface.hxx @@ -50,7 +50,7 @@ public: //! Approximation of the new Surface (and //! eventually the 2d Curves on the support //! surfaces). - //! Normaly the 2d curve are + //! Normally the 2d curve are //! approximated with an tolerance given by the //! resolution on support surfaces, but if this //! tolerance is too large Tol2d is used. @@ -78,7 +78,7 @@ public: const TColStd_Array1OfInteger& SurfVMults() const; - //! returns the maximum error in the suface approximation. + //! returns the maximum error in the surface approximation. Standard_EXPORT Standard_Real MaxErrorOnSurf() const; Standard_Integer NbCurves2d() const; @@ -102,7 +102,7 @@ public: Standard_EXPORT Standard_Real TolCurveOnSurf (const Standard_Integer Index) const; - //! diplay information on approximation. + //! display information on approximation. Standard_EXPORT void Dump (Standard_OStream& o) const; diff --git a/src/BRepBlend/BRepBlend_SurfRstEvolRad.cxx b/src/BRepBlend/BRepBlend_SurfRstEvolRad.cxx index afcb4a4c8b..f0dcb69a0e 100644 --- a/src/BRepBlend/BRepBlend_SurfRstEvolRad.cxx +++ b/src/BRepBlend/BRepBlend_SurfRstEvolRad.cxx @@ -112,7 +112,7 @@ static void FusionneIntervalles(const TColStd_Array1OfReal& I1, //======================================================================= //function : BRepBlend_SurfRstEvolRad -//purpose : Contructor +//purpose : Constructor //======================================================================= BRepBlend_SurfRstEvolRad::BRepBlend_SurfRstEvolRad (const Handle(Adaptor3d_Surface)& Surf, diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeFace.hxx b/src/BRepBuilderAPI/BRepBuilderAPI_MakeFace.hxx index dded54799f..051e5e49c6 100644 --- a/src/BRepBuilderAPI/BRepBuilderAPI_MakeFace.hxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_MakeFace.hxx @@ -72,7 +72,7 @@ public: //! Not done. Standard_EXPORT BRepBuilderAPI_MakeFace(); - //! Load a face. Usefull to add wires. + //! Load a face. useful to add wires. Standard_EXPORT BRepBuilderAPI_MakeFace(const TopoDS_Face& F); //! Make a face from a plane. diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.hxx b/src/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.hxx index 90c14a3ebd..6529416b06 100644 --- a/src/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.hxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.hxx @@ -79,7 +79,7 @@ public: //! these previous ones. Each must bound a closed volume. Standard_EXPORT BRepBuilderAPI_MakeSolid(const TopoDS_Shell& S1, const TopoDS_Shell& S2, const TopoDS_Shell& S3); - //! Make a solid from a solid. Usefull for adding later. + //! Make a solid from a solid. useful for adding later. Standard_EXPORT BRepBuilderAPI_MakeSolid(const TopoDS_Solid& So); //! Add a shell to a solid. diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeWire.hxx b/src/BRepBuilderAPI/BRepBuilderAPI_MakeWire.hxx index 97f8f90080..242ae77f3f 100644 --- a/src/BRepBuilderAPI/BRepBuilderAPI_MakeWire.hxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_MakeWire.hxx @@ -112,7 +112,7 @@ public: //! will raise an error, until a new connectable edge is added. Standard_EXPORT BRepBuilderAPI_MakeWire(const TopoDS_Edge& E1, const TopoDS_Edge& E2, const TopoDS_Edge& E3, const TopoDS_Edge& E4); - //! Make a Wire from a Wire. Usefull for adding later. + //! Make a Wire from a Wire. useful for adding later. Standard_EXPORT BRepBuilderAPI_MakeWire(const TopoDS_Wire& W); //! Add an edge to a wire. diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx b/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx index d6fb6361c3..72c312232d 100644 --- a/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx @@ -3518,7 +3518,7 @@ Standard_Boolean BRepBuilderAPI_Sewing::MergedNearestEdges(const TopoDS_Shape& e } } - // Find all possible contigous edges + // Find all possible contiguous edges TopTools_SequenceOfShape seqEdges; seqEdges.Append(edge); TopTools_MapOfShape mapEdges; @@ -3977,7 +3977,7 @@ static TopoDS_Edge DegeneratedSection(const TopoDS_Shape& section, const TopoDS_ // . if multiple edge // - length < 100.*myTolerance -> several free edge // . if no multiple edge -// - make the contigous edges sameparameter +// - make the contiguous edges sameparameter //======================================================================= void BRepBuilderAPI_Sewing::EdgeProcessing(const Message_ProgressRange& theProgress) diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.hxx b/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.hxx index 03810e4427..d11c93680c 100644 --- a/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.hxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.hxx @@ -60,10 +60,10 @@ DEFINE_STANDARD_HANDLE(BRepBuilderAPI_Sewing, Standard_Transient) //! Provides methods to //! -//! - identify possible contigous boundaries (for control +//! - identify possible contiguous boundaries (for control //! afterwards (of continuity: C0, C1, ...)) //! -//! - assemble contigous shapes into one shape. +//! - assemble contiguous shapes into one shape. //! Only manifold shapes will be found. Sewing will not //! be done in case of multiple edges. //! @@ -131,13 +131,13 @@ public: //! Gives each multiple edge Standard_EXPORT const TopoDS_Edge& MultipleEdge (const Standard_Integer index) const; - //! Gives the number of contigous edges (edge shared by two faces) + //! Gives the number of contiguous edges (edge shared by two faces) Standard_EXPORT Standard_Integer NbContigousEdges() const; - //! Gives each contigous edge + //! Gives each contiguous edge Standard_EXPORT const TopoDS_Edge& ContigousEdge (const Standard_Integer index) const; - //! Gives the sections (edge) belonging to a contigous edge + //! Gives the sections (edge) belonging to a contiguous edge Standard_EXPORT const TopTools_ListOfShape& ContigousEdgeCouple (const Standard_Integer index) const; //! Indicates if a section is bound (before use SectionToBoundary) diff --git a/src/BRepCheck/BRepCheck_Wire.cxx b/src/BRepCheck/BRepCheck_Wire.cxx index e8e23f54a1..7845d767f5 100644 --- a/src/BRepCheck/BRepCheck_Wire.cxx +++ b/src/BRepCheck/BRepCheck_Wire.cxx @@ -326,7 +326,7 @@ BRepCheck_Status BRepCheck_Wire::Closed(const Standard_Boolean Update) return myCstat; } - // Checks the number of occurence of an edge : maximum 2, and in this + // Checks the number of occurrence of an edge : maximum 2, and in this // case, one time FORWARD and one time REVERSED Standard_Boolean yabug = Standard_False; diff --git a/src/BRepCheck/BRepCheck_Wire.hxx b/src/BRepCheck/BRepCheck_Wire.hxx index 762af22cc9..ea71c1d846 100644 --- a/src/BRepCheck/BRepCheck_Wire.hxx +++ b/src/BRepCheck/BRepCheck_Wire.hxx @@ -64,7 +64,7 @@ public: //! **BRepCheck_NotConnected, if wire is not //! topologically closed //! **BRepCheck_RedundantEdge, if an edge is in wire - //! more than 3 times or in case of 2 occurences if + //! more than 3 times or in case of 2 occurrences if //! not with FORWARD and REVERSED orientation. //! **BRepCheck_NoError Standard_EXPORT BRepCheck_Status Closed (const Standard_Boolean Update = Standard_False); diff --git a/src/BRepClass3d/BRepClass3d_Intersector3d.hxx b/src/BRepClass3d/BRepClass3d_Intersector3d.hxx index 4c6d7765e5..268eb0ccef 100644 --- a/src/BRepClass3d/BRepClass3d_Intersector3d.hxx +++ b/src/BRepClass3d/BRepClass3d_Intersector3d.hxx @@ -84,7 +84,7 @@ public: //! The values can be either TopAbs_IN //! ( the point is in the face) //! or TopAbs_ON - //! ( the point is on a boudary of the face). + //! ( the point is on a boundary of the face). TopAbs_State State() const; //! Returns the significant face used to determine diff --git a/src/BRepExtrema/BRepExtrema_OverlapTool.hxx b/src/BRepExtrema/BRepExtrema_OverlapTool.hxx index 08628c2656..d2cf6f55c2 100644 --- a/src/BRepExtrema/BRepExtrema_OverlapTool.hxx +++ b/src/BRepExtrema/BRepExtrema_OverlapTool.hxx @@ -39,7 +39,7 @@ class BRepExtrema_OverlapTool : public BVH_PairTraverse { public: - //! Creates new unitialized overlap tool. + //! Creates new uninitialized overlap tool. BRepExtrema_OverlapTool(); //! Creates new overlap tool for the given element sets. diff --git a/src/BRepExtrema/BRepExtrema_SelfIntersection.hxx b/src/BRepExtrema/BRepExtrema_SelfIntersection.hxx index acdb4ad882..dbad243766 100644 --- a/src/BRepExtrema/BRepExtrema_SelfIntersection.hxx +++ b/src/BRepExtrema/BRepExtrema_SelfIntersection.hxx @@ -35,7 +35,7 @@ class BRepExtrema_SelfIntersection : public BRepExtrema_ElementFilter public: - //! Creates unitialized self-intersection tool. + //! Creates uninitialized self-intersection tool. Standard_EXPORT BRepExtrema_SelfIntersection (const Standard_Real theTolerance = 0.0); //! Creates self-intersection tool for the given shape. diff --git a/src/BRepFeat/BRepFeat_Builder.hxx b/src/BRepFeat/BRepFeat_Builder.hxx index 62a5241858..a9a96a03b5 100644 --- a/src/BRepFeat/BRepFeat_Builder.hxx +++ b/src/BRepFeat/BRepFeat_Builder.hxx @@ -60,10 +60,10 @@ Standard_EXPORT virtual ~BRepFeat_Builder(); //! Clears internal fields and arguments. Standard_EXPORT virtual void Clear() Standard_OVERRIDE; - //! Initialyzes the object of local boolean operation. + //! Initializes the object of local boolean operation. Standard_EXPORT void Init (const TopoDS_Shape& theShape); - //! Initialyzes the arguments of local boolean operation. + //! Initializes the arguments of local boolean operation. Standard_EXPORT void Init (const TopoDS_Shape& theShape, const TopoDS_Shape& theTool); //! Sets the operation of local boolean operation. @@ -80,7 +80,7 @@ Standard_EXPORT virtual ~BRepFeat_Builder(); //! Collects parts of the tool. Standard_EXPORT void PartsOfTool (TopTools_ListOfShape& theLT); - //! Initialyzes parts of the tool for second step of algorithm. + //! Initializes parts of the tool for second step of algorithm. //! Collects shapes and all sub-shapes into myShapes map. Standard_EXPORT void KeepParts (const TopTools_ListOfShape& theIm); diff --git a/src/BRepFeat/BRepFeat_RibSlot.cxx b/src/BRepFeat/BRepFeat_RibSlot.cxx index 6e6e735b67..9c59a2c302 100644 --- a/src/BRepFeat/BRepFeat_RibSlot.cxx +++ b/src/BRepFeat/BRepFeat_RibSlot.cxx @@ -1300,7 +1300,7 @@ Standard_Boolean BRepFeat_RibSlot::SlidingProfile(TopoDS_Face& Prof, Standard_Real par1 = ElCLib::Parameter(ln1->Lin(), myFirstPnt); Standard_Real par2 = ElCLib::Parameter(ln2->Lin(), myLastPnt); if(par1 >= myTol || par2 >= myTol) { - Concavite = 2; //paralel and concave + Concavite = 2; //parallel and concave BRepLib_MakeEdge e1(myLastPnt, myFirstPnt); WW.Add(e1); } diff --git a/src/BRepFill/BRepFill.cxx b/src/BRepFill/BRepFill.cxx index afef930d5b..7f02bf8449 100644 --- a/src/BRepFill/BRepFill.cxx +++ b/src/BRepFill/BRepFill.cxx @@ -1017,7 +1017,7 @@ TopoDS_Wire BRepFill::InsertACR(const TopoDS_Wire& wire, TColStd_SequenceOfReal SR; SR.Clear(); // the wire is always FORWARD - // it is necesary to modify the parameter of cut6 if the edge is REVERSED + // it is necessary to modify the parameter of cut6 if the edge is REVERSED if (E.Orientation() == TopAbs_FORWARD) { for (j=1; j<=ndec; j++) SR.Append(paradec(j)); } diff --git a/src/BRepFill/BRepFill_CompatibleWires.cxx b/src/BRepFill/BRepFill_CompatibleWires.cxx index 6465264105..b4d2cb8931 100644 --- a/src/BRepFill/BRepFill_CompatibleWires.cxx +++ b/src/BRepFill/BRepFill_CompatibleWires.cxx @@ -1372,7 +1372,7 @@ void BRepFill_CompatibleWires::SameNumberByACR(const Standard_Boolean report) dec2(k) = dec(k); } - //Check of cuts: are all the new edges long enouph or not + //Check of cuts: are all the new edges long enough or not TColStd_MapOfInteger CutsToRemove; for (k = 1; k <= nbdec; k++) { diff --git a/src/BRepFill/BRepFill_Evolved.cxx b/src/BRepFill/BRepFill_Evolved.cxx index 244fe3beef..a5024f938c 100644 --- a/src/BRepFill/BRepFill_Evolved.cxx +++ b/src/BRepFill/BRepFill_Evolved.cxx @@ -1084,7 +1084,7 @@ void BRepFill_Evolved::ElementaryPerform (const TopoDS_Face& Sp, // Find if one of two faces connected to the edge // belongs to volevo. The edges on this face serve // to eliminate certain vertices that can appear twice - // on the parallel edge. These Vertices corespond to the + // on the parallel edge. These Vertices correspond to the // nodes of the map. //--------------------------------------------------------- TopoDS_Shape FaceControle; diff --git a/src/BRepFill/BRepFill_LocationLaw.hxx b/src/BRepFill/BRepFill_LocationLaw.hxx index a776d0939b..9e4bb47d97 100644 --- a/src/BRepFill/BRepFill_LocationLaw.hxx +++ b/src/BRepFill/BRepFill_LocationLaw.hxx @@ -106,14 +106,13 @@ public: //! 0 : It is connex (G0) //! 1 : It is tangent (G1) Standard_EXPORT Standard_Integer IsG1 (const Standard_Integer Index, const Standard_Real SpatialTolerance = 1.0e-7, const Standard_Real AngularTolerance = 1.0e-4) const; - - //! Apply the Law to a shape, for a given Curnilinear abscissa + + //! Apply the Law to a shape, for a given Curvilinear abscissa Standard_EXPORT void D0 (const Standard_Real Abscissa, TopoDS_Shape& Section); - - //! Find the index Law and the parmaeter, for a given - //! Curnilinear abscissa + + //! Find the index Law and the parameter, for a given Curvilinear abscissa Standard_EXPORT void Parameter (const Standard_Real Abscissa, Standard_Integer& Index, Standard_Real& Param); - + //! Return the curvilinear abscissa corresponding to a point //! of the path, defined by of Edge and a //! parameter on the edge. diff --git a/src/BRepFill/BRepFill_NSections.hxx b/src/BRepFill/BRepFill_NSections.hxx index e01352a0f1..0efee65da8 100644 --- a/src/BRepFill/BRepFill_NSections.hxx +++ b/src/BRepFill/BRepFill_NSections.hxx @@ -57,7 +57,7 @@ public: //! Say if the Law is Constant. Standard_EXPORT virtual Standard_Boolean IsConstant() const Standard_OVERRIDE; - //! Give the law build on a concatened section + //! Give the law build on a concatenated section Standard_EXPORT virtual Handle(GeomFill_SectionLaw) ConcatenedLaw() const Standard_OVERRIDE; Standard_EXPORT virtual GeomAbs_Shape Continuity (const Standard_Integer Index, const Standard_Real TolAngular) const Standard_OVERRIDE; diff --git a/src/BRepFill/BRepFill_OffsetWire.hxx b/src/BRepFill/BRepFill_OffsetWire.hxx index f10987dafa..30f7d3fd68 100644 --- a/src/BRepFill/BRepFill_OffsetWire.hxx +++ b/src/BRepFill/BRepFill_OffsetWire.hxx @@ -67,7 +67,7 @@ public: Standard_EXPORT BRepFill_OffsetWire(const TopoDS_Face& Spine, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); - //! Initialize the evaluation of Offseting. + //! Initialize the evaluation of Offsetting. Standard_EXPORT void Init (const TopoDS_Face& Spine, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); //! Performs an OffsetWire at an altitude from diff --git a/src/BRepFill/BRepFill_PipeShell.hxx b/src/BRepFill/BRepFill_PipeShell.hxx index a577178ac5..0d92fae076 100644 --- a/src/BRepFill/BRepFill_PipeShell.hxx +++ b/src/BRepFill/BRepFill_PipeShell.hxx @@ -125,18 +125,14 @@ public: //! Possibilities are : //! - Give one or sevral profile //! - Give one profile and an homotetic law. - //! - Automatic compute of correspondance between profile, and section - //! on the sweeped shape - //! - correspondance between profile, and section on the sweeped shape - //! defined by a vertex of the spine + //! - Automatic compute of correspondence between profile, and section on the sweeped shape + //! - correspondence between profile, and section on the sweeped shape defined by a vertex of the spine Standard_EXPORT void SetForceApproxC1 (const Standard_Boolean ForceApproxC1); - - //! Set an section. The corespondance with the spine, will - //! be automaticaly performed. + + //! Set an section. The correspondence with the spine, will be automaticaly performed. Standard_EXPORT void Add (const TopoDS_Shape& Profile, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); - - //! Set an section. The corespondance with the spine, is - //! given by + + //! Set an section. The correspondence with the spine, is given by Location. Standard_EXPORT void Add (const TopoDS_Shape& Profile, const TopoDS_Vertex& Location, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); //! Set an section and an homotetic law. diff --git a/src/BRepFill/BRepFill_ShapeLaw.hxx b/src/BRepFill/BRepFill_ShapeLaw.hxx index feef75ec8d..2b0a5e1b87 100644 --- a/src/BRepFill/BRepFill_ShapeLaw.hxx +++ b/src/BRepFill/BRepFill_ShapeLaw.hxx @@ -60,7 +60,7 @@ public: //! Say if the Law is Constant. Standard_EXPORT virtual Standard_Boolean IsConstant() const Standard_OVERRIDE; - //! Give the law build on a concaneted section + //! Give the law build on a concatenated section Standard_EXPORT virtual Handle(GeomFill_SectionLaw) ConcatenedLaw() const Standard_OVERRIDE; Standard_EXPORT virtual GeomAbs_Shape Continuity (const Standard_Integer Index, const Standard_Real TolAngular) const Standard_OVERRIDE; diff --git a/src/BRepFill/BRepFill_Sweep.cxx b/src/BRepFill/BRepFill_Sweep.cxx index 46ef252fb1..8970c4bba3 100644 --- a/src/BRepFill/BRepFill_Sweep.cxx +++ b/src/BRepFill/BRepFill_Sweep.cxx @@ -2758,7 +2758,7 @@ BRepFill_Sweep::BRepFill_Sweep(const Handle(BRepFill_SectionLaw)& Section, } } - // (3.1) Reverse the faces that have been built ealier + // (3.1) Reverse the faces that have been built earlier for (ipath = 1; ipath <= NbPath; ipath++) for (isec = 1; isec <= NbLaw; isec++) if (IsBuilt(isec)) diff --git a/src/BRepFill/BRepFill_Sweep.hxx b/src/BRepFill/BRepFill_Sweep.hxx index 9f26c94252..a7a18f8425 100644 --- a/src/BRepFill/BRepFill_Sweep.hxx +++ b/src/BRepFill/BRepFill_Sweep.hxx @@ -61,7 +61,7 @@ public: //! Set Approximation Tolerance //! Tol3d : Tolerance to surface approximation //! Tol2d : Tolerance used to perform curve approximation - //! Normaly the 2d curve are approximated with a + //! Normally the 2d curve are approximated with a //! tolerance given by the resolution on support surfaces, //! but if this tolerance is too large Tol2d is used. //! TolAngular : Tolerance (in radian) to control the angle diff --git a/src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.hxx b/src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.hxx index ce6310d18d..b395ef88fa 100644 --- a/src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.hxx +++ b/src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.hxx @@ -136,7 +136,7 @@ public: //! Sets the mode of chamfer Standard_EXPORT void SetMode (const ChFiDS_ChamfMode theMode); - //! return True if chamfer symetric false else. + //! return True if chamfer symmetric false else. Standard_EXPORT Standard_Boolean IsSymetric (const Standard_Integer IC) const; //! return True if chamfer is made with two distances false else. diff --git a/src/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.hxx b/src/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.hxx index 113918e423..645e4b14f2 100644 --- a/src/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.hxx +++ b/src/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.hxx @@ -91,14 +91,12 @@ public: //! - ChFi2d_NotPlanar if F is not planar, //! - ChFi2d_NoFace if F is a null face. Standard_EXPORT void Init (const TopoDS_Face& F); - - //! This initialize method allow to init the builder - //! from a face and another face - //! which derive from . This is usefull to - //! modify a fillet or a chamfer already created on - //! . + + //! This initialize method allow to init the builder + //! from a face RefFace and another face ModFace which derive from RefFace. + //! This is useful to modify a fillet or a chamfer already created on ModFace. Standard_EXPORT void Init (const TopoDS_Face& RefFace, const TopoDS_Face& ModFace); - + //! Adds a fillet of radius Radius between the two edges //! adjacent to the vertex V on the face modified by this //! algorithm. The two edges do not need to be rectilinear. diff --git a/src/BRepGProp/BRepGProp_Cinert.hxx b/src/BRepGProp/BRepGProp_Cinert.hxx index 387c354476..212af6abc5 100644 --- a/src/BRepGProp/BRepGProp_Cinert.hxx +++ b/src/BRepGProp/BRepGProp_Cinert.hxx @@ -32,7 +32,7 @@ class gp_Pnt; //! It can be a curve as defined in the template CurveTool from //! package GProp. This template gives the minimum of methods //! required to evaluate the global properties of a curve 3D with -//! the algorithmes of GProp. +//! the algorithms of GProp. class BRepGProp_Cinert : public GProp_GProps { public: diff --git a/src/BRepLProp/BRepLProp.hxx b/src/BRepLProp/BRepLProp.hxx index f88518c00f..ecdec3dbb8 100644 --- a/src/BRepLProp/BRepLProp.hxx +++ b/src/BRepLProp/BRepLProp.hxx @@ -46,8 +46,7 @@ public: //! tolerance used two compare the derivative. Standard_EXPORT static GeomAbs_Shape Continuity (const BRepAdaptor_Curve& C1, const BRepAdaptor_Curve& C2, const Standard_Real u1, const Standard_Real u2, const Standard_Real tl, const Standard_Real ta); - //! The same as preciding but using the standard - //! tolerances from package Precision. + //! The same as preceding but using the standard tolerances from package Precision. Standard_EXPORT static GeomAbs_Shape Continuity (const BRepAdaptor_Curve& C1, const BRepAdaptor_Curve& C2, const Standard_Real u1, const Standard_Real u2); diff --git a/src/BRepLib/BRepLib.hxx b/src/BRepLib/BRepLib.hxx index 8da5165ec3..fe78457b91 100644 --- a/src/BRepLib/BRepLib.hxx +++ b/src/BRepLib/BRepLib.hxx @@ -137,9 +137,9 @@ public: //! -- -- MaxToleranceToCheck if so it will compute the //! radius of -- the cylindrical pipe surface that //! MinToleranceRequest is the minimum tolerance before it - //! is usefull to start testing. Usually it should be arround - //! 10e-5 - //! contains all -- the curve represenation of the edge + //! is useful to start testing. + //! Usually it should be arround 10e-5 + //! contains all -- the curve representation of the edge //! returns True if the Edge tolerance had to be updated Standard_EXPORT static Standard_Boolean UpdateEdgeTol (const TopoDS_Edge& E, const Standard_Real MinToleranceRequest, const Standard_Real MaxToleranceToCheck); @@ -147,8 +147,8 @@ public: //! Tolerance is smaller than MaxToleranceToCheck -- //! Returns True if at least one edge was updated -- //! MinToleranceRequest is the minimum tolerance before - //! -- it -- is usefull to start testing. Usually it - //! should be arround -- 10e-5-- + //! -- it -- is useful to start testing. + //! Usually it should be arround -- 10e-5-- //! //! Warning :The method is very slow as it checks all. //! Use only in interfaces or processing assimilate batch diff --git a/src/BRepLib/BRepLib_CheckCurveOnSurface.hxx b/src/BRepLib/BRepLib_CheckCurveOnSurface.hxx index 3d710092df..160ec35dd7 100644 --- a/src/BRepLib/BRepLib_CheckCurveOnSurface.hxx +++ b/src/BRepLib/BRepLib_CheckCurveOnSurface.hxx @@ -26,10 +26,10 @@ public: DEFINE_STANDARD_ALLOC - //! Default contructor + //! Default constructor BRepLib_CheckCurveOnSurface() {} - //! Contructor + //! Constructor Standard_EXPORT BRepLib_CheckCurveOnSurface(const TopoDS_Edge& theEdge, const TopoDS_Face& theFace); diff --git a/src/BRepLib/BRepLib_FuseEdges.cxx b/src/BRepLib/BRepLib_FuseEdges.cxx index 528eabd0b7..ac1e37be13 100644 --- a/src/BRepLib/BRepLib_FuseEdges.cxx +++ b/src/BRepLib/BRepLib_FuseEdges.cxx @@ -594,9 +594,9 @@ void BRepLib_FuseEdges::Perform() //======================================================================= //function : BuildListConnexEdge //purpose : giving one edge, build the list of connex edges which have -// vertices that have only two connex edges. All the edges that are addes +// vertices that have only two connex edges. All the edges that are added // to the list must be added also to the mapUniq, in order for the caller -// to not treat again theses edges. +// to not treat again these edges. // This list is always oriented in the "Forward" direction. //======================================================================= diff --git a/src/BRepLib/BRepLib_MakeFace.hxx b/src/BRepLib/BRepLib_MakeFace.hxx index 1acc0be40b..20fb75af75 100644 --- a/src/BRepLib/BRepLib_MakeFace.hxx +++ b/src/BRepLib/BRepLib_MakeFace.hxx @@ -72,7 +72,7 @@ public: //! Not done. Standard_EXPORT BRepLib_MakeFace(); - //! Load a face. Usefull to add wires. + //! Load a face. Useful to add wires. Standard_EXPORT BRepLib_MakeFace(const TopoDS_Face& F); //! Make a face from a plane. diff --git a/src/BRepLib/BRepLib_MakeSolid.hxx b/src/BRepLib/BRepLib_MakeSolid.hxx index b476db83fc..e1eac5dad5 100644 --- a/src/BRepLib/BRepLib_MakeSolid.hxx +++ b/src/BRepLib/BRepLib_MakeSolid.hxx @@ -54,7 +54,7 @@ public: //! Make a solid from three shells. Standard_EXPORT BRepLib_MakeSolid(const TopoDS_Shell& S1, const TopoDS_Shell& S2, const TopoDS_Shell& S3); - //! Make a solid from a solid. Usefull for adding later. + //! Make a solid from a solid. Useful for adding later. Standard_EXPORT BRepLib_MakeSolid(const TopoDS_Solid& So); //! Add a shell to a solid. diff --git a/src/BRepLib/BRepLib_MakeWire.hxx b/src/BRepLib/BRepLib_MakeWire.hxx index 05f19cf9f4..6822d76e3d 100644 --- a/src/BRepLib/BRepLib_MakeWire.hxx +++ b/src/BRepLib/BRepLib_MakeWire.hxx @@ -101,7 +101,7 @@ public: //! Make a Wire from four edges. Standard_EXPORT BRepLib_MakeWire(const TopoDS_Edge& E1, const TopoDS_Edge& E2, const TopoDS_Edge& E3, const TopoDS_Edge& E4); - //! Make a Wire from a Wire. Usefull for adding later. + //! Make a Wire from a Wire. Useful for adding later. Standard_EXPORT BRepLib_MakeWire(const TopoDS_Wire& W); //! Add an edge to a wire. diff --git a/src/BRepMesh/BRepMesh_CircleInspector.hxx b/src/BRepMesh/BRepMesh_CircleInspector.hxx index 8bdac2c65a..a8acaca831 100644 --- a/src/BRepMesh/BRepMesh_CircleInspector.hxx +++ b/src/BRepMesh/BRepMesh_CircleInspector.hxx @@ -23,7 +23,7 @@ #include #include -//! Auxilary class to find circles shot by the given point. +//! Auxiliary class to find circles shot by the given point. class BRepMesh_CircleInspector : public NCollection_CellFilter_InspectorXY { public: diff --git a/src/BRepMesh/BRepMesh_CircleTool.hxx b/src/BRepMesh/BRepMesh_CircleTool.hxx index 7dd5501809..7a307bef3d 100644 --- a/src/BRepMesh/BRepMesh_CircleTool.hxx +++ b/src/BRepMesh/BRepMesh_CircleTool.hxx @@ -83,7 +83,7 @@ public: myFaceMax = theMax; } - //! Retruns true if cell filter contains no circle. + //! Returns true if cell filter contains no circle. Standard_Boolean IsEmpty () const { return mySelector.Circles ().IsEmpty (); diff --git a/src/BRepMesh/BRepMesh_Classifier.hxx b/src/BRepMesh/BRepMesh_Classifier.hxx index c81a303eaa..d675cb4bd0 100644 --- a/src/BRepMesh/BRepMesh_Classifier.hxx +++ b/src/BRepMesh/BRepMesh_Classifier.hxx @@ -27,7 +27,7 @@ class gp_Pnt2d; class CSLib_Class2d; -//! Auxilary class intended for classification of points +//! Auxiliary class intended for classification of points //! regarding internals of discrete face. class BRepMesh_Classifier : public Standard_Transient { diff --git a/src/BRepMesh/BRepMesh_Context.hxx b/src/BRepMesh/BRepMesh_Context.hxx index b99e6dce8a..ddaa68cf9c 100644 --- a/src/BRepMesh/BRepMesh_Context.hxx +++ b/src/BRepMesh/BRepMesh_Context.hxx @@ -18,7 +18,7 @@ #include -//! Class implemeting default context of BRepMesh algorithm. +//! Class implementing default context of BRepMesh algorithm. //! Initializes context by default algorithms. class BRepMesh_Context : public IMeshTools_Context { diff --git a/src/BRepMesh/BRepMesh_CurveTessellator.hxx b/src/BRepMesh/BRepMesh_CurveTessellator.hxx index eaf7f37847..b4c043a103 100644 --- a/src/BRepMesh/BRepMesh_CurveTessellator.hxx +++ b/src/BRepMesh/BRepMesh_CurveTessellator.hxx @@ -70,7 +70,7 @@ private: //! Adds internal vertices to discrete polygon. void addInternalVertices (); - //Check deflection in 2d space for improvement of edge tesselation. + //Check deflection in 2d space for improvement of edge tessellation. void splitByDeflection2d (); void splitSegment ( diff --git a/src/BRepMesh/BRepMesh_DataStructureOfDelaun.hxx b/src/BRepMesh/BRepMesh_DataStructureOfDelaun.hxx index e190e17a8f..0a4a119185 100644 --- a/src/BRepMesh/BRepMesh_DataStructureOfDelaun.hxx +++ b/src/BRepMesh/BRepMesh_DataStructureOfDelaun.hxx @@ -162,9 +162,9 @@ public: //! @name API for accessing mesh links. Standard_EXPORT void RemoveLink(const Standard_Integer theIndex, const Standard_Boolean isForce = Standard_False); - //! Returns indices of elements conected to the link with the given index. + //! Returns indices of elements connected to the link with the given index. //! @param theLinkIndex index of link whose data should be retrieved. - //! @return indices of elements conected to the link. + //! @return indices of elements connected to the link. const BRepMesh_PairOfIndex& ElementsConnectedTo( const Standard_Integer theLinkIndex) const { @@ -222,7 +222,7 @@ public: //! @name API for accessing mesh elements. -public: //! @name Auxilary API +public: //! @name Auxiliary API //! Dumps information about this structure. //! @param theStream stream to be used for dump. diff --git a/src/BRepMesh/BRepMesh_Delaun.cxx b/src/BRepMesh/BRepMesh_Delaun.cxx index 54ee573820..0df76a7538 100644 --- a/src/BRepMesh/BRepMesh_Delaun.cxx +++ b/src/BRepMesh/BRepMesh_Delaun.cxx @@ -936,7 +936,7 @@ void BRepMesh_Delaun::frontierAdjust() cleanupMesh(); // When the mesh has been cleaned up, try to process frontier edges - // once again to fill the possible gaps that might be occured in case of "saw" - + // once again to fill the possible gaps that might be occurred in case of "saw" - // situation when frontier edge has a triangle at a right side, but its free // links cross another frontieres and meshLeftPolygonOf itself can't collect // a closed polygon. @@ -953,7 +953,7 @@ void BRepMesh_Delaun::frontierAdjust() //======================================================================= //function : fillBndBox -//purpose : Add boundig box for edge defined by start & end point to +//purpose : Add bounding box for edge defined by start & end point to // the given vector of bounding boxes for triangulation edges //======================================================================= void BRepMesh_Delaun::fillBndBox(IMeshData::SequenceOfBndB2d& theBoxes, @@ -1004,7 +1004,7 @@ Standard_Boolean BRepMesh_Delaun::meshLeftPolygonOf( if ( aRefLinkDir.SquareMagnitude() < Precision2 ) return Standard_True; - // Auxilary structures. + // Auxiliary structures. // Bounding boxes of polygon links to be used for preliminary // analysis of intersections IMeshData::SequenceOfBndB2d aBoxes; @@ -1096,7 +1096,7 @@ Standard_Boolean BRepMesh_Delaun::meshLeftPolygonOf( // angle respect the given reference link. // Each time the next link is found other neighbor links at the // pivot node are marked as leprous and will be excluded from -// consideration next time until a hanging end is occured. +// consideration next time until a hanging end is occurred. //======================================================================= Standard_Integer BRepMesh_Delaun::findNextPolygonLink( const Standard_Integer& theFirstNode, @@ -1204,7 +1204,7 @@ Standard_Integer BRepMesh_Delaun::findNextPolygonLink( //======================================================================= //function : checkIntersection //purpose : Check is the given link intersects the polygon boundaries. -// Returns bounding box for the given link trough the +// Returns bounding box for the given link through the // parameter. //======================================================================= Standard_Boolean BRepMesh_Delaun::checkIntersection( @@ -1454,7 +1454,7 @@ void BRepMesh_Delaun::killTrianglesAroundVertex( } } - // Add link to the survivers to avoid cycling + // Add link to the survivors to avoid cycling theSurvivedLinks.Add( aNeighborLinkId ); killLinkTriangles( aNeighborLinkId, theLoopEdges ); } @@ -1760,7 +1760,7 @@ void BRepMesh_Delaun::meshPolygon(IMeshData::SequenceOfInteger& thePolygon, // In this context only intersections between frontier edges // are possible. If intersection between edges of different - // types occured - treat this case as invalid (i.e. result + // types occurred - treat this case as invalid (i.e. result // might not reflect the expectations). if ( !theSkipped.IsNull() ) { @@ -1771,7 +1771,7 @@ void BRepMesh_Delaun::meshPolygon(IMeshData::SequenceOfInteger& thePolygon, } else if ( aIntFlag == BRepMesh_GeomTool::PointOnSegment ) { - // Indentify chopping link + // Identify chopping link Standard_Boolean isFirstChopping = Standard_False; Standard_Integer aCheckPointIt = 0; for ( ; aCheckPointIt < 2; ++aCheckPointIt ) @@ -2034,7 +2034,7 @@ void BRepMesh_Delaun::decomposeSimplePolygon( continue; } - // Check is the test link crosses the polygon boudaries + // Check is the test link crosses the polygon boundaries Standard_Boolean isIntersect = Standard_False; for ( Standard_Integer aRefLinkNodeIt = 0; aRefLinkNodeIt < 2; ++aRefLinkNodeIt ) { diff --git a/src/BRepMesh/BRepMesh_Delaun.hxx b/src/BRepMesh/BRepMesh_Delaun.hxx index 93405c0c27..04c7df1fdc 100755 --- a/src/BRepMesh/BRepMesh_Delaun.hxx +++ b/src/BRepMesh/BRepMesh_Delaun.hxx @@ -176,7 +176,7 @@ private: const Standard_Integer theCellsCountU, const Standard_Integer theCellsCountV); - //! Add boundig box for edge defined by start & end point to + //! Add bounding box for edge defined by start & end point to //! the given vector of bounding boxes for triangulation edges. void fillBndBox (IMeshData::SequenceOfBndB2d& theBoxes, const BRepMesh_Vertex& theV1, @@ -212,7 +212,7 @@ private: //! angle respect the given reference link. //! Each time the next link is found other neighbor links at the pivot //! node are marked as leprous and will be excluded from consideration - //! next time until a hanging end is occured. + //! next time until a hanging end is occurred. Standard_Integer findNextPolygonLink (const Standard_Integer& theFirstNode, const Standard_Integer& thePivotNode, const BRepMesh_Vertex& thePivotVertex, @@ -228,7 +228,7 @@ private: Bnd_B2d& theNextLinkBndBox); //! Check is the given link intersects the polygon boundaries. - //! Returns bounding box for the given link trough the theLinkBndBox parameter. + //! Returns bounding box for the given link through the theLinkBndBox parameter. Standard_Boolean checkIntersection (const BRepMesh_Edge& theLink, const IMeshData::SequenceOfInteger& thePolygon, const IMeshData::SequenceOfBndB2d& thePolyBoxes, diff --git a/src/BRepMesh/BRepMesh_Edge.hxx b/src/BRepMesh/BRepMesh_Edge.hxx index b46056bffc..8b9718dd44 100644 --- a/src/BRepMesh/BRepMesh_Edge.hxx +++ b/src/BRepMesh/BRepMesh_Edge.hxx @@ -57,7 +57,7 @@ public: //! Checks if the given edge and this one have the same orientation. //! @param theOther edge to be checked against this one. - //! \retrun TRUE if edges have the same orientation, FALSE if not. + //! \return TRUE if edges have the same orientation, FALSE if not. Standard_Boolean IsSameOrientation(const BRepMesh_Edge& theOther) const { return BRepMesh_OrientedEdge::IsEqual(theOther); diff --git a/src/BRepMesh/BRepMesh_FaceChecker.hxx b/src/BRepMesh/BRepMesh_FaceChecker.hxx index b0597ed5ad..17a0c3fe18 100644 --- a/src/BRepMesh/BRepMesh_FaceChecker.hxx +++ b/src/BRepMesh/BRepMesh_FaceChecker.hxx @@ -25,7 +25,7 @@ //! Auxiliary class checking wires of target face for self-intersections. //! Explodes wires of discrete face on sets of segments using tessellation //! data stored in model. Each segment is then checked for intersection with -//! other ones. All collisions are registerd and returned as result of check. +//! other ones. All collisions are registered and returned as result of check. class BRepMesh_FaceChecker : public Standard_Transient { public: //! @name mesher API diff --git a/src/BRepMesh/BRepMesh_GeomTool.cxx b/src/BRepMesh/BRepMesh_GeomTool.cxx index c42a082aec..65efa22573 100644 --- a/src/BRepMesh/BRepMesh_GeomTool.cxx +++ b/src/BRepMesh/BRepMesh_GeomTool.cxx @@ -505,7 +505,7 @@ Standard_Integer BRepMesh_GeomTool::classifyPoint( if (thePointToCheck.IsEqual(thePoint1, aPrec) || thePointToCheck.IsEqual(thePoint2, aPrec)) { - return -1; //coinsides with an end point + return -1; //coincides with an end point } return 1; diff --git a/src/BRepMesh/BRepMesh_GeomTool.hxx b/src/BRepMesh/BRepMesh_GeomTool.hxx index 0ebeb843b1..071e964850 100644 --- a/src/BRepMesh/BRepMesh_GeomTool.hxx +++ b/src/BRepMesh/BRepMesh_GeomTool.hxx @@ -57,7 +57,7 @@ public: //! @param theLastParam last parameter of the curve. //! @param theLinDeflection linear deflection. //! @param theAngDeflection angular deflection. - //! @param theMinPointsNb minimum nuber of points to be produced. + //! @param theMinPointsNb minimum number of points to be produced. Standard_EXPORT BRepMesh_GeomTool( const BRepAdaptor_Curve& theCurve, const Standard_Real theFirstParam, @@ -77,7 +77,7 @@ public: //! @param theLastParam last parameter of the curve. //! @param theLinDeflection linear deflection. //! @param theAngDeflection angular deflection. - //! @param theMinPointsNb minimum nuber of points to be produced. + //! @param theMinPointsNb minimum number of points to be produced. Standard_EXPORT BRepMesh_GeomTool( const Handle(BRepAdaptor_Surface)& theSurface, const GeomAbs_IsoType theIsoType, diff --git a/src/BRepMesh/BRepMesh_IncrementalMesh.hxx b/src/BRepMesh/BRepMesh_IncrementalMesh.hxx index 61f1fcc443..bf1e05a2a0 100644 --- a/src/BRepMesh/BRepMesh_IncrementalMesh.hxx +++ b/src/BRepMesh/BRepMesh_IncrementalMesh.hxx @@ -53,7 +53,7 @@ public: //! @name mesher API const IMeshTools_Parameters& theParameters, const Message_ProgressRange& theRange = Message_ProgressRange()); - //! Performs meshing ot the shape. + //! Performs meshing of the shape. Standard_EXPORT virtual void Perform(const Message_ProgressRange& theRange = Message_ProgressRange()) Standard_OVERRIDE; //! Performs meshing using custom context; diff --git a/src/BRepMesh/BRepMesh_MeshTool.hxx b/src/BRepMesh/BRepMesh_MeshTool.hxx index 6d334647e6..88c0d071ea 100644 --- a/src/BRepMesh/BRepMesh_MeshTool.hxx +++ b/src/BRepMesh/BRepMesh_MeshTool.hxx @@ -151,7 +151,7 @@ public: Standard_EXPORT void CleanFrontierLinks(); //! Erases the given set of triangles. - //! Fills map of loop edges forming the countour surrounding the erased triangles. + //! Fills map of loop edges forming the contour surrounding the erased triangles. void EraseTriangles(const IMeshData::MapOfInteger& theTriangles, IMeshData::MapOfIntegerInteger& theLoopEdges); diff --git a/src/BRepMesh/BRepMesh_ModelBuilder.hxx b/src/BRepMesh/BRepMesh_ModelBuilder.hxx index f88a680829..3855a776ed 100644 --- a/src/BRepMesh/BRepMesh_ModelBuilder.hxx +++ b/src/BRepMesh/BRepMesh_ModelBuilder.hxx @@ -23,7 +23,7 @@ //! Class implements interface representing tool for discrete model building. //! //! The following statuses should be used by default: -//! Message_Done1 - model has been sucessfully built. +//! Message_Done1 - model has been successfully built. //! Message_Fail1 - empty shape. //! Message_Fail2 - model has not been build due to unexpected reason. class BRepMesh_ModelBuilder : public IMeshTools_ModelBuilder diff --git a/src/BRepMesh/BRepMesh_ModelHealer.hxx b/src/BRepMesh/BRepMesh_ModelHealer.hxx index 5e407c57a8..5d6d129432 100644 --- a/src/BRepMesh/BRepMesh_ModelHealer.hxx +++ b/src/BRepMesh/BRepMesh_ModelHealer.hxx @@ -32,7 +32,7 @@ //! tolerances of 3D space only. This means that there are no specific //! computations are made for the sake of determination of U and V tolerance. //! Registers intersections on edges forming the face's shape and tries to -//! amplify discrete represenation by decreasing of deflection for the target edge. +//! amplify discrete representation by decreasing of deflection for the target edge. //! Checks can be performed in parallel mode. class BRepMesh_ModelHealer : public IMeshTools_ModelAlgo { @@ -86,7 +86,7 @@ private: //! Connects pcurves of previous and current edge on the specified face //! according to topological connectivity. Uses next edge in order to - //! identify closest point in case of signle vertex shared between both + //! identify closest point in case of single vertex shared between both //! ends of edge (degenerative edge) Standard_Boolean connectClosestPoints( const IMeshData::IPCurveHandle& thePrevDEdge, diff --git a/src/BRepMesh/BRepMesh_ModelPreProcessor.cxx b/src/BRepMesh/BRepMesh_ModelPreProcessor.cxx index baa9c15b50..fd43b3f61c 100644 --- a/src/BRepMesh/BRepMesh_ModelPreProcessor.cxx +++ b/src/BRepMesh/BRepMesh_ModelPreProcessor.cxx @@ -172,7 +172,7 @@ namespace return aSteps.second; } - //! Splits 3D and all pcurves accoring using the specified step. + //! Splits 3D and all pcurves accordingly using the specified step. Standard_Boolean splitEdge(const IMeshData::IEdgePtr& theDEdge, const Standard_Real theDU) const { diff --git a/src/BRepMesh/BRepMesh_OrientedEdge.hxx b/src/BRepMesh/BRepMesh_OrientedEdge.hxx index 60007abfb8..5b64f407bb 100644 --- a/src/BRepMesh/BRepMesh_OrientedEdge.hxx +++ b/src/BRepMesh/BRepMesh_OrientedEdge.hxx @@ -64,7 +64,7 @@ public: //! Checks this and other edge for equality. //! @param theOther edge to be checked against this one. - //! @retrun TRUE if edges have the same orientation, FALSE if not. + //! @return TRUE if edges have the same orientation, FALSE if not. Standard_Boolean IsEqual(const BRepMesh_OrientedEdge& theOther) const { return (myFirstNode == theOther.myFirstNode && myLastNode == theOther.myLastNode); diff --git a/src/BRepMesh/BRepMesh_PairOfIndex.hxx b/src/BRepMesh/BRepMesh_PairOfIndex.hxx index 846b3d4cce..a3e7878501 100644 --- a/src/BRepMesh/BRepMesh_PairOfIndex.hxx +++ b/src/BRepMesh/BRepMesh_PairOfIndex.hxx @@ -69,7 +69,7 @@ public: return (myIndex[0] < 0); } - //! Returns number of initialized indeces. + //! Returns number of initialized indices. Standard_Integer Extent() const { return (myIndex[0] < 0 ? 0 : (myIndex[1] < 0 ? 1 : 2)); diff --git a/src/BRepMesh/BRepMesh_ShapeTool.cxx b/src/BRepMesh/BRepMesh_ShapeTool.cxx index 8189c32684..0b00be6df6 100644 --- a/src/BRepMesh/BRepMesh_ShapeTool.cxx +++ b/src/BRepMesh/BRepMesh_ShapeTool.cxx @@ -30,7 +30,7 @@ IMPLEMENT_STANDARD_RTTIEXT(BRepMesh_ShapeTool, Standard_Transient) namespace { - //! Auxilary struct to take a tolerance of edge. + //! Auxiliary struct to take a tolerance of edge. struct EdgeTolerance { static Standard_Real Get(const TopoDS_Shape& theEdge) @@ -39,7 +39,7 @@ namespace } }; - //! Auxilary struct to take a tolerance of vertex. + //! Auxiliary struct to take a tolerance of vertex. struct VertexTolerance { static Standard_Real Get(const TopoDS_Shape& theVertex) diff --git a/src/BRepMesh/BRepMesh_Triangulator.cxx b/src/BRepMesh/BRepMesh_Triangulator.cxx index 7d84feb019..1c2f698096 100644 --- a/src/BRepMesh/BRepMesh_Triangulator.cxx +++ b/src/BRepMesh/BRepMesh_Triangulator.cxx @@ -134,7 +134,7 @@ Standard_Boolean BRepMesh_Triangulator::Perform (NCollection_List //======================================================================= //function : addTriange34 -//purpose : auxilary for makeTrianglesUsingBRepMesh +//purpose : auxiliary for makeTrianglesUsingBRepMesh //======================================================================= void BRepMesh_Triangulator::addTriange34( const TColStd_SequenceOfInteger& theW, @@ -178,7 +178,7 @@ void BRepMesh_Triangulator::addTriange34( //======================================================================= //function : checkCondition -//purpose : auxilary for addTriange34 +//purpose : auxiliary for addTriange34 //======================================================================= Standard_Boolean BRepMesh_Triangulator::checkCondition( const int (&theNodes)[4], @@ -204,7 +204,7 @@ Standard_Boolean BRepMesh_Triangulator::prepareMeshStructure () myIndices = new IMeshData::VectorOfInteger (wireNodesNb(myWires)); myMeshStructure = new BRepMesh_DataStructureOfDelaun (new NCollection_IncAllocator); - // fill this structure created BRepMesh_Vertexes using 2d points recieved + // fill this structure created BRepMesh_Vertexes using 2d points received // by projection initial 3d point on plane. try { @@ -242,7 +242,7 @@ Standard_Boolean BRepMesh_Triangulator::prepareMeshStructure () //======================================================================= //function : triangulate -//purpose : auxilary +//purpose : auxiliary //======================================================================= Standard_Boolean BRepMesh_Triangulator::triangulate (NCollection_List& thePolyTriangles) { diff --git a/src/BRepMesh/BRepMesh_Triangulator.hxx b/src/BRepMesh/BRepMesh_Triangulator.hxx index ad56df37cc..b1538c4e24 100644 --- a/src/BRepMesh/BRepMesh_Triangulator.hxx +++ b/src/BRepMesh/BRepMesh_Triangulator.hxx @@ -31,7 +31,7 @@ class Message_Messenger; -//! Auxilary tool to generate triangulation +//! Auxiliary tool to generate triangulation class BRepMesh_Triangulator { public: @@ -51,7 +51,7 @@ public: const NCollection_List& theWires, const gp_Dir& theNorm); - //! Perfroms triangulation of source wires and stores triangles the the output list. + //! Performs triangulation of source wires and stores triangles the the output list. Standard_EXPORT Standard_Boolean Perform (NCollection_List& thePolyTriangles); //! Set messenger for output information @@ -65,12 +65,12 @@ public: private: - // auxilary for makeTrianglesUsingBRepMesh + // auxiliary for makeTrianglesUsingBRepMesh void addTriange34 ( const TColStd_SequenceOfInteger& theW, NCollection_List& thePolyTriangles); - // auxilary for addTriange34 + // auxiliary for addTriange34 Standard_Boolean checkCondition( const int (&theNodes)[4], const TColStd_SequenceOfInteger& theWire); @@ -78,7 +78,7 @@ private: // performs initialization of mesh data structure. Standard_Boolean prepareMeshStructure(); - // auxilary for triangulation + // auxiliary for triangulation Standard_Boolean triangulate (NCollection_List& thePolyTriangles); private: diff --git a/src/BRepMesh/delabella.cpp b/src/BRepMesh/delabella.cpp index c6e5260a19..c4b6f9cfb4 100644 --- a/src/BRepMesh/delabella.cpp +++ b/src/BRepMesh/delabella.cpp @@ -216,7 +216,7 @@ struct CDelaBella : IDelaBella int points = inp_verts; std::sort(vert_alloc, vert_alloc + points); - // rmove dups + // remove dups { int w = 0, r = 1; // skip initial no-dups block while (r < points && !Vert::overlap(vert_alloc + r, vert_alloc + w)) @@ -261,7 +261,7 @@ struct CDelaBella : IDelaBella else { if (errlog_proc) - errlog_proc(errlog_file, "[WRN] all input points are identical, returning signle point!\n"); + errlog_proc(errlog_file, "[WRN] all input points are identical, returning single point!\n"); first_hull_vert = vert_alloc + 0; vert_alloc[0].next = 0; } @@ -333,7 +333,7 @@ struct CDelaBella : IDelaBella // so we calc all signs... // why not testing sign of dot prod of 2 normals? - // that way we'd fall into precission problems + // that way we'd fall into precision problems Norm LvH = (*v - *last).cross(*head - *last); bool lvh = @@ -614,7 +614,7 @@ struct CDelaBella : IDelaBella Face* _f = hull; // 1. FIND FIRST VISIBLE FACE - // simply iterate around last vertex using last added triange adjecency info + // simply iterate around last vertex using last added triangle adjecency info while (_f->dot(*_q) <= 0) { _f = _f->Next(_p); @@ -725,8 +725,8 @@ struct CDelaBella : IDelaBella } // if add aEseq.Length()) //error occured: wire is not closed + if (ind > aEseq.Length()) //error occurred: wire is not closed break; aBB.Add(aNewWire, aCurEdge); diff --git a/src/BRepOffset/BRepOffset_MakeSimpleOffset.hxx b/src/BRepOffset/BRepOffset_MakeSimpleOffset.hxx index ab89b7e511..0f923234aa 100644 --- a/src/BRepOffset/BRepOffset_MakeSimpleOffset.hxx +++ b/src/BRepOffset/BRepOffset_MakeSimpleOffset.hxx @@ -110,10 +110,10 @@ public: //! Computes max safe offset value for the given tolerance. Standard_Real GetSafeOffset(const Standard_Real theExpectedToler); - //! Returnes result shape for the given one (if exists). + //! Returns result shape for the given one (if exists). Standard_EXPORT const TopoDS_Shape Generated(const TopoDS_Shape& theShape) const; - //! Returnes modified shape for the given one (if exists). + //! Returns modified shape for the given one (if exists). Standard_EXPORT const TopoDS_Shape Modified(const TopoDS_Shape& theShape) const; protected: diff --git a/src/BRepOffset/BRepOffset_Offset.hxx b/src/BRepOffset/BRepOffset_Offset.hxx index 8e25c559a8..38bbf0c369 100644 --- a/src/BRepOffset/BRepOffset_Offset.hxx +++ b/src/BRepOffset/BRepOffset_Offset.hxx @@ -60,7 +60,7 @@ public: //! //! Created(E) = E' //! with: E = an edge of - //! E' = the image of E in the offseting of + //! E' = the image of E in the offsetting of //! another face sharing E with a //! continuity at least G1 Standard_EXPORT BRepOffset_Offset(const TopoDS_Face& Face, const Standard_Real Offset, const TopTools_DataMapOfShapeShape& Created, const Standard_Boolean OffsetOutside = Standard_True, const GeomAbs_JoinType JoinType = GeomAbs_Arc); @@ -70,7 +70,7 @@ public: Standard_EXPORT BRepOffset_Offset(const TopoDS_Edge& Path, const TopoDS_Edge& Edge1, const TopoDS_Edge& Edge2, const Standard_Real Offset, const TopoDS_Edge& FirstEdge, const TopoDS_Edge& LastEdge, const Standard_Boolean Polynomial = Standard_False, const Standard_Real Tol = 1.0e-4, const GeomAbs_Shape Conti = GeomAbs_C1); //! Tol and Conti are only used if Polynomial is True - //! (Used to perfrom the approximation) + //! (Used to perform the approximation) Standard_EXPORT BRepOffset_Offset(const TopoDS_Vertex& Vertex, const TopTools_ListOfShape& LEdge, const Standard_Real Offset, const Standard_Boolean Polynomial = Standard_False, const Standard_Real Tol = 1.0e-4, const GeomAbs_Shape Conti = GeomAbs_C1); Standard_EXPORT void Init (const TopoDS_Face& Face, const Standard_Real Offset, const Standard_Boolean OffsetOutside = Standard_True, const GeomAbs_JoinType JoinType = GeomAbs_Arc); @@ -82,7 +82,7 @@ public: Standard_EXPORT void Init (const TopoDS_Edge& Path, const TopoDS_Edge& Edge1, const TopoDS_Edge& Edge2, const Standard_Real Offset, const TopoDS_Edge& FirstEdge, const TopoDS_Edge& LastEdge, const Standard_Boolean Polynomial = Standard_False, const Standard_Real Tol = 1.0e-4, const GeomAbs_Shape Conti = GeomAbs_C1); //! Tol and Conti are only used if Polynomial is True - //! (Used to perfrom the approximation) + //! (Used to perform the approximation) Standard_EXPORT void Init (const TopoDS_Vertex& Vertex, const TopTools_ListOfShape& LEdge, const Standard_Real Offset, const Standard_Boolean Polynomial = Standard_False, const Standard_Real Tol = 1.0e-4, const GeomAbs_Shape Conti = GeomAbs_C1); //! Only used in Rolling Ball. Pipe on Free Boundary diff --git a/src/BRepOffset/BRepOffset_Tool.hxx b/src/BRepOffset/BRepOffset_Tool.hxx index f49b10ec6c..fb96323615 100644 --- a/src/BRepOffset/BRepOffset_Tool.hxx +++ b/src/BRepOffset/BRepOffset_Tool.hxx @@ -183,8 +183,8 @@ public: //! 1 - Remove all the free boundary and the faces //! connex to such edges. //! 2 - Remove all the shapes not valid in the result - //! (according to the side of offseting) - //! in this verion only the first point is implemented. + //! (according to the side of offsetting) + //! in this version only the first point is implemented. Standard_EXPORT static TopoDS_Shape Deboucle3D (const TopoDS_Shape& S, const TopTools_MapOfShape& Boundary); diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.hxx b/src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.hxx index 419d29eade..8fef1b0227 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.hxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.hxx @@ -160,8 +160,8 @@ public: //! the non-empty constructor or the Init function. Standard_EXPORT const TopoDS_Shape& ProblematicShape() const; - //! Returns an error status when an error has occured - //! (Face, Edge or Vertex recomputaion problem). + //! Returns an error status when an error has occurred + //! (Face, Edge or Vertex recomputation problem). //! Otherwise returns Draft_NoError. The method may be //! called if AddDone returns Standard_False, or when //! IsDone returns Standard_False. diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx b/src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx index 4e2ddb957f..bf119d1871 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx @@ -32,8 +32,7 @@ class TopoDS_Shape; class TopoDS_Edge; -//! Provides methods to identify contigous boundaries -//! for continuity control (C0, C1, ...) +//! Provides methods to identify contiguous boundaries for continuity control (C0, C1, ...) //! //! Use this function as following: //! - create an object @@ -91,8 +90,7 @@ public: //! further shapes subsequently and then to repeat the call to Perform. Standard_EXPORT void Perform(); - //! Gives the number of edges (free edges + contigous - //! edges + multiple edge) + //! Gives the number of edges (free edges + contiguous edges + multiple edge) Standard_EXPORT Standard_Integer NbEdges() const; //! Returns the number of contiguous edges found by the diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx b/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx index 93e781b68f..f2ea8cb646 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx @@ -66,7 +66,7 @@ public: Standard_EXPORT BRepOffsetAPI_MakeOffset(const TopoDS_Wire& Spine, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); - //! Initialize the evaluation of Offseting. + //! Initialize the evaluation of Offsetting. Standard_EXPORT void Init (const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); //! Initializes the algorithm to construct parallels to the wire Spine. diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx b/src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx index 48786e44e8..18e6c56212 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx @@ -118,9 +118,9 @@ public: //! Possibilities are : //! - Give one or sevral section //! - Give one profile and an homotetic law. - //! - Automatic compute of correspondance between spine, and section + //! - Automatic compute of correspondence between spine, and section //! on the sweeped shape - //! - correspondance between spine, and section on the sweeped shape + //! - correspondence between spine, and section on the sweeped shape //! defined by a vertex of the spine Standard_EXPORT void SetMode (const TopoDS_Wire& AuxiliarySpine, const Standard_Boolean CurvilinearEquivalence, const BRepFill_TypeOfContact KeepContact = BRepFill_NoContact); @@ -230,7 +230,7 @@ public: Standard_EXPORT void SetTransitionMode (const BRepBuilderAPI_TransitionMode Mode = BRepBuilderAPI_Transformed); //! Simulates the resulting shape by calculating its - //! cross-sections. The spine is devided by this + //! cross-sections. The spine is divided by this //! cross-sections into (NumberOfSection - 1) equal //! parts, the number of cross-sections is //! NumberOfSection. The cross-sections are wires and diff --git a/src/BRepPrim/BRepPrim_GWedge.hxx b/src/BRepPrim/BRepPrim_GWedge.hxx index d21cc40d98..8176368b82 100644 --- a/src/BRepPrim/BRepPrim_GWedge.hxx +++ b/src/BRepPrim/BRepPrim_GWedge.hxx @@ -193,7 +193,7 @@ public: //! direction. Standard_EXPORT gp_Pnt Point (const BRepPrim_Direction d1, const BRepPrim_Direction d2, const BRepPrim_Direction d3); - //! Checkes a shape on degeneracy + //! Checks a shape on degeneracy //! @return TRUE if a shape is degenerated Standard_EXPORT Standard_Boolean IsDegeneratedShape(); diff --git a/src/BRepPrim/BRepPrim_Sphere.hxx b/src/BRepPrim/BRepPrim_Sphere.hxx index f2d429c036..f3df9fe1f7 100644 --- a/src/BRepPrim/BRepPrim_Sphere.hxx +++ b/src/BRepPrim/BRepPrim_Sphere.hxx @@ -42,9 +42,9 @@ public: //! raised if the radius is < Resolution. Standard_EXPORT BRepPrim_Sphere(const Standard_Real Radius); - //! Creates a Sphere with Center and Radius. Axes are - //! the referrence axes. This is the STEP - //! constructor. + //! Creates a Sphere with Center and Radius. + //! Axes are the reference axes. + //! This is the STEP constructor. Standard_EXPORT BRepPrim_Sphere(const gp_Pnt& Center, const Standard_Real Radius); //! Creates a sphere with given axes system. diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeRevol.cxx b/src/BRepPrimAPI/BRepPrimAPI_MakeRevol.cxx index b830fde662..ec5a69a96e 100644 --- a/src/BRepPrimAPI/BRepPrimAPI_MakeRevol.cxx +++ b/src/BRepPrimAPI/BRepPrimAPI_MakeRevol.cxx @@ -208,13 +208,13 @@ void BRepPrimAPI_MakeRevol::Build() { if (anIt.Value().IsEqual(anE)) { - //First occurence of initial deg. edge is not replaced + //First occurrence of initial deg. edge is not replaced aCEL.Remove(anIt); break; } if (anIt.Value().Orientation() == anE.Orientation()) { - //All other occurences of anE are replaced by any copy + //All other occurrences of anE are replaced by any copy //with suitable orientation isReplaced = Standard_True; aSubs.Replace(anE, anIt.Value()); @@ -325,7 +325,7 @@ Standard_Boolean BRepPrimAPI_MakeRevol::CheckValidity(const TopoDS_Shape& theSha Handle(GeomAdaptor_Curve) HC = new GeomAdaptor_Curve(); HC->Load(C, First, Last); - //Checking coinsidence axe of revolution and basis curve + //Checking coincidence axe of revolution and basis curve //This code is taken directly from GeomAdaptor_SurfaceOfRevolution Standard_Integer Ratio = 1; Standard_Real Dist; @@ -336,10 +336,10 @@ Standard_Boolean BRepPrimAPI_MakeRevol::CheckValidity(const TopoDS_Shape& theSha Ratio++; } while (Dist < Precision::Confusion() && Ratio < 100); // - if (Ratio >= 100) // edge coinsides with axes + if (Ratio >= 100) // edge coincides with axes { IsValid = Standard_True; //Such edges are allowed by revol algo and treated - //by special way, so they must be concidered as valid + //by special way, so they must be considered as valid } else { diff --git a/src/BRepSweep/BRepSweep_Iterator.hxx b/src/BRepSweep/BRepSweep_Iterator.hxx index 81a1cb99c1..1470c91143 100644 --- a/src/BRepSweep/BRepSweep_Iterator.hxx +++ b/src/BRepSweep/BRepSweep_Iterator.hxx @@ -42,7 +42,7 @@ public: Standard_EXPORT BRepSweep_Iterator(); - //! Resest the Iterator on sub-shapes of . + //! Reset the Iterator on sub-shapes of . Standard_EXPORT void Init (const TopoDS_Shape& aShape); //! Returns True if there is a current sub-shape. diff --git a/src/BRepSweep/BRepSweep_NumLinearRegularSweep.hxx b/src/BRepSweep/BRepSweep_NumLinearRegularSweep.hxx index 9b23b77896..bf853d1da7 100644 --- a/src/BRepSweep/BRepSweep_NumLinearRegularSweep.hxx +++ b/src/BRepSweep/BRepSweep_NumLinearRegularSweep.hxx @@ -58,7 +58,7 @@ class Sweep_NumShape; //! The topology is like a grid of shapes. Each shape //! of the grid must be addressable without confusion //! by one or two objects from the generating or -//! directing shapes. Here are exemples of correct +//! directing shapes. Here are examples of correct //! associations to address: //! //! - a vertex : GenVertex - DirVertex @@ -75,7 +75,7 @@ class Sweep_NumShape; //! //! The method Has... is given because in some special //! cases, a vertex, an edge or a face may be -//! geometricaly nonexistant or not usefull. +//! geometricaly nonexistant or not useful. class BRepSweep_NumLinearRegularSweep { public: @@ -150,15 +150,15 @@ public: Standard_EXPORT virtual Standard_Boolean GDDShapeIsToAdd (const TopoDS_Shape& aNewShape, const TopoDS_Shape& aNewSubShape, const TopoDS_Shape& aGenS, const Sweep_NumShape& aDirS, const Sweep_NumShape& aSubDirS) const = 0; //! In some particular cases the topology of a - //! generated face must be composed of independant + //! 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, const TopoDS_Shape& aGenS, const TopoDS_Shape& aSubGenS, const Sweep_NumShape& aDirS) const = 0; //! In some particular cases the topology of a - //! generated Shell must be composed of independant + //! generated Shell must be composed of independent //! closed Shells, in this case this function returns - //! a Compound of independant Shells. + //! a Compound of independent Shells. Standard_EXPORT virtual TopoDS_Shape SplitShell (const TopoDS_Shape& aNewShape) const; //! Called to propagate the continuity of every vertex diff --git a/src/BRepSweep/BRepSweep_Rotation.hxx b/src/BRepSweep/BRepSweep_Rotation.hxx index 2adc5e4183..9ffb9c45e2 100644 --- a/src/BRepSweep/BRepSweep_Rotation.hxx +++ b/src/BRepSweep/BRepSweep_Rotation.hxx @@ -112,16 +112,16 @@ public: Standard_EXPORT Standard_Boolean GDDShapeIsToAdd (const TopoDS_Shape& aNewShape, const TopoDS_Shape& aNewSubShape, const TopoDS_Shape& aGenS, const Sweep_NumShape& aDirS, const Sweep_NumShape& aSubDirS) const Standard_OVERRIDE; //! In some particular cases the topology of a - //! generated face must be composed of independant + //! generated face must be composed of independent //! closed wires, in this case this function returns - //! true. The only case in whitch the function may + //! true. The only case in which the function may //! return true is a planar face in a closed revol. Standard_EXPORT Standard_Boolean SeparatedWires (const TopoDS_Shape& aNewShape, const TopoDS_Shape& aNewSubShape, const TopoDS_Shape& aGenS, const TopoDS_Shape& aSubGenS, const Sweep_NumShape& aDirS) const Standard_OVERRIDE; //! In some particular cases the topology of a - //! generated Shell must be composed of independant + //! generated Shell must be composed of independent //! closed Shells, in this case this function returns - //! a Compound of independant Shells. + //! a Compound of independent Shells. Standard_EXPORT virtual TopoDS_Shape SplitShell (const TopoDS_Shape& aNewShape) const Standard_OVERRIDE; //! Returns true if aDirS and aGenS addresses a diff --git a/src/BRepSweep/BRepSweep_Translation.hxx b/src/BRepSweep/BRepSweep_Translation.hxx index 1f06f805c3..4ff7c96bb1 100644 --- a/src/BRepSweep/BRepSweep_Translation.hxx +++ b/src/BRepSweep/BRepSweep_Translation.hxx @@ -113,7 +113,7 @@ public: Standard_EXPORT Standard_Boolean GDDShapeIsToAdd (const TopoDS_Shape& aNewShape, const TopoDS_Shape& aNewSubShape, const TopoDS_Shape& aGenS, const Sweep_NumShape& aDirS, const Sweep_NumShape& aSubDirS) const; //! In some particular cases the topology of a - //! generated face must be composed of independant + //! generated face must be composed of independent //! closed wires, in this case this function returns //! true. //! Here it always returns false. diff --git a/src/BRepSweep/BRepSweep_Trsf.hxx b/src/BRepSweep/BRepSweep_Trsf.hxx index ce410f8c19..0f2c4b245f 100644 --- a/src/BRepSweep/BRepSweep_Trsf.hxx +++ b/src/BRepSweep/BRepSweep_Trsf.hxx @@ -40,7 +40,7 @@ class TopLoc_Location; //! proposed : //! //! - sharing basis elements (the generatrice can be -//! modified , for exemples PCurves can be added on +//! modified , for example PCurves can be added on //! faces); //! //! - copying everything. @@ -56,7 +56,7 @@ public: //! be called in the initialize. Standard_EXPORT void Init(); - //! function called to analize the way of construction + //! function called to analyze the way of construction //! of the shapes generated by aGenS and aDirV. Standard_EXPORT Standard_Boolean Process (const TopoDS_Shape& aGenS, const Sweep_NumShape& aDirV); @@ -120,7 +120,7 @@ public: Standard_EXPORT virtual Standard_Boolean GDDShapeIsToAdd (const TopoDS_Shape& aNewShape, const TopoDS_Shape& aNewSubShape, const TopoDS_Shape& aGenS, const Sweep_NumShape& aDirS, const Sweep_NumShape& aSubDirS) const = 0; //! In some particular cases the topology of a - //! generated face must be composed of independant + //! 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, const TopoDS_Shape& aGenS, const TopoDS_Shape& aSubGenS, const Sweep_NumShape& aDirS) const = 0; diff --git a/src/BRepTest/BRepTest_DraftAngleCommands.cxx b/src/BRepTest/BRepTest_DraftAngleCommands.cxx index 42d300fb3e..34916d9c45 100644 --- a/src/BRepTest/BRepTest_DraftAngleCommands.cxx +++ b/src/BRepTest/BRepTest_DraftAngleCommands.cxx @@ -227,7 +227,7 @@ static Standard_Integer draft (Draw_Interpretor& di, if (Inside==1) KeepInside = Standard_False; MkDraft.Perform(Surf, KeepInside); } - else { // by Lenght + else { // by Length Standard_Real L = Draw::Atof(a[7]); if (L > 1.e-7) { MkDraft.Perform(L); diff --git a/src/BRepTest/BRepTest_SweepCommands.cxx b/src/BRepTest/BRepTest_SweepCommands.cxx index 6b54ac18e8..c7f2ddc5c5 100644 --- a/src/BRepTest/BRepTest_SweepCommands.cxx +++ b/src/BRepTest/BRepTest_SweepCommands.cxx @@ -271,7 +271,7 @@ Standard_Integer evolved(Draw_Interpretor& di, Standard_Integer n, const char** di << " Make evolved profile on spine.\n"; di << " -solid means make closed solid.\n"; di << " -v means use alternative algorithm (volume mode).\n"; - di << " -a means referencial CS is automatically computed, otherwise global CS is used. \n"; + di << " -a means referential CS is automatically computed, otherwise global CS is used. \n"; di << " -t sets the tolerance.\n"; di << " -parallel turns on parallel execution.\n"; return 0; @@ -760,12 +760,12 @@ static Standard_Integer buildsweep(Draw_Interpretor& di, { if (n == 1) { di << "build sweep result [-M/-C/-R] [-S] [tol] : options are\n"; - di << " -M : Discontinuities are treated by Modfication of\n"; + di << " -M : Discontinuities are treated by Modification of\n"; di << " the sweeping mode : it is the default\n"; di << " -C : Discontinuities are treated like Right Corner\n"; - di << " Treatement is Extent && Intersect\n"; + di << " Treatment is Extent && Intersect\n"; di << " -R : Discontinuities are treated like Round Corner\n"; - di << " Treatement is Intersect and Fill\n"; + di << " Treatment is Intersect and Fill\n"; di << " -S : To build a Solid\n"; return 0; } diff --git a/src/BRepTools/BRepTools.hxx b/src/BRepTools/BRepTools.hxx index 9744e3083e..48e93ac28f 100644 --- a/src/BRepTools/BRepTools.hxx +++ b/src/BRepTools/BRepTools.hxx @@ -141,7 +141,7 @@ public: //! Update a compound (nothing is done) Standard_EXPORT static void Update (const TopoDS_Compound& C); - //! Update a shape, call the corect update. + //! Update a shape, call the correct update. Standard_EXPORT static void Update (const TopoDS_Shape& S); //! For each edge of the face reset the UV points diff --git a/src/BRepTools/BRepTools_Modifier.cxx b/src/BRepTools/BRepTools_Modifier.cxx index fac94b487d..5022e4ee58 100644 --- a/src/BRepTools/BRepTools_Modifier.cxx +++ b/src/BRepTools/BRepTools_Modifier.cxx @@ -412,7 +412,7 @@ Standard_Boolean BRepTools_Modifier::Rebuild { // rem dub 16/09/97 : Make constant topology or not make at all. // Do not make if CopySurface = 1 - // Atention, TRUE sewing edges (RealyClosed) + // Atention, TRUE sewing edges (ReallyClosed) // stay even if CopySurface is true. // check that edge contains two pcurves on this surface: diff --git a/src/BRepTools/BRepTools_Quilt.hxx b/src/BRepTools/BRepTools_Quilt.hxx index ac8d9e29e0..871ea7c23c 100644 --- a/src/BRepTools/BRepTools_Quilt.hxx +++ b/src/BRepTools/BRepTools_Quilt.hxx @@ -89,7 +89,7 @@ public: //! vertex, an edge or a face) Standard_EXPORT Standard_Boolean IsCopied (const TopoDS_Shape& S) const; - //! Returns the shape substitued to in the Quilt. + //! Returns the shape substituted to in the Quilt. Standard_EXPORT const TopoDS_Shape& Copy (const TopoDS_Shape& S) const; //! Returns a Compound of shells made from the current diff --git a/src/BRepTools/BRepTools_ShapeSet.cxx b/src/BRepTools/BRepTools_ShapeSet.cxx index f26089109c..bdb87cd36f 100644 --- a/src/BRepTools/BRepTools_ShapeSet.cxx +++ b/src/BRepTools/BRepTools_ShapeSet.cxx @@ -77,7 +77,7 @@ // Workaround is following: Now we don`t use tellg for get position in stream. // Now able to read file (when reading TopAbs_FACE) without tellg. // We simple check the next string if there are value that equal 2 -// (It means a parametr for triangulation). +// (It means a parameter for triangulation). //======================================================================= diff --git a/src/BRepTools/BRepTools_Substitution.hxx b/src/BRepTools/BRepTools_Substitution.hxx index 1e56273e4d..9e8e22cf8b 100644 --- a/src/BRepTools/BRepTools_Substitution.hxx +++ b/src/BRepTools/BRepTools_Substitution.hxx @@ -69,7 +69,7 @@ public: //! Returns True if has been replaced . Standard_EXPORT Standard_Boolean IsCopied (const TopoDS_Shape& S) const; - //! Returns the set of shapes substitued to . + //! Returns the set of shapes substituted to . Standard_EXPORT const TopTools_ListOfShape& Copy (const TopoDS_Shape& S) const; diff --git a/src/BSplCLib/BSplCLib.cxx b/src/BSplCLib/BSplCLib.cxx index 8bca724dda..c35d193413 100644 --- a/src/BSplCLib/BSplCLib.cxx +++ b/src/BSplCLib/BSplCLib.cxx @@ -1186,7 +1186,7 @@ void BSplCLib::Bohm(const Standard_Real U, const Standard_Integer Dimension, Standard_Real& Poles) { - // First phase independant of U, compute the poles of the derivatives + // First phase independent of U, compute the poles of the derivatives Standard_Integer i,j,iDim,min,Dmi,DDmi,jDmi,Degm1; Standard_Real *knot = &Knots, *pole, coef, *tbis, *psav, *psDD, *psDDmDim; psav = &Poles; @@ -1816,7 +1816,7 @@ Standard_Boolean BSplCLib::PrepareInsertKnots } if (Periodic) { - //for periodic B-Spline the requirement is that multiplicites of the first + //for periodic B-Spline the requirement is that multiplicities of the first //and last knots must be equal (see Geom_BSplineCurve constructor for //instance); //respectively AddMults() must meet this requirement if AddKnots() contains @@ -2677,7 +2677,7 @@ void BSplCLib::PrepareUnperiodize NbKnots++; } // We must add exactly until Degree + 1 -> - // Supress the excedent. + // Suppress the excedent. if ( sigma > Degree + 1) NbPoles -= sigma - Degree - 1; @@ -2693,7 +2693,7 @@ void BSplCLib::PrepareUnperiodize NbKnots++; } // We must add exactly until Degree + 1 -> - // Supress the excedent. + // Suppress the excedent. if ( sigma > Degree + 1) NbPoles -= sigma - Degree - 1; } diff --git a/src/BSplCLib/BSplCLib.hxx b/src/BSplCLib/BSplCLib.hxx index 83333d802e..7d89644306 100644 --- a/src/BSplCLib/BSplCLib.hxx +++ b/src/BSplCLib/BSplCLib.hxx @@ -383,7 +383,7 @@ public: //! Used as argument for a flatknots evaluation. static TColStd_Array1OfInteger* NoMults(); - //! Stores in LK the usefull knots for the BoorSchem + //! Stores in LK the useful knots for the BoorSchem //! on the span Knots(Index) - Knots(Index+1) Standard_EXPORT static void BuildKnots (const Standard_Integer Degree, const Standard_Integer Index, const Standard_Boolean Periodic, const TColStd_Array1OfReal& Knots, const TColStd_Array1OfInteger* Mults, Standard_Real& LK); diff --git a/src/BSplCLib/BSplCLib_CurveComputation.gxx b/src/BSplCLib/BSplCLib_CurveComputation.gxx index 1ebee54a48..e56b5df13c 100644 --- a/src/BSplCLib/BSplCLib_CurveComputation.gxx +++ b/src/BSplCLib/BSplCLib_CurveComputation.gxx @@ -620,7 +620,7 @@ BSplCLib::SolveBandedSystem(const math_Matrix& Matrix, // will be homogeneous that is no division or multiplication // by weigths will happen. On the contrary if HomogeneousFlag // is 0 then the poles will be multiplied first by the weights -// and after interpolation they will be devided by the weights +// and after interpolation they will be divided by the weights //======================================================================= Standard_Integer diff --git a/src/BiTgte/BiTgte_Blend.cxx b/src/BiTgte/BiTgte_Blend.cxx index 29f58c8215..e8f28e18f8 100644 --- a/src/BiTgte/BiTgte_Blend.cxx +++ b/src/BiTgte/BiTgte_Blend.cxx @@ -234,7 +234,7 @@ static void KPartCurve3d(TopoDS_Edge Edge, TopLoc_Location Loc; Standard_Real Tol = Precision::Confusion(); - // Seach only isos on analytical surfaces. + // Search only isos on analytical surfaces. Geom2dAdaptor_Curve C(Curve); GeomAdaptor_Surface S(Surf); GeomAbs_CurveType CTy = C.GetType(); diff --git a/src/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.hxx b/src/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.hxx index 7b9325af5c..f613ff7d74 100644 --- a/src/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.hxx +++ b/src/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.hxx @@ -97,7 +97,7 @@ protected: const Standard_Boolean isMess = Standard_False, const Message_ProgressRange& theRange = Message_ProgressRange()); - //! checks the shapes section can be correctly retreived. + //! checks the shapes section can be correctly retrieved. Standard_EXPORT virtual void CheckShapeSection (const Storage_Position& thePos, Standard_IStream& theIS); //! clears the reading-cash data in drivers if any. diff --git a/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx b/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx index a682929815..aa67de6f37 100644 --- a/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx +++ b/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx @@ -387,7 +387,7 @@ void BinLDrivers_DocumentStorageDriver::FirstPass //======================================================================= //function : WriteInfoSection -//purpose : Write info secton using FSD_BinaryFile driver +//purpose : Write info section using FSD_BinaryFile driver //======================================================================= #define START_TYPES "START_TYPES" diff --git a/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx b/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx index 096afdbc1f..9862219e39 100644 --- a/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx +++ b/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx @@ -102,7 +102,7 @@ private: //! attributes to store Standard_EXPORT Standard_Boolean FirstPassSubTree (const TDF_Label& L, TDF_LabelList& ListOfEmptyL); - //! Write info secton using FSD_BinaryFile driver + //! Write info section using FSD_BinaryFile driver Standard_EXPORT void WriteInfoSection (const Handle(CDM_Document)& theDocument, Standard_OStream& theOStream); Standard_EXPORT void UnsupportedAttrMsg (const Handle(Standard_Type)& theType); diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.cxx b/src/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.cxx index dfee78838a..99a5854199 100644 --- a/src/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.cxx +++ b/src/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.cxx @@ -119,7 +119,7 @@ Standard_Boolean BinMXCAFDoc_LocationDriver::Translate(const BinObjMgt_Persisten } else return Standard_False; } else { - // read the datum's trasformation + // read the datum's transformation gp_Trsf aTrsf; Standard_Real aScaleFactor; diff --git a/src/Bisector/Bisector_BisecAna.cxx b/src/Bisector/Bisector_BisecAna.cxx index 911f015929..c5d509b880 100644 --- a/src/Bisector/Bisector_BisecAna.cxx +++ b/src/Bisector/Bisector_BisecAna.cxx @@ -67,7 +67,7 @@ Bisector_BisecAna::Bisector_BisecAna() } //============================================================================= -// calcul the distance betweem the point and the bissectrice. + +// calcul the distance between the point and the bissectrice. + // and orientation of the bissectrice. + // apoint : point of passage. + // abisector : calculated bissectrice. + @@ -345,12 +345,12 @@ void Bisector_BisecAna::Perform(const Handle(Geom2d_Curve)& afirstcurve , // gp_Dir2d(circle1.Location().X() - PMil.X(), // circle1.Location().Y() - PMil.Y())); if (!circle1.Location().IsEqual(PMil,PreConf)) { - // PMil doesn't coinside with the circle location. + // PMil doesn't coincide with the circle location. line = gp_Lin2d(PMil, gp_Dir2d(circle1.Location().X() - PMil.X(), circle1.Location().Y() - PMil.Y())); } else if (radius1 >= PreConf) { - // PMil coinsides with the circle location and radius is greater then 0. + // PMil coincides with the circle location and radius is greater then 0. line = gp_Lin2d(circle1.Location(), gp_Dir2d(P1.Y() - circle1.Location().Y(), circle1.Location().X() - P1.X())); diff --git a/src/BndLib/BndLib_AddSurface.cxx b/src/BndLib/BndLib_AddSurface.cxx index d1da6be0f1..f36c72749b 100644 --- a/src/BndLib/BndLib_AddSurface.cxx +++ b/src/BndLib/BndLib_AddSurface.cxx @@ -348,7 +348,7 @@ void BndLib_AddSurface::Add(const Adaptor3d_Surface& S, { // Bezier surface: // All of poles used for any parameter, - // thats why in case of trimmed parameters handled by grid algorithm. + // that's why in case of trimmed parameters handled by grid algorithm. if (Abs(UMin-S.FirstUParameter()) > PTol || Abs(VMin-S.FirstVParameter()) > PTol || diff --git a/src/CDF/CDF_Application.hxx b/src/CDF/CDF_Application.hxx index d8ab7573b7..b4871f4251 100644 --- a/src/CDF/CDF_Application.hxx +++ b/src/CDF/CDF_Application.hxx @@ -97,7 +97,7 @@ public: //! //! Handle(CDM_Document) theDocument=myApplication->Retrieve("|user|cascade","box"); //! - //! Since the version is not specified in this syntax, the latest wil be used. + //! Since the version is not specified in this syntax, the latest will be used. //! A link is kept with the database through an instance of CDM_MetaData Standard_EXPORT Handle(CDM_Document) Retrieve (const TCollection_ExtendedString& aFolder, diff --git a/src/CDF/CDF_MetaDataDriver.hxx b/src/CDF/CDF_MetaDataDriver.hxx index 6c9e7ce51e..3987b6f67c 100644 --- a/src/CDF/CDF_MetaDataDriver.hxx +++ b/src/CDF/CDF_MetaDataDriver.hxx @@ -53,8 +53,8 @@ public: Standard_EXPORT virtual TCollection_ExtendedString BuildFileName (const Handle(CDM_Document)& aDocument) = 0; - //! this methods is usefull if the name of an object -- - //! depends on the metadatadriver. For example a Driver + //! this method is useful if the name of an object -- + //! depends on the metadatadriver. For example a Driver //! -- based on the operating system can choose to add //! the extension of file to create to the object. Standard_EXPORT virtual TCollection_ExtendedString SetName (const Handle(CDM_Document)& aDocument, const TCollection_ExtendedString& aName); diff --git a/src/CDM/CDM_Document.hxx b/src/CDM/CDM_Document.hxx index 4be2f56c5a..3b819486d8 100644 --- a/src/CDM/CDM_Document.hxx +++ b/src/CDM/CDM_Document.hxx @@ -213,8 +213,8 @@ public: //! Returns empty sequence if no comments are associated. Standard_EXPORT void Comments (TColStd_SequenceOfExtendedString& aComments) const; - //! returns the first of associated comments. By defaut - //! the comment is an empty string. + //! Returns the first of associated comments. + //! By default the comment is an empty string. Standard_EXPORT Standard_ExtString Comment() const; Standard_EXPORT Standard_Boolean IsStored() const; @@ -244,10 +244,9 @@ public: //! defines the name under which the object should be stored. Standard_EXPORT void SetRequestedName (const TCollection_ExtendedString& aName); - //! determines under which the document is going to be - //! store. By default the name of the document wil be -- - //! used. If the document has no name its presentation - //! will be used. + //! Determines under which the document is going to be store. + //! By default the name of the document will be used. + //! If the document has no name its presentation will be used. Standard_EXPORT TCollection_ExtendedString RequestedName(); Standard_EXPORT void SetRequestedPreviousVersion (const TCollection_ExtendedString& aPreviousVersion); diff --git a/src/CPnts/CPnts_AbscissaPoint.cxx b/src/CPnts/CPnts_AbscissaPoint.cxx index 0d1f38faab..082a08a161 100644 --- a/src/CPnts/CPnts_AbscissaPoint.cxx +++ b/src/CPnts/CPnts_AbscissaPoint.cxx @@ -20,7 +20,7 @@ // calculate the total length of the curve // calculate an approached point by assimilating the curve to a staight line // calculate the length of the curve between the start point and the approached point -// by succsessive iteration find the point and its associated parameter +// by successive iteration find the point and its associated parameter // call to FunctionRoot #include diff --git a/src/CPnts/CPnts_AbscissaPoint.hxx b/src/CPnts/CPnts_AbscissaPoint.hxx index f69e5ab783..a39a1f9159 100644 --- a/src/CPnts/CPnts_AbscissaPoint.hxx +++ b/src/CPnts/CPnts_AbscissaPoint.hxx @@ -144,9 +144,9 @@ public: Standard_EXPORT void Perform (const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Ui, const Standard_Real Resolution); //! Computes the point at the distance of - //! the curve; performs more appropriate tolerance managment; + //! the curve; performs more appropriate tolerance management; //! to use this method in right way it is necessary to call - //! empty consructor. then call method Init with + //! empty constructor. then call method Init with //! Tolerance = Resolution, then call AdvPermorm. //! U0 is the parameter of the point from which the distance //! is measured and Ui is the starting value for the iterative diff --git a/src/CPnts/CPnts_MyRootFunction.cxx b/src/CPnts/CPnts_MyRootFunction.cxx index 6e2d94eb84..b990af0d70 100644 --- a/src/CPnts/CPnts_MyRootFunction.cxx +++ b/src/CPnts/CPnts_MyRootFunction.cxx @@ -30,7 +30,7 @@ void CPnts_MyRootFunction::Init(const Standard_Real X0, { myX0 = X0; myL = L; - myTol = -1; //to supress the tolerance + myTol = -1; //to suppress the tolerance } void CPnts_MyRootFunction::Init(const Standard_Real X0, diff --git a/src/CPnts/CPnts_UniformDeflection.cxx b/src/CPnts/CPnts_UniformDeflection.cxx index 447b90959f..d58cfbcf98 100644 --- a/src/CPnts/CPnts_UniformDeflection.cxx +++ b/src/CPnts/CPnts_UniformDeflection.cxx @@ -144,7 +144,7 @@ void CPnts_UniformDeflection::Perform() NormD2 = V2.CrossMagnitude(V1) / NormD1; // passing of arrow starting from which the redivision is done is arbitrary - // probably it will be necessary to readjust it (differenciate the first point + // probably it will be necessary to readjust it (differentiate the first point // from the others) this test does not work on the points of inflexion if (NormD2 > myDeflection / 5.0) { diff --git a/src/CSLib/CSLib.hxx b/src/CSLib/CSLib.hxx index 8f0cb94480..f2b6d670f1 100644 --- a/src/CSLib/CSLib.hxx +++ b/src/CSLib/CSLib.hxx @@ -62,7 +62,7 @@ public: //! If there is a singularity on the surface the previous method //! cannot compute the local normal. - //! This method computes an approched normal direction of a surface. + //! This method computes an approached normal direction of a surface. //! It does a limited development and needs the second derivatives //! on the surface as input data. //! It computes the normal as follow : @@ -83,7 +83,7 @@ public: //! . if DNu/DNv or DNv/DNu is lower or equal than Real Epsilon //! Done = False, the normal is undefined //! . if DNu IsNull and DNv is Null Done = False, there is an - //! indetermination and we should do a limited developpement at + //! indetermination and we should do a limited development at //! order 2 (it means that we cannot omit Eps). //! . if DNu Is not Null and DNv Is not Null Done = False, there are //! an infinity of normals at the considered point on the surface. diff --git a/src/ChFi2d/ChFi2d.hxx b/src/ChFi2d/ChFi2d.hxx index 0ddf3523bf..a37b4b91be 100644 --- a/src/ChFi2d/ChFi2d.hxx +++ b/src/ChFi2d/ChFi2d.hxx @@ -43,7 +43,7 @@ class ChFi2d_Builder; //! the fillet edge for any type of edges including //! ellipses and b-splines. //! The edges may even have no common point. -//! ChFi2d_ChamferAPI - an algoroithm for construction of chamfers +//! ChFi2d_ChamferAPI - an algorithm for construction of chamfers //! between two linear edges of a plane. //! //! The algorithms ChFi2d_AnaFilletAlgo and ChFi2d_FilletAlgo may be used directly diff --git a/src/ChFi2d/ChFi2d_ConstructionError.hxx b/src/ChFi2d/ChFi2d_ConstructionError.hxx index 91067fd87c..aecba4a44d 100644 --- a/src/ChFi2d/ChFi2d_ConstructionError.hxx +++ b/src/ChFi2d/ChFi2d_ConstructionError.hxx @@ -17,29 +17,23 @@ #ifndef _ChFi2d_ConstructionError_HeaderFile #define _ChFi2d_ConstructionError_HeaderFile -//! error that can occur during the -//! fillet construction on planar wire//! the face is not planar//! the face is null//! the two faces used for the initialisation are -//! uncompatible.//! the parameters as distances or angle for -//! chamfer are less or equal to zero.//! the initialization has been succesfull.//! the algorithm could not find a solution.//! the vertex given to locate the fillet or the -//! chamfer is not connected to 2 edges.//! the two edges connected to the vertex are tangent.//! the first edge is degenerated.//! the last edge is degenerated.//! the two edges are degenerated.//! One or the two edges connected to the vertex -//! is a fillet or a chamfer -//! One or the two edges connected to the vertex -//! is not a line or a circle +//! Error that can occur during the fillet construction on planar wire. enum ChFi2d_ConstructionError { -ChFi2d_NotPlanar, -ChFi2d_NoFace, -ChFi2d_InitialisationError, -ChFi2d_ParametersError, -ChFi2d_Ready, -ChFi2d_IsDone, -ChFi2d_ComputationError, -ChFi2d_ConnexionError, -ChFi2d_TangencyError, -ChFi2d_FirstEdgeDegenerated, -ChFi2d_LastEdgeDegenerated, -ChFi2d_BothEdgesDegenerated, -ChFi2d_NotAuthorized + ChFi2d_NotPlanar, //!< the face is not planar + ChFi2d_NoFace, //!< the face is null + ChFi2d_InitialisationError, //!< the two faces used for the initialisation are uncompatible + ChFi2d_ParametersError, //!< the parameters as distances or angle for chamfer are less or equal to zero + ChFi2d_Ready, //!< the initialization has been successful + ChFi2d_IsDone, + ChFi2d_ComputationError, //!< the algorithm could not find a solution + ChFi2d_ConnexionError, //!< the vertex given to locate the fillet or the chamfer is not connected to 2 edges + ChFi2d_TangencyError, //!< the two edges connected to the vertex are tangent + ChFi2d_FirstEdgeDegenerated, //!< the first edge is degenerated + ChFi2d_LastEdgeDegenerated, //!< the last edge is degenerated + ChFi2d_BothEdgesDegenerated, //!< the two edges are degenerated + ChFi2d_NotAuthorized //!< One or the two edges connected to the vertex is a fillet or a chamfer; + //! One or the two edges connected to the vertex is not a line or a circle }; #endif // _ChFi2d_ConstructionError_HeaderFile diff --git a/src/ChFi2d/ChFi2d_FilletAlgo.hxx b/src/ChFi2d/ChFi2d_FilletAlgo.hxx index 1acbaf8377..f4b8867b43 100644 --- a/src/ChFi2d/ChFi2d_FilletAlgo.hxx +++ b/src/ChFi2d/ChFi2d_FilletAlgo.hxx @@ -51,10 +51,9 @@ class FilletPoint; //! 3. Using Newton search method take the point on the segment where function //! value is most close to zero. If it is not enough close, step 2 and 3 are //! repeated taking as start or end point the found point. -//! 4. If solution is found, result is created on point on root of the function -//! (as a start point), point of the projection onto second curve (as an end -//! point) and center of arc in found center. Initial edges are cutted by -//! the start and end point of tangency. +//! 4. If solution is found, result is created on point on root of the function (as a start point), +//! point of the projection onto second curve (as an end point) and center of arc in found center. +//! Initial edges are cut by the start and end point of tangency. class ChFi2d_FilletAlgo { public: @@ -115,7 +114,7 @@ private: //! Stores roots in myResultParams. void PerformNewton(FilletPoint*, FilletPoint*); //! Splits segment by the parameter and calls Newton method for both segments. - //! It supplies recursive iterations of the Newthon methods calls + //! It supplies recursive iterations of the Newton methods calls //! (PerformNewton calls this function and this calls Netwton two times). Standard_Boolean ProcessPoint(FilletPoint*, FilletPoint*, Standard_Real); diff --git a/src/ChFi3d/ChFi3d_Builder.hxx b/src/ChFi3d/ChFi3d_Builder.hxx index e2ef5bc894..02b474a9cf 100644 --- a/src/ChFi3d/ChFi3d_Builder.hxx +++ b/src/ChFi3d/ChFi3d_Builder.hxx @@ -180,9 +180,8 @@ public: //! of failure WalkingFailure,TwistedSurface,Error, Ok Standard_EXPORT ChFiDS_ErrorStatus StripeStatus (const Standard_Integer IC) const; - //! Reset all results of compute and returns the algorythm - //! in the state of the last acquisition to - //! enable modification of contours or areas. + //! Reset all results of compute and returns the algorithm + //! in the state of the last acquisition to enable modification of contours or areas. Standard_EXPORT void Reset(); //! Returns the Builder of topologic operations. diff --git a/src/ChFi3d/ChFi3d_Builder_0.cxx b/src/ChFi3d/ChFi3d_Builder_0.cxx index 0babefe4bd..89bb505133 100644 --- a/src/ChFi3d/ChFi3d_Builder_0.cxx +++ b/src/ChFi3d/ChFi3d_Builder_0.cxx @@ -724,8 +724,8 @@ void ChFi3d_ExtrSpineCarac(const TopOpeBRepDS_DataStructure& DStr, } //======================================================================= //function : ChFi3d_CircularSpine -//purpose : Calculate a cicular guideline for the corner created from -// tangent points and vectors calculated at the extremities +//purpose : Calculate a circular guideline for the corner created from +// tangent points and vectors calculated at the extremities // of guidelines of start and end fillets. //======================================================================= Handle(Geom_Circle) ChFi3d_CircularSpine(Standard_Real& WFirst, @@ -1845,7 +1845,7 @@ Standard_EXPORT void ChFi3d_FilCommonPoint(const BRepBlend_Extremity& SP, Dist = DistL; } if (Dist <= maxtol + BRep_Tool::Tolerance(V[Index_min]) ) { - // a prexisting vertex has been met + // a preexisting vertex has been met CP.SetVertex(V[Index_min]); //the old vertex is loaded CP.SetPoint( BRep_Tool::Pnt(V[Index_min]) ); maxtol = Max(BRep_Tool::Tolerance(V[Index_min]),maxtol); @@ -3203,7 +3203,7 @@ Standard_Boolean ChFi3d_ComputeCurves(const Handle(Adaptor3d_Surface)& S1, if(nbl==0) { // solution of adjustment for SGI - // if the intersection of gs1 with gs2 doesnot worke + // if the intersection of gs1 with gs2 does not work // then the intersection of gs2 with gs1 is attempted. inter.Perform(gs2,gs1,tolap,1,1,1); @@ -3282,7 +3282,7 @@ Standard_Boolean ChFi3d_ComputeCurves(const Handle(Adaptor3d_Surface)& S1, C3d = new Geom_TrimmedCurve(C3d,Uf,Ul); Pc1 = new Geom2d_TrimmedCurve(Pc1,Uf,Ul); Pc2 = new Geom2d_TrimmedCurve(Pc2,Uf,Ul); - //is it necesary to invert ? + //is it necessary to invert ? Standard_Real DistDebToDeb = ptestdeb.Distance(pdeb); Standard_Real DistDebToFin = ptestdeb.Distance(pfin); Standard_Real DistFinToFin = ptestfin.Distance(pfin); diff --git a/src/ChFi3d/ChFi3d_Builder_2.cxx b/src/ChFi3d/ChFi3d_Builder_2.cxx index f25c810173..42e0ee03a3 100644 --- a/src/ChFi3d/ChFi3d_Builder_2.cxx +++ b/src/ChFi3d/ChFi3d_Builder_2.cxx @@ -406,7 +406,7 @@ Standard_Boolean IsInput(const gp_Vec& Vec, } } if (Trouve < 2) return Standard_False; - // Calculate the normal and the angles in the asssociated vector plane + // Calculate the normal and the angles in the associated vector plane gp_Vec Normal; Normal = Vec3d[0] ^ Vec3d[1]; if (Normal.SquareMagnitude() < Precision::Confusion()) {//Colinear case @@ -847,7 +847,7 @@ void ChFi3d_Builder::StartSol(const Handle(ChFiDS_Stripe)& Stripe, PC = BRep_Tool::CurveOnSurface(cured,f1forward,Uf,Ul); I1->Initialize((const Handle(Adaptor3d_Surface)&)HS1); PC->D1(woned, P1, derive); - // There are ponts on the border, and internal points are found + // There are points on the border, and internal points are found if (derive.Magnitude() > Precision::PConfusion()) { derive.Normalize(); derive.Rotate(M_PI/2); @@ -1063,7 +1063,7 @@ ChFi3d_Builder::StartSol(const Handle(ChFiDS_Spine)& Spine, else notons = 1; const ChFiDS_CommonPoint& CPbis = SD->Vertex(isfirst,notons); if (CPbis.IsOnArc()) { // It is checked if it is not the extension zone - // In case CP is not at the end of surfdata and it is not necesary to take it into account + // In case CP is not at the end of surfdata and it is not necessary to take it into account // except for separate cases (ie pointus) ... //ts and tns were earlier CP.Parameter() and CPbis.Parameter, but sometimes they had no values. Standard_Real ts=SD->Interference(ons).Parameter(isfirst), tns=SD->Interference(notons).Parameter(isfirst); diff --git a/src/ChFi3d/ChFi3d_Builder_C1.cxx b/src/ChFi3d/ChFi3d_Builder_C1.cxx index 2118ac4eb6..c723fd6dfd 100644 --- a/src/ChFi3d/ChFi3d_Builder_C1.cxx +++ b/src/ChFi3d/ChFi3d_Builder_C1.cxx @@ -1204,7 +1204,7 @@ void ChFi3d_Builder::PerformOneCorner(const Standard_Integer Index, // To do: modify for intcouture #define VARIANT1 - // First of all the ponts are cut with the edge of the spine. + // First of all the points are cut with the edge of the spine. Standard_Integer IArcspine = DStr.AddShape(Arcspine); Standard_Integer IVtx = DStr.AddShape(Vtx); TopAbs_Orientation OVtx = TopAbs_FORWARD; @@ -1792,9 +1792,9 @@ void ChFi3d_Builder::PerformIntersectionAtEnd(const Standard_Integer Index) /***********************************************************************/ // find faces intersecting with the fillet and edges limiting intersections - // nbface is the nb of faces intersected, Face[i] contais the faces - // to intersect (i=0.. nbface-1). Edge[i] contains edges limiting - // the intersections (i=0 ..nbface) + // nbface is the nb of faces intersected, Face[i] contains the faces + // to intersect (i=0.. nbface-1). Edge[i] contains edges limiting + // the intersections (i=0 ..nbface) /**********************************************************************/ Standard_Integer nb = 1,nbface; @@ -2925,7 +2925,7 @@ void ChFi3d_Builder::PerformIntersectionAtEnd(const Standard_Integer Index) if (isOnSame1 ? shrink [nb+1] : !shrink [nb]) break; Handle(Geom_Curve) Cend = DStr.Curve(indcurve[nb]).Curve(); Handle(Geom2d_Curve) PCend = InterfPS[nb]->PCurve(); - // point near which self intersection may occure + // point near which self intersection may occur TopOpeBRepDS_Point& Pds = DStr.ChangePoint(midIpoint); const gp_Pnt& Pvert = Pds.Point(); Standard_Real tol = Pds.Tolerance(); diff --git a/src/ChFi3d/ChFi3d_FilBuilder.cxx b/src/ChFi3d/ChFi3d_FilBuilder.cxx index 6cd7d73b26..3c4e5d0edd 100644 --- a/src/ChFi3d/ChFi3d_FilBuilder.cxx +++ b/src/ChFi3d/ChFi3d_FilBuilder.cxx @@ -1872,7 +1872,7 @@ void ChFi3d_FilBuilder::ExtentTwoCorner(const TopoDS_Vertex& V, Handle(ChFiDS_Stripe) Stripe; Handle(ChFiDS_Spine) Spine; - // A value of symetric extension is calculated + // A value of symmetric extension is calculated for ( ; itel.More(); itel.Next()) { Stripe = itel.Value(); Spine = Stripe->Spine(); diff --git a/src/ChFi3d/ChFi3d_FilBuilder.hxx b/src/ChFi3d/ChFi3d_FilBuilder.hxx index 382c87d463..17e4083d60 100644 --- a/src/ChFi3d/ChFi3d_FilBuilder.hxx +++ b/src/ChFi3d/ChFi3d_FilBuilder.hxx @@ -68,7 +68,7 @@ public: //! Set the radius of the contour of index IC. Standard_EXPORT void SetRadius (const Handle(Law_Function)& C, const Standard_Integer IC, const Standard_Integer IinC); - //! Returns true the contour is flaged as edge constant. + //! Returns true the contour is flagged as edge constant. Standard_EXPORT Standard_Boolean IsConstant (const Standard_Integer IC); //! Returns the vector if the contour is flagged as edge diff --git a/src/ChFiDS/ChFiDS_ChamfSpine.cxx b/src/ChFiDS/ChFiDS_ChamfSpine.cxx index d45696afba..6ee73d9cb1 100644 --- a/src/ChFiDS/ChFiDS_ChamfSpine.cxx +++ b/src/ChFiDS/ChFiDS_ChamfSpine.cxx @@ -51,7 +51,10 @@ ChFiDS_ChamfSpine::ChFiDS_ChamfSpine(const Standard_Real Tol) void ChFiDS_ChamfSpine::GetDist(Standard_Real& Dis) const { - if (mChamf != ChFiDS_Sym) throw Standard_Failure("Chamfer is not symetric"); + if (mChamf != ChFiDS_Sym) + { + throw Standard_Failure ("Chamfer is not symmetric"); + } Dis = d1; } diff --git a/src/ChFiDS/ChFiDS_CommonPoint.hxx b/src/ChFiDS/ChFiDS_CommonPoint.hxx index e96aa3df6e..b5bd41b345 100644 --- a/src/ChFiDS/ChFiDS_CommonPoint.hxx +++ b/src/ChFiDS/ChFiDS_CommonPoint.hxx @@ -121,7 +121,7 @@ public: //! arc returned by the method Arc(). Standard_EXPORT Standard_Real ParameterOnArc() const; - //! Returns the parameter the paramter on the spine + //! Returns the parameter on the spine Standard_EXPORT Standard_Real Parameter() const; //! Returns the 3d point diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.cxx b/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.cxx index 508edc3602..54c78ead82 100644 --- a/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.cxx +++ b/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.cxx @@ -227,7 +227,7 @@ Standard_Boolean ChFiKPart_MakeChAsym(TopOpeBRepDS_DataStructure& DStr, // changes due to the fact the parameters of the chamfer must go increasing // from surface S1 to surface S2 if (!plandab) { - gcyl->VReverse();// be carefull : the SemiAngle was changed + gcyl->VReverse();// be careful : the SemiAngle was changed ChamfAx3 = gcyl->Position(); } @@ -386,7 +386,7 @@ Standard_Boolean ChFiKPart_MakeChAsym(TopOpeBRepDS_DataStructure& DStr, // changes due to the fact the parameters of the chamfer must go increasing // from surface S1 to surface S2 if (!plandab) { - gcon->VReverse();// be carefull : the SemiAngle was changed + gcon->VReverse();// be careful : the SemiAngle was changed ChamfAx3 = gcon->Position(); SemiAngl = gcon->SemiAngle(); } diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.cxx b/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.cxx index 66dd749286..b8239b5e83 100644 --- a/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.cxx +++ b/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.cxx @@ -166,7 +166,7 @@ Standard_Boolean ChFiKPart_MakeChAsym(TopOpeBRepDS_DataStructure& DStr, // changes due to the fact the parameters of the chamfer must go increasing // from surface S1 to surface S2 if ( (dedans && !plandab) || (!dedans && plandab) ) { - gcon->VReverse();// be carefull : the SemiAngle was changed + gcon->VReverse();// be careful : the SemiAngle was changed ConAx3 = gcon->Position(); SemiAngl = gcon->SemiAngle(); } diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.cxx b/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.cxx index 06d8495a18..b0f0cb1c2f 100644 --- a/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.cxx +++ b/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.cxx @@ -229,7 +229,7 @@ Standard_Boolean ChFiKPart_MakeChamfer(TopOpeBRepDS_DataStructure& DStr, // changes due to the fact the parameters of the chamfer must go increasing // from surface S1 to surface S2 if ( (dedans && !plandab) || (!dedans && plandab) ) { - gcon->VReverse();// be carefull : the SemiAngle was changed + gcon->VReverse();// be careful : the SemiAngle was changed ChamfAx3 = gcon->Position(); SemiAngl = gcon->SemiAngle(); } diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.cxx b/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.cxx index d25517b695..aba3739f7f 100644 --- a/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.cxx +++ b/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.cxx @@ -160,7 +160,7 @@ Standard_Boolean ChFiKPart_MakeChamfer(TopOpeBRepDS_DataStructure& DStr, // changes due to the fact the parameters of the chamfer must go increasing // from surface S1 to surface S2 if ( (dedans && !plandab) || (!dedans && plandab) ) { - gcon->VReverse();// be carefull : the SemiAngle was changed + gcon->VReverse();// be careful : the SemiAngle was changed ConAx3 = gcon->Position(); SemiAngl = gcon->SemiAngle(); } diff --git a/src/Contap/Contap_Contour.cxx b/src/Contap/Contap_Contour.cxx index 870e38fe9b..935bf5f859 100644 --- a/src/Contap/Contap_Contour.cxx +++ b/src/Contap/Contap_Contour.cxx @@ -1123,7 +1123,7 @@ void ComputeInternalPointsOnRstr Contap_Point& thevtx = Line.Vertex(i); if (Abs(thevtx.ParameterOnLine()-paramp) <= toler) { thevtx.SetInternal(); - ok = Standard_False; // on a correspondance + ok = Standard_False; // on a correspondence } } if (ok) { // il faut alors rajouter le point diff --git a/src/Contap/Contap_Point.hxx b/src/Contap/Contap_Point.hxx index 0038bf75fb..82fbd08558 100644 --- a/src/Contap/Contap_Point.hxx +++ b/src/Contap/Contap_Point.hxx @@ -35,7 +35,7 @@ class IntSurf_Transition; //! Definition of a vertex on the contour line. //! Most of the time, such a point is an intersection //! between the contour and a restriction of the surface. -//! When it is not tyhe method IsOnArc return False. +//! When it is not the method IsOnArc return False. //! Such a point is contains geometrical information (see //! the Value method) and logical information. class Contap_Point diff --git a/src/Convert/Convert_ConicToBSplineCurve.cxx b/src/Convert/Convert_ConicToBSplineCurve.cxx index a78a88be03..b4945f7953 100644 --- a/src/Convert/Convert_ConicToBSplineCurve.cxx +++ b/src/Convert/Convert_ConicToBSplineCurve.cxx @@ -168,8 +168,7 @@ Standard_Integer Convert_ConicToBSplineCurve::Multiplicity // U + V // 2 2 // such that the derivative at the domain bounds of U + V is 0.0e0 -// with is helpfull when having to make a C1 BSpline by merging two -// BSpline toghether +// with is helpful when having to make a C1 BSpline by merging two BSpline together //======================================================================= void CosAndSinRationalC1(Standard_Real Parameter, @@ -507,7 +506,7 @@ void Convert_ConicToBSplineCurve::BuildCosAndSin( if (alpha_2 < 1.0e-7) { // Fixed degenerate case, when obtain 0 / 0 uncertainty. - // According to Taylor aprroximation: + // According to Taylor approximation: // b (gamma) = -6.0 / 15.0 + o(gamma^2) p_param = -6.0 / 15.0; } diff --git a/src/Convert/Convert_ElementarySurfaceToBSplineSurface.hxx b/src/Convert/Convert_ElementarySurfaceToBSplineSurface.hxx index 86e66d11c9..6b00adba8a 100644 --- a/src/Convert/Convert_ElementarySurfaceToBSplineSurface.hxx +++ b/src/Convert/Convert_ElementarySurfaceToBSplineSurface.hxx @@ -50,7 +50,7 @@ class gp_Pnt; //! framework for storing and consulting this computed data. //! This data may then be used to construct a //! Geom_BSplineSurface surface, for example. -//! All those classes define algorithmes to convert an +//! All those classes define algorithms to convert an //! ElementarySurface into a B-spline surface. //! This abstract class implements the methods to get //! the geometric representation of the B-spline surface. diff --git a/src/Convert/Convert_GridPolynomialToPoles.hxx b/src/Convert/Convert_GridPolynomialToPoles.hxx index 787e3a8027..485dcfae66 100644 --- a/src/Convert/Convert_GridPolynomialToPoles.hxx +++ b/src/Convert/Convert_GridPolynomialToPoles.hxx @@ -48,7 +48,7 @@ public: //! This values defined the parametric domain of the Polynomial Equation. //! //! Coefficients : - //! The have to be formated than an "C array" + //! The have to be formatted than an "C array" //! [MaxUDegree+1] [MaxVDegree+1] [3] Standard_EXPORT Convert_GridPolynomialToPoles(const Standard_Integer MaxUDegree, const Standard_Integer MaxVDegree, const Handle(TColStd_HArray1OfInteger)& NumCoeff, const Handle(TColStd_HArray1OfReal)& Coefficients, const Handle(TColStd_HArray1OfReal)& PolynomialUIntervals, const Handle(TColStd_HArray1OfReal)& PolynomialVIntervals); @@ -61,7 +61,7 @@ public: //! this is the true parameterisation for the composite surface //! //! Coefficients : - //! The Coefficients have to be formated than an "C array" + //! The Coefficients have to be formatted than an "C array" //! [NbVSurfaces] [NBUSurfaces] [MaxUDegree+1] [MaxVDegree+1] [3] //! raises DomainError if is not a //! [1, NbVSurfaces*NbUSurfaces, 1,2] array.