diff --git a/adm/cmake/3rdparty_macro.cmake b/adm/cmake/3rdparty_macro.cmake index a3621f7621..13aec5fb1c 100644 --- a/adm/cmake/3rdparty_macro.cmake +++ b/adm/cmake/3rdparty_macro.cmake @@ -19,7 +19,7 @@ macro (THIRDPARTY_PRODUCT PRODUCT_NAME HEADER_NAME LIBRARY_CSF_NAME LIBRARY_NAME # include occt macros. compiler_bitness, os_wiht_bit, compiler OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_macros") - # specify product folder in connectin with 3RDPARTY_DIR + # specify product folder in connection with 3RDPARTY_DIR if (3RDPARTY_DIR AND EXISTS "${3RDPARTY_DIR}") #CHECK_PATH_FOR_CONSISTENCY (3RDPARTY_DIR 3RDPARTY_${PRODUCT_NAME}_DIR PATH "The directory containing ${PRODUCT_NAME}") diff --git a/adm/cmake/bison.cmake b/adm/cmake/bison.cmake index 83d8da5466..0e4870f9fa 100644 --- a/adm/cmake/bison.cmake +++ b/adm/cmake/bison.cmake @@ -12,7 +12,7 @@ if (NOT BISON_EXECUTABLE OR NOT EXISTS "${BISON_EXECUTABLE}") endif() # Add paths to 3rdparty subfolders containing name "bison" to CMAKE_PROGRAM_PATH variable to make -# these paths searhed by find_package +# these paths searched by find_package if (3RDPARTY_DIR) file (GLOB BISON_PATHS LIST_DIRECTORIES true "${3RDPARTY_DIR}/*bison*/") foreach (candidate_path ${BISON_PATHS}) diff --git a/adm/cmake/cotire.cmake b/adm/cmake/cotire.cmake index acdca71a9f..40372b8457 100644 --- a/adm/cmake/cotire.cmake +++ b/adm/cmake/cotire.cmake @@ -2580,7 +2580,7 @@ function (cotire_setup_target_pch_usage _languages _target _wholeTarget) message (STATUS "add_custom_command: TARGET ${_target} PRE_BUILD ${_cmds}") endif() # because CMake PRE_BUILD command does not support dependencies, - # we check dependencies explicity in cotire script mode when the pre-build action is run + # we check dependencies explicitly in cotire script mode when the pre-build action is run add_custom_command( TARGET "${_target}" PRE_BUILD ${_cmds} @@ -2637,7 +2637,7 @@ function (cotire_setup_unity_generation_commands _language _target _targetScript endif() if (WIN32 AND CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") # unity file compilation results in potentially huge object file, - # thus use /bigobj by default unter cl.exe and Windows Intel + # thus use /bigobj by default under cl.exe and Windows Intel set_property (SOURCE "${_unityFile}" APPEND_STRING PROPERTY COMPILE_FLAGS "/bigobj") endif() cotire_set_cmd_to_prologue(_unityCmd) diff --git a/adm/cmake/flex.cmake b/adm/cmake/flex.cmake index b59a9cff79..da32fbecd9 100644 --- a/adm/cmake/flex.cmake +++ b/adm/cmake/flex.cmake @@ -15,7 +15,7 @@ if (NOT FLEX_INCLUDE_DIR OR NOT EXISTS "${FLEX_INCLUDE_DIR}") endif() # Add paths to 3rdparty subfolders containing name "flex" to CMAKE_PROGRAM_PATH and -# CMAKE_INCLUDE_PATH variables to make these paths searhed by find_package +# CMAKE_INCLUDE_PATH variables to make these paths searched by find_package if (3RDPARTY_DIR) file (GLOB FLEX_PATHS LIST_DIRECTORIES true "${3RDPARTY_DIR}/*flex*") foreach (candidate_path ${FLEX_PATHS}) diff --git a/adm/cmake/freetype.cmake b/adm/cmake/freetype.cmake index 8563c24f28..9a7fda2a5c 100644 --- a/adm/cmake/freetype.cmake +++ b/adm/cmake/freetype.cmake @@ -14,7 +14,7 @@ OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_macros") OCCT_MAKE_COMPILER_SHORT_NAME() OCCT_MAKE_COMPILER_BITNESS() -# specify freetype folder in connectin with 3RDPARTY_DIR +# specify freetype folder in connection with 3RDPARTY_DIR if (3RDPARTY_DIR AND EXISTS "${3RDPARTY_DIR}") #CHECK_PATH_FOR_CONSISTENCY (3RDPARTY_DIR 3RDPARTY_FREETYPE_DIR PATH "The directory containing freetype") diff --git a/adm/cmake/tbb.cmake b/adm/cmake/tbb.cmake index fae9905ecf..4c8f921969 100644 --- a/adm/cmake/tbb.cmake +++ b/adm/cmake/tbb.cmake @@ -27,7 +27,7 @@ if (WIN32) # Below, we have correct 3RDPARTY_DIR. - # Initialize TBB folder in connectin with 3RDPARTY_DIR. + # Initialize TBB folder in connection with 3RDPARTY_DIR. if (("${3RDPARTY_TBB_DIR}" STREQUAL "") OR (NOT EXISTS "${3RDPARTY_TBB_DIR}")) FIND_PRODUCT_DIR ("${3RDPARTY_DIR}" TBB TBB_DIR_NAME) if (TBB_DIR_NAME) @@ -44,7 +44,7 @@ if (WIN32) REQUIRED CONFIG) - # Achive include directory + # Archive include directory get_target_property (TBB_INCLUDE_DIR TBB::tbb INTERFACE_INCLUDE_DIRECTORIES) if (NOT DEFINED 3RDPARTY_TBB_INCLUDE_DIR) set (3RDPARTY_TBB_INCLUDE_DIR "" CACHE PATH "The directory containing headers of the TBB") @@ -65,7 +65,7 @@ if (WIN32) string(TOLOWER "${LIB}" LIB_LOWER) string(TOUPPER "${LIB}" LIB_UPPER) - # Achive *.lib files and directory containing it. + # Archive *.lib files and directory containing it. get_target_property (TBB_LIB_FILE "TBB::${LIB_LOWER}" IMPORTED_IMPLIB_${CHOSEN_IMPORT_CONF}) # Reserve cache variable for *.lib. if (NOT DEFINED 3RDPARTY_${LIB_UPPER}_LIBRARY) @@ -92,7 +92,7 @@ if (WIN32) list (APPEND 3RDPARTY_NO_LIBS 3RDPARTY_${LIB_UPPER}_LIBRARY_DIR) endif() - # Achive *.dll files and directory containing it. + # Archive *.dll files and directory containing it. get_target_property (TBB_DLL_FILE "TBB::${LIB_LOWER}" IMPORTED_LOCATION_${CHOSEN_IMPORT_CONF}) # Reserve cache variable for *.dll. if (NOT DEFINED 3RDPARTY_${LIB_UPPER}_DLL) @@ -175,9 +175,9 @@ else () REQUIRED CONFIG) endif() - # TBB has been configured (in other case FATAL_ERROR occures). + # TBB has been configured (in other case FATAL_ERROR occurs). - # Achive include directory. + # Archive include directory. get_target_property (TBB_INCLUDE_DIR TBB::tbb INTERFACE_INCLUDE_DIRECTORIES) if (NOT DEFINED 3RDPARTY_TBB_INCLUDE_DIR) set (3RDPARTY_TBB_INCLUDE_DIR "" CACHE PATH "The directory containing headers of the TBB") @@ -198,7 +198,7 @@ else () string(TOLOWER "${LIB}" LIB_LOWER) string(TOUPPER "${LIB}" LIB_UPPER) - # Achive *.so files and directory containing it. + # Archive *.so files and directory containing it. get_target_property (TBB_SO_FILE "TBB::${LIB_LOWER}" IMPORTED_LOCATION_${CHOSEN_IMPORT_CONF}) # Reserve cache variable for *.so. if (NOT DEFINED 3RDPARTY_${LIB_UPPER}_LIBRARY) diff --git a/adm/upgrade.tcl b/adm/upgrade.tcl index e07b041ed4..a7b5ec2a22 100644 --- a/adm/upgrade.tcl +++ b/adm/upgrade.tcl @@ -405,7 +405,7 @@ proc Rename {thePath theExtensions theNewNames theCheckMode} { } } -# @thePackagePath eather file or folder. If it is a folder, +# @thePackagePath either file or folder. If it is a folder, # all files with @theHeaderExtensions are processed. # "fwd.tcollection" section from upgrade.ini file is used to find out what # classes have been converted and, thus, what forward declarations can be replaced diff --git a/dox/introduction/introduction.md b/dox/introduction/introduction.md index fde58463d7..c0d71094c1 100644 --- a/dox/introduction/introduction.md +++ b/dox/introduction/introduction.md @@ -370,7 +370,7 @@ https://dev.opencascade.org/resources/download/3rd-party-components | Flex 2.6.4+ and Bison 3.7.1+ | https://sourceforge.net/projects/winflexbison/ | Data Exchange | Updating STEP and ExprIntrp parsers | | RapidJSON 1.1+ | https://rapidjson.org/ | Data Exchange | Reading glTF files | | Draco 1.4.1+ | https://github.com/google/draco | Data Exchange | Reading compressed glTF files | -| Tcl/Tk 8.6.3+ | https://www.tcl.tk/software/tcltk/download.html | DRAW Test Harness | Tcl interpretor in Draw module | +| Tcl/Tk 8.6.3+ | https://www.tcl.tk/software/tcltk/download.html | DRAW Test Harness | Tcl interpreter in Draw module | | Qt 5.3.2+ | https://www.qt.io/download/ | Inspector and Samples | Inspector Qt samples and | | Doxygen 1.8.5+ | https://www.doxygen.nl/download.html | Documentation | (Re)generating documentation | | Graphviz 2.38+ | https://graphviz.org/ | Documentation | Generating dependency graphs | diff --git a/dox/user_guides/ocaf/ocaf.md b/dox/user_guides/ocaf/ocaf.md index 69fc905042..60babd2cb5 100644 --- a/dox/user_guides/ocaf/ocaf.md +++ b/dox/user_guides/ocaf/ocaf.md @@ -763,7 +763,7 @@ filter2->AddSkipped("TDataStd_Integer"); app->Open("example.cbf", doc, filter2); ~~~~ -*PCDM_ReaderFilter::AppendMode_Protect* means that if the loading algorithm finds already existing attribute in the document, it will not be overwritten by attibute from the loading file. If it is needed to +*PCDM_ReaderFilter::AppendMode_Protect* means that if the loading algorithm finds already existing attribute in the document, it will not be overwritten by attribute from the loading file. If it is needed to substitute the existing attributes, the reading mode *PCDM_ReaderFilter::AppendMode_Overwrite* must be used instead. *AddRead* and *AddSkipped* methods for attributes should not be used in one filter. If it is so, *AddSkipped* attributes are ignored during the read. @@ -971,7 +971,7 @@ The "correct" history of a used modeling operation serves the basis of naming me | Closed wire | Edges | All edges | | Opened wire | Edges and ending vertexes | All edges plus ending vertexes of the wire | | Edge | Vertexes | Two vertexes are expected | -| Compound or CompSolid | To be used consequentially the above declared rule applied to all sub-shapes of the first level | Compound/CompSolid to be explored level by level until any the mentioned above types will be met | +| Compound or CompSolid | To be used consequently the above declared rule applied to all sub-shapes of the first level | Compound/CompSolid to be explored level by level until any the mentioned above types will be met | The history should return (and track) only elementary types of sub-shapes, i.e. Faces, Edges and Vertexes, while other so-called aggregation types: Compounds, Shells, Wires, are calculated by Selection mechanism automatically. diff --git a/samples/glfw/adm/cmake/FindOpenCASCADE.cmake b/samples/glfw/adm/cmake/FindOpenCASCADE.cmake index 839cc75192..1cbf05227f 100644 --- a/samples/glfw/adm/cmake/FindOpenCASCADE.cmake +++ b/samples/glfw/adm/cmake/FindOpenCASCADE.cmake @@ -119,7 +119,7 @@ if (OpenCASCADE_INCLUDE_DIR_FOUND AND OpenCASCADE_LIBRARY_DIR_FOUND) set (OpenCASCADE_INSTALL_PREFIX ${OpenCASCADE_DIR}) # Define OCCT toolkits so that CMake can put absolute paths to linker; - # the library existance is not checked here, since modules can be disabled. + # the library existence is not checked here, since modules can be disabled. foreach (aLibIter ${OpenCASCADE_TKLIST}) add_library (${aLibIter} SHARED IMPORTED) diff --git a/src/APIHeaderSection/APIHeaderSection_MakeHeader.cxx b/src/APIHeaderSection/APIHeaderSection_MakeHeader.cxx index 9f90004ff9..800fad7bcd 100644 --- a/src/APIHeaderSection/APIHeaderSection_MakeHeader.cxx +++ b/src/APIHeaderSection/APIHeaderSection_MakeHeader.cxx @@ -31,7 +31,7 @@ #include #include -// This is a generic header for any STEP sheme +// This is a generic header for any STEP scheme static Handle(TCollection_HAsciiString) nulstr; static Handle(Interface_HArray1OfHAsciiString) nularr; diff --git a/src/Adaptor3d/Adaptor3d_CurveOnSurface.cxx b/src/Adaptor3d/Adaptor3d_CurveOnSurface.cxx index 9bf807c227..1f6c58642a 100644 --- a/src/Adaptor3d/Adaptor3d_CurveOnSurface.cxx +++ b/src/Adaptor3d/Adaptor3d_CurveOnSurface.cxx @@ -146,7 +146,7 @@ static void Hunt(const TColStd_Array1OfReal& Arr, const Standard_Real Coord, Standard_Integer& Iloc) {//Warning: Hunt is used to find number of knot which equals coordinate component, - // when coordinate component definitly equals a knot only. + // when coordinate component definitely equals a knot only. Standard_Real Tol=Precision::PConfusion()/10; Standard_Integer i=1; while((i <= Arr.Upper()) && (Abs(Coord - Arr(i)) > Tol)){ @@ -638,7 +638,7 @@ static void Locate2Coord(const Standard_Integer Index, if((DComp > 0)&&(Abs(DComp)>Tol)) { Hunt(Arr,Comp,N); if (N >= NUp){ - //limit case: Hunt() cought upper knot. Take the last span. + //limit case: Hunt() caught upper knot. Take the last span. N = NUp - 1; } if(Index==1) { Tmp1=BSplS->UKnot(N); @@ -659,7 +659,7 @@ static void Locate2Coord(const Standard_Integer Index, if((DComp < 0)&&(Abs(DComp)>Tol)){ Hunt(Arr,Comp,N); if (N <= NLo) { - //limit case: Hunt() cought lower knot. Take the first span. + //limit case: Hunt() caught lower knot. Take the first span. N = NLo + 1; } if(Index==1) { Tmp1=BSplS->UKnot(N-1); diff --git a/src/Adaptor3d/Adaptor3d_TopolTool.cxx b/src/Adaptor3d/Adaptor3d_TopolTool.cxx index 807291d755..9179a9ea62 100644 --- a/src/Adaptor3d/Adaptor3d_TopolTool.cxx +++ b/src/Adaptor3d/Adaptor3d_TopolTool.cxx @@ -559,7 +559,7 @@ Standard_Boolean Adaptor3d_TopolTool::Identical #include #include -#define myMinPnts 4 //Absolut possible minimum of sample points +#define myMinPnts 4 //Absolute possible minimum of sample points //Restriction of IntPolyh diff --git a/src/Approx/Approx_SweepFunction.hxx b/src/Approx/Approx_SweepFunction.hxx index 56c0334bc4..c42f080050 100644 --- a/src/Approx/Approx_SweepFunction.hxx +++ b/src/Approx/Approx_SweepFunction.hxx @@ -68,7 +68,7 @@ public: //! get the Multplicities of the section Standard_EXPORT virtual void Mults (TColStd_Array1OfInteger& TMults) const = 0; - //! Returns if the sections are rationnal or not + //! Returns if the sections are rational or not Standard_EXPORT virtual Standard_Boolean IsRational() const = 0; //! Returns the number of intervals for continuity diff --git a/src/Aspect/Aspect_DisplayConnection.hxx b/src/Aspect/Aspect_DisplayConnection.hxx index 5c1ca79843..97de0ab871 100755 --- a/src/Aspect/Aspect_DisplayConnection.hxx +++ b/src/Aspect/Aspect_DisplayConnection.hxx @@ -27,7 +27,7 @@ struct Aspect_XVisualInfo; //! This class creates and provides connection with X server. //! Raises exception if can not connect to X server. //! On Windows and Mac OS X (in case when Cocoa used) platforms this class does nothing. -//! WARRNING: Do not close display connection manually! +//! WARNING: Do not close display connection manually! class Aspect_DisplayConnection : public Standard_Transient { DEFINE_STANDARD_RTTIEXT(Aspect_DisplayConnection, Standard_Transient) diff --git a/src/BRepAlgo/BRepAlgo_FaceRestrictor.hxx b/src/BRepAlgo/BRepAlgo_FaceRestrictor.hxx index ea5c642b46..cfd8623ecc 100644 --- a/src/BRepAlgo/BRepAlgo_FaceRestrictor.hxx +++ b/src/BRepAlgo/BRepAlgo_FaceRestrictor.hxx @@ -51,12 +51,12 @@ public: //! Warning: //! The Wires must be closed. //! - //! The edges of can be modified if they have not pcurves - //! on the surface of . In this case - //! if is false the first pcurve of the edge - //! is positionned on . - //! if is True ,the Pcurve On is the - //! projection of the curve 3d on . + //! The edges of can be modified if they don't have + //! pcurves on the surface of . In this case + //! if is false the first pcurve of the edge + //! is positioned on . + //! if is True, the Pcurve On is the + //! projection of the curve 3d on . Standard_EXPORT void Add (TopoDS_Wire& W); //! Removes all the Wires diff --git a/src/BRepAlgo/BRepAlgo_Loop.hxx b/src/BRepAlgo/BRepAlgo_Loop.hxx index df528d581d..8cf8fd2774 100644 --- a/src/BRepAlgo/BRepAlgo_Loop.hxx +++ b/src/BRepAlgo/BRepAlgo_Loop.hxx @@ -86,13 +86,13 @@ public: Standard_EXPORT void VerticesForSubstitute (TopTools_DataMapOfShapeShape& VerVerMap); - //! Set maximal tolerance used for comparing distaces between vertices. + //! Set maximal tolerance used for comparing distances between vertices. void SetTolConf(const Standard_Real theTolConf) { myTolConf = theTolConf; } - //! Get maximal tolerance used for comparing distaces between vertices. + //! Get maximal tolerance used for comparing distances between vertices. Standard_Real GetTolConf() const { return myTolConf; diff --git a/src/BRepBlend/BRepBlend_AppFuncRoot.cxx b/src/BRepBlend/BRepBlend_AppFuncRoot.cxx index de8508e8b0..b95c944a62 100644 --- a/src/BRepBlend/BRepBlend_AppFuncRoot.cxx +++ b/src/BRepBlend/BRepBlend_AppFuncRoot.cxx @@ -49,7 +49,7 @@ BRepBlend_AppFuncRoot::BRepBlend_AppFuncRoot(Handle(BRepBlend_Line)& Line, // Tables Func.GetShape( NbPoles, NbKnots, Degree, NbPoles2d); - // Calculation of BaryCentre (rationnal case). + // Calculation of BaryCentre (rational case). if (Func.IsRational()) { Standard_Real Xmax =-1.e100, Xmin = 1.e100, Ymax =-1.e100, Ymin = 1.e100, diff --git a/src/BRepBlend/BRepBlend_AppFuncRoot.hxx b/src/BRepBlend/BRepBlend_AppFuncRoot.hxx index abefca5b62..64bac871da 100644 --- a/src/BRepBlend/BRepBlend_AppFuncRoot.hxx +++ b/src/BRepBlend/BRepBlend_AppFuncRoot.hxx @@ -69,7 +69,7 @@ public: //! get the Multplicities of the section Standard_EXPORT virtual void Mults (TColStd_Array1OfInteger& TMults) const Standard_OVERRIDE; - //! Returns if the section is rationnal or not + //! Returns if the section is rational or not Standard_EXPORT virtual Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns the number of intervals for continuity @@ -95,7 +95,7 @@ public: Standard_EXPORT virtual void Resolution (const Standard_Integer Index, const Standard_Real Tol, Standard_Real& TolU, Standard_Real& TolV) const Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary (in radian) //! SurfTol error inside the surface. diff --git a/src/BRepBlend/BRepBlend_RstRstConstRad.hxx b/src/BRepBlend/BRepBlend_RstRstConstRad.hxx index de8221a068..4f98c28b2d 100644 --- a/src/BRepBlend/BRepBlend_RstRstConstRad.hxx +++ b/src/BRepBlend/BRepBlend_RstRstConstRad.hxx @@ -139,7 +139,7 @@ public: Standard_EXPORT void Section (const Standard_Real Param, const Standard_Real U, const Standard_Real V, Standard_Real& Pdeb, Standard_Real& Pfin, gp_Circ& C); - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns the length of the maximum section @@ -162,7 +162,7 @@ public: Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/BRepBlend/BRepBlend_RstRstEvolRad.hxx b/src/BRepBlend/BRepBlend_RstRstEvolRad.hxx index 10aa7da64c..78c51db4c4 100644 --- a/src/BRepBlend/BRepBlend_RstRstEvolRad.hxx +++ b/src/BRepBlend/BRepBlend_RstRstEvolRad.hxx @@ -140,7 +140,7 @@ public: Standard_EXPORT void Section (const Standard_Real Param, const Standard_Real U, const Standard_Real V, Standard_Real& Pdeb, Standard_Real& Pfin, gp_Circ& C); - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns the length of the maximum section @@ -163,7 +163,7 @@ public: Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/BRepBlend/BRepBlend_SurfRstConstRad.hxx b/src/BRepBlend/BRepBlend_SurfRstConstRad.hxx index a77097fcc6..505cfb1133 100644 --- a/src/BRepBlend/BRepBlend_SurfRstConstRad.hxx +++ b/src/BRepBlend/BRepBlend_SurfRstConstRad.hxx @@ -133,7 +133,7 @@ public: Standard_EXPORT void Section (const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, Standard_Real& Pdeb, Standard_Real& Pfin, gp_Circ& C); - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns the length of the maximum section @@ -156,7 +156,7 @@ public: Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/BRepBlend/BRepBlend_SurfRstEvolRad.hxx b/src/BRepBlend/BRepBlend_SurfRstEvolRad.hxx index ebdc9b82ae..cec1b04345 100644 --- a/src/BRepBlend/BRepBlend_SurfRstEvolRad.hxx +++ b/src/BRepBlend/BRepBlend_SurfRstEvolRad.hxx @@ -132,7 +132,7 @@ public: Standard_EXPORT void Section (const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, Standard_Real& Pdeb, Standard_Real& Pfin, gp_Circ& C); - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns the length of the maximum section @@ -155,7 +155,7 @@ public: Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/BRepClass/BRepClass_FaceExplorer.cxx b/src/BRepClass/BRepClass_FaceExplorer.cxx index 88ad99afb8..a0f12833fa 100644 --- a/src/BRepClass/BRepClass_FaceExplorer.cxx +++ b/src/BRepClass/BRepClass_FaceExplorer.cxx @@ -202,7 +202,7 @@ Standard_Boolean BRepClass_FaceExplorer::OtherSegment(const gp_Pnt2d& P, // is tangent to the edge curve. This condition is bad for classification. // Therefore try to go to another point in the hope that there will be // no tangent. If there tangent is preserved then leave the last point in - // order to get this edge chanse to participate in classification. + // order to get this edge chance to participate in classification. if (myCurEdgePar + Probing_Step < Probing_End) continue; } diff --git a/src/BRepFill/BRepFill_Draft.cxx b/src/BRepFill/BRepFill_Draft.cxx index b8c9762958..86f62c4ba3 100644 --- a/src/BRepFill/BRepFill_Draft.cxx +++ b/src/BRepFill/BRepFill_Draft.cxx @@ -541,7 +541,7 @@ static Standard_Boolean GoodOrientation(const Bnd_Box& B, if (!Surf.IsNull()) { // Add the face at end - // Waiting the use of traces & retriction in BRepFill_Sweep + // Waiting the use of traces & restriction in BRepFill_Sweep // Make Fuse. BRepLib_MakeFace MkF; MkF.Init(Surf, Standard_True, Precision::Confusion()); diff --git a/src/BRepFill/BRepFill_Evolved.cxx b/src/BRepFill/BRepFill_Evolved.cxx index 43ec222fe2..373c257160 100644 --- a/src/BRepFill/BRepFill_Evolved.cxx +++ b/src/BRepFill/BRepFill_Evolved.cxx @@ -3144,7 +3144,7 @@ void CutEdgeProf (const TopoDS_Edge& E, //======================================================================= //function : CutEdge -//purpose : Cut an edge at thw extrema of curves and at points of inflexion. +//purpose : Cut an edge at the extrema of curves and at points of inflexion. // Closed circles are also cut in two. // If are empty the edge is not modified. // The first and the last vertex of the original edge diff --git a/src/BRepFill/BRepFill_LocationLaw.hxx b/src/BRepFill/BRepFill_LocationLaw.hxx index ef0c460388..4a77d48ebf 100644 --- a/src/BRepFill/BRepFill_LocationLaw.hxx +++ b/src/BRepFill/BRepFill_LocationLaw.hxx @@ -122,18 +122,18 @@ public: protected: - //! Initialize all the fields, this methode have to + //! Initialize all the fields, this methode has to //! be called by the constructors of Inherited class. Standard_EXPORT void Init (const TopoDS_Wire& Path); - //! To preseve if possible the Tangent in transformations + //! To preserve if possible the Tangent in transformations //! It is the default mode. Standard_EXPORT void TangentIsMain(); - //! To preseve if possible the Normal in transformations + //! To preserve if possible the Normal in transformations Standard_EXPORT void NormalIsMain(); - //! To preseve if possible the BiNormal in transformations + //! To preserve if possible the BiNormal in transformations Standard_EXPORT void BiNormalIsMain(); TopoDS_Wire myPath; diff --git a/src/BRepFill/BRepFill_Pipe.cxx b/src/BRepFill/BRepFill_Pipe.cxx index 46e2b34d4c..9b5dd84a46 100644 --- a/src/BRepFill/BRepFill_Pipe.cxx +++ b/src/BRepFill/BRepFill_Pipe.cxx @@ -501,7 +501,7 @@ TopoDS_Shape BRepFill_Pipe::Section(const TopoDS_Vertex& VSpine) const TopoDS_Wire BRepFill_Pipe::PipeLine(const gp_Pnt& Point) { - // Postioning + // Positioning gp_Pnt P; P = Point; P.Transform(myTrsf); diff --git a/src/BRepFill/BRepFill_PipeShell.cxx b/src/BRepFill/BRepFill_PipeShell.cxx index d924ff4f47..850876620c 100644 --- a/src/BRepFill/BRepFill_PipeShell.cxx +++ b/src/BRepFill/BRepFill_PipeShell.cxx @@ -1155,7 +1155,7 @@ void BRepFill_PipeShell::Generated(const TopoDS_Shape& theShape, //======================================================================= //function : Place -//purpose : Implement a Section in the local refernce frame +//purpose : Implement a Section in the local reference frame // and return its parameter on the trajectory //======================================================================= void BRepFill_PipeShell::Place(const BRepFill_Section& Sec, diff --git a/src/BRepFill/BRepFill_PipeShell.hxx b/src/BRepFill/BRepFill_PipeShell.hxx index 3ff08b460c..7f92a136f1 100644 --- a/src/BRepFill/BRepFill_PipeShell.hxx +++ b/src/BRepFill/BRepFill_PipeShell.hxx @@ -48,7 +48,7 @@ class BRepFill_PipeShell; DEFINE_STANDARD_HANDLE(BRepFill_PipeShell, Standard_Transient) //! Computes a topological shell using some wires -//! (spines and profiles) and diplacement option +//! (spines and profiles) and displacement option //! Perform general sweeping construction class BRepFill_PipeShell : public Standard_Transient { @@ -116,7 +116,7 @@ public: //! to be C0. //! Give section to sweep. //! Possibilities are : - //! - Give one or sevral profile + //! - Give one or several profile //! - Give one profile and an homotetic law. //! - 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 @@ -153,7 +153,7 @@ public: Standard_EXPORT void SetTransition (const BRepFill_TransitionStyle Mode = BRepFill_Modified, const Standard_Real Angmin = 1.0e-2, const Standard_Real Angmax = 6.0); //! Perform simulation of the sweep : - //! Somes Section are returned. + //! Some Section are returned. Standard_EXPORT void Simulate (const Standard_Integer NumberOfSection, TopTools_ListOfShape& Sections); //! Builds the resulting shape (redefined from MakeShape). diff --git a/src/BRepFill/BRepFill_Sweep.cxx b/src/BRepFill/BRepFill_Sweep.cxx index bcefa9df55..6bf311cefb 100644 --- a/src/BRepFill/BRepFill_Sweep.cxx +++ b/src/BRepFill/BRepFill_Sweep.cxx @@ -2890,7 +2890,7 @@ BRepFill_Sweep::BRepFill_Sweep(const Handle(BRepFill_SectionLaw)& Section, //======================================================================= //function : Build -//purpose : Construt the result of sweeping +//purpose : Construct the result of sweeping //====================================================================== void BRepFill_Sweep::Build(TopTools_MapOfShape& ReversedEdges, BRepFill_DataMapOfShapeHArray2OfShape& Tapes, diff --git a/src/BRepFill/BRepFill_Sweep.hxx b/src/BRepFill/BRepFill_Sweep.hxx index 24979e63e6..67f8d127a2 100644 --- a/src/BRepFill/BRepFill_Sweep.hxx +++ b/src/BRepFill/BRepFill_Sweep.hxx @@ -64,7 +64,7 @@ public: //! Tolerance To controle Corner management. //! //! If the discontinuity is lesser than in radian The - //! Transition Performed will be alway "Modified" + //! Transition Performed will be always "Modified" Standard_EXPORT void SetAngularControl (const Standard_Real AngleMin = 0.01, const Standard_Real AngleMax = 6.0); //! Set the flag that indicates attempt to approximate @@ -72,13 +72,13 @@ public: //! to be C0. Standard_EXPORT void SetForceApproxC1 (const Standard_Boolean ForceApproxC1); - //! Build the Sweep Surface + //! Build the Sweep Surface //! Transition define Transition strategy //! Approx define Approximation Strategy //! - GeomFill_Section : The composed Function Location X Section //! is directly approximated. //! - GeomFill_Location : The location law is approximated, and the - //! SweepSurface is bulid algebric composition + //! SweepSurface builds an algebraic composition //! of approximated location law and section law //! This option is Ok, if Section.Surface() methode //! is effective. diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx b/src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx index 6612755ef0..4e8845e6e6 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx @@ -37,7 +37,7 @@ class TopoDS_Edge; //! - define if necessary a new tolerance //! - set if necessary analysis of degenerated shapes off //! - add shapes to be controlled -> Add -//! - compute -> Perfom +//! - compute -> Perform //! - output couples of connected edges for control //! - output the problems if any class BRepOffsetAPI_FindContigousEdges diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.cxx b/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.cxx index 9688969ada..6fbb5ac684 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.cxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.cxx @@ -166,7 +166,7 @@ void BRepOffsetAPI_MakeOffset::Init(const GeomAbs_JoinType Join, //======================================================================= //function : SetApprox //purpose : Set approximation flag -// for convertion input contours into ones consisting of +// for conversion input contours into ones consisting of // 2D circular arcs and 2D linear segments only //======================================================================= diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx b/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx index 42907bdcc6..bed453d778 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx @@ -64,7 +64,7 @@ public: Standard_EXPORT void Init (const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); //! Set approximation flag - //! for convertion input contours into ones consisting of + //! for conversion input contours into ones consisting of //! 2D circular arcs and 2D linear segments only. Standard_EXPORT void SetApprox (const Standard_Boolean ToApprox); diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.hxx b/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.hxx index acb40eb6f1..58c7d7705e 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.hxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.hxx @@ -114,7 +114,7 @@ public: const Standard_Boolean RemoveIntEdges = Standard_False, const Message_ProgressRange& theRange = Message_ProgressRange()); - //! Returns instance of the unrelying intersection / arc algorithm. + //! Returns instance of the underlying intersection / arc algorithm. Standard_EXPORT virtual const BRepOffset_MakeOffset& MakeOffset() const; //! Does nothing. diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx b/src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx index 4533640e4b..d3441e802d 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx @@ -112,7 +112,7 @@ public: //! along the path. //! Give section to sweep. //! Possibilities are : - //! - Give one or sevral section + //! - Give one or several section //! - Give one profile and an homotetic law. //! - Automatic compute of correspondence between spine, and section //! on the sweeped shape diff --git a/src/BRepTest/BRepTest_Fillet2DCommands.cxx b/src/BRepTest/BRepTest_Fillet2DCommands.cxx index 4761f4a451..43c2ae4329 100644 --- a/src/BRepTest/BRepTest_Fillet2DCommands.cxx +++ b/src/BRepTest/BRepTest_Fillet2DCommands.cxx @@ -306,7 +306,7 @@ static Standard_Integer fillet2d(Draw_Interpretor& di, Standard_Integer n, const Standard_Boolean status = algo.Perform(radius); if (!status) { - di << "Error: the algrithm failed."; + di << "Error: the algorithm failed."; return 1; } @@ -326,7 +326,7 @@ static Standard_Integer fillet2d(Draw_Interpretor& di, Standard_Integer n, const TopoDS_Edge fillet = algo.Result(common, M1, M2); if (fillet.IsNull()) { - di << "Error: the algrithm produced no result."; + di << "Error: the algorithm produced no result."; return 1; } @@ -403,7 +403,7 @@ static Standard_Integer chamfer2d(Draw_Interpretor& di, Standard_Integer n, cons TopoDS_Edge chamfer = algo.Result(M1, M2, length1, length2); if (chamfer.IsNull()) { - di << "Error: the algrithm produced no result."; + di << "Error: the algorithm produced no result."; return 1; } diff --git a/src/BSplCLib/BSplCLib_CurveComputation.gxx b/src/BSplCLib/BSplCLib_CurveComputation.gxx index e56b5df13c..e684cb56ad 100644 --- a/src/BSplCLib/BSplCLib_CurveComputation.gxx +++ b/src/BSplCLib/BSplCLib_CurveComputation.gxx @@ -1263,7 +1263,7 @@ void BSplCLib::MovePoint (const Standard_Real U, } } - // find a kk2 if symetriy + // find a kk2 if symmetry kk2 = kk1; i = kk1 - FirstNonZeroBsplineIndex + 2; if ((kk1+1) <= LastIndex) { diff --git a/src/BSplSLib/BSplSLib.cxx b/src/BSplSLib/BSplSLib.cxx index fdd070abf9..1b7f8222aa 100644 --- a/src/BSplSLib/BSplSLib.cxx +++ b/src/BSplSLib/BSplSLib.cxx @@ -2845,7 +2845,7 @@ void BSplSLib::MovePoint (const Standard_Real U, } } - // find a ukk2 if symetriy + // find a ukk2 if symmetry ukk2 = ukk1; i = ukk1 - UFirstNonZeroBsplineIndex + 2; if ((ukk1+1) <= ULastIndex) { @@ -2871,7 +2871,7 @@ void BSplSLib::MovePoint (const Standard_Real U, } } - // find a vkk2 if symetriy + // find a vkk2 if symmetry vkk2 = vkk1; j = vkk1 - VFirstNonZeroBsplineIndex + 2; if ((vkk1+1) <= VLastIndex) { diff --git a/src/Blend/Blend_AppFunction.hxx b/src/Blend/Blend_AppFunction.hxx index 5494ea4b92..d9e62a236b 100644 --- a/src/Blend/Blend_AppFunction.hxx +++ b/src/Blend/Blend_AppFunction.hxx @@ -115,7 +115,7 @@ public: //! Returns the point on the first support. Standard_EXPORT virtual const gp_Pnt& Pnt2() const = 0; - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT virtual Standard_Boolean IsRational() const = 0; //! Returns the length of the maximum section @@ -145,7 +145,7 @@ public: Standard_Integer& NbPoles2d) = 0; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/Blend/Blend_CSFunction.hxx b/src/Blend/Blend_CSFunction.hxx index 07922ddeeb..06618ebc13 100644 --- a/src/Blend/Blend_CSFunction.hxx +++ b/src/Blend/Blend_CSFunction.hxx @@ -148,7 +148,7 @@ public: Standard_EXPORT virtual void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE = 0; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/Blend/Blend_RstRstFunction.hxx b/src/Blend/Blend_RstRstFunction.hxx index b7f26346bd..54cfd91d36 100644 --- a/src/Blend/Blend_RstRstFunction.hxx +++ b/src/Blend/Blend_RstRstFunction.hxx @@ -156,7 +156,7 @@ public: //! but the values calculated can be senseless. Standard_EXPORT virtual Blend_DecrochStatus Decroch (const math_Vector& Sol, gp_Vec& NRst1, gp_Vec& TgRst1, gp_Vec& NRst2, gp_Vec& TgRst2) const = 0; - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT virtual Standard_Boolean IsRational() const = 0; //! Returns the length of the maximum section @@ -180,7 +180,7 @@ public: Standard_EXPORT virtual void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) = 0; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/Blend/Blend_SurfRstFunction.hxx b/src/Blend/Blend_SurfRstFunction.hxx index f6cf7a9e1e..6b152a61b7 100644 --- a/src/Blend/Blend_SurfRstFunction.hxx +++ b/src/Blend/Blend_SurfRstFunction.hxx @@ -150,7 +150,7 @@ public: //! specific to the function. Standard_EXPORT virtual Standard_Boolean Decroch (const math_Vector& Sol, gp_Vec& NS, gp_Vec& TgS) const = 0; - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT virtual Standard_Boolean IsRational() const = 0; //! Returns the length of the maximum section @@ -174,7 +174,7 @@ public: Standard_EXPORT virtual void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) = 0; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/BlendFunc/BlendFunc_CSCircular.hxx b/src/BlendFunc/BlendFunc_CSCircular.hxx index a5c7f800de..7b95738b74 100644 --- a/src/BlendFunc/BlendFunc_CSCircular.hxx +++ b/src/BlendFunc/BlendFunc_CSCircular.hxx @@ -116,7 +116,7 @@ public: Standard_EXPORT void Set (const Standard_Real Radius, const Standard_Integer Choix); - //! Sets the type of section generation for the + //! Sets the type of section generation for the //! approximations. Standard_EXPORT void Set (const BlendFunc_SectionShape TypeSection); @@ -129,7 +129,7 @@ public: Standard_EXPORT Standard_Boolean GetSection (const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, TColgp_Array1OfPnt& tabP, TColgp_Array1OfVec& tabV); - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns the length of the maximum section @@ -143,7 +143,7 @@ public: //! . May be one if Continuity(me) >= Standard_EXPORT Standard_Integer NbIntervals (const GeomAbs_Shape S) const Standard_OVERRIDE; - //! Stores in the parameters bounding the intervals + //! Stores in the parameters bounding the intervals //! of continuity . //! //! The array must provide enough room to accommodate @@ -155,7 +155,7 @@ public: Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/BlendFunc/BlendFunc_CSConstRad.hxx b/src/BlendFunc/BlendFunc_CSConstRad.hxx index 24ca3f43d1..8dc381fa0d 100644 --- a/src/BlendFunc/BlendFunc_CSConstRad.hxx +++ b/src/BlendFunc/BlendFunc_CSConstRad.hxx @@ -117,7 +117,7 @@ public: Standard_EXPORT Standard_Boolean GetSection (const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, TColgp_Array1OfPnt& tabP, TColgp_Array1OfVec& tabV); - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns the length of the maximum section @@ -142,7 +142,7 @@ public: Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/BlendFunc/BlendFunc_ChAsym.hxx b/src/BlendFunc/BlendFunc_ChAsym.hxx index aeb6ec0c8c..ff14a47ef3 100644 --- a/src/BlendFunc/BlendFunc_ChAsym.hxx +++ b/src/BlendFunc/BlendFunc_ChAsym.hxx @@ -111,7 +111,7 @@ public: //! Utile pour une visu rapide et approximative de la surface. Standard_EXPORT void Section (const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, Standard_Real& Pdeb, Standard_Real& Pfin, gp_Lin& C); - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns the length of the maximum section @@ -135,7 +135,7 @@ public: Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/BlendFunc/BlendFunc_ConstRad.cxx b/src/BlendFunc/BlendFunc_ConstRad.cxx index 91b0fb5a73..6ebbe6fd15 100644 --- a/src/BlendFunc/BlendFunc_ConstRad.cxx +++ b/src/BlendFunc/BlendFunc_ConstRad.cxx @@ -62,7 +62,7 @@ BlendFunc_ConstRad::BlendFunc_ConstRad(const Handle(Adaptor3d_Surface)& S1, distmin(RealLast()), mySShape(BlendFunc_Rational) { -// Initialisaton of cash control variables. +// Initialisation of cash control variables. tval = -9.876e100; xval.Init(-9.876e100); myXOrder = -1; diff --git a/src/BlendFunc/BlendFunc_ConstRad.hxx b/src/BlendFunc/BlendFunc_ConstRad.hxx index 668468a74e..332dd4d6d8 100644 --- a/src/BlendFunc/BlendFunc_ConstRad.hxx +++ b/src/BlendFunc/BlendFunc_ConstRad.hxx @@ -116,7 +116,7 @@ public: //! Utile pour une visu rapide et approximative de la surface. Standard_EXPORT void Section (const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, Standard_Real& Pdeb, Standard_Real& Pfin, gp_Circ& C); - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns the length of the maximum section @@ -140,7 +140,7 @@ public: Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/BlendFunc/BlendFunc_EvolRad.hxx b/src/BlendFunc/BlendFunc_EvolRad.hxx index 16fe6d82dd..c59558165b 100644 --- a/src/BlendFunc/BlendFunc_EvolRad.hxx +++ b/src/BlendFunc/BlendFunc_EvolRad.hxx @@ -108,14 +108,14 @@ public: Standard_EXPORT void Set (const Standard_Integer Choix); - //! Sets the type of section generation for the + //! Sets the type of section generation for the //! approximations. Standard_EXPORT void Set (const BlendFunc_SectionShape TypeSection); //! Method for graphic traces Standard_EXPORT void Section (const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, Standard_Real& Pdeb, Standard_Real& Pfin, gp_Circ& C); - //! Returns if the section is rationnal + //! Returns if the section is rational Standard_EXPORT Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns the length of the maximum section @@ -139,7 +139,7 @@ public: Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/BlendFunc/BlendFunc_GenChamfer.hxx b/src/BlendFunc/BlendFunc_GenChamfer.hxx index 79d5f3fadb..99bd130a73 100644 --- a/src/BlendFunc/BlendFunc_GenChamfer.hxx +++ b/src/BlendFunc/BlendFunc_GenChamfer.hxx @@ -105,7 +105,7 @@ public: Standard_Integer& NbPoles2d) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/BlendFunc/BlendFunc_Ruled.hxx b/src/BlendFunc/BlendFunc_Ruled.hxx index b0e8d56356..9293ea161c 100644 --- a/src/BlendFunc/BlendFunc_Ruled.hxx +++ b/src/BlendFunc/BlendFunc_Ruled.hxx @@ -127,7 +127,7 @@ public: Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary //! SurfTol error inside the surface. diff --git a/src/Extrema/Extrema_ExtCS.hxx b/src/Extrema/Extrema_ExtCS.hxx index d9110ec5a1..55b34a2663 100644 --- a/src/Extrema/Extrema_ExtCS.hxx +++ b/src/Extrema/Extrema_ExtCS.hxx @@ -60,7 +60,7 @@ public: Standard_EXPORT void Initialize (const Adaptor3d_Surface& S, const Standard_Real Uinf, const Standard_Real Usup, const Standard_Real Vinf, const Standard_Real Vsup, const Standard_Real TolC, const Standard_Real TolS); //! Computes the distances. - //! An exception is raised if the fieds have not been + //! An exception is raised if the fields have not been //! initialized. Standard_EXPORT void Perform (const Adaptor3d_Curve& C, const Standard_Real Uinf, const Standard_Real Usup); diff --git a/src/Extrema/Extrema_ExtPS.hxx b/src/Extrema/Extrema_ExtPS.hxx index 60c9aadade..b2359c2574 100644 --- a/src/Extrema/Extrema_ExtPS.hxx +++ b/src/Extrema/Extrema_ExtPS.hxx @@ -72,7 +72,7 @@ public: Standard_EXPORT void Initialize (const Adaptor3d_Surface& S, const Standard_Real Uinf, const Standard_Real Usup, const Standard_Real Vinf, const Standard_Real Vsup, const Standard_Real TolU, const Standard_Real TolV); //! Computes the distances. - //! An exception is raised if the fieds have not been + //! An exception is raised if the fields have not been //! initialized. Standard_EXPORT void Perform (const gp_Pnt& P); diff --git a/src/Extrema/Extrema_ExtSS.hxx b/src/Extrema/Extrema_ExtSS.hxx index 5ec6f7c5fe..968b23dbe6 100644 --- a/src/Extrema/Extrema_ExtSS.hxx +++ b/src/Extrema/Extrema_ExtSS.hxx @@ -51,7 +51,7 @@ public: Standard_EXPORT void Initialize (const Adaptor3d_Surface& S2, const Standard_Real Uinf2, const Standard_Real Usup2, const Standard_Real Vinf2, const Standard_Real Vsup2, const Standard_Real TolS1); //! Computes the distances. - //! An exception is raised if the fieds have not been + //! An exception is raised if the fields have not been //! initialized. Standard_EXPORT void Perform (const Adaptor3d_Surface& S1, const Standard_Real Uinf1, const Standard_Real Usup1, const Standard_Real Vinf1, const Standard_Real Vsup1, const Standard_Real TolS1); diff --git a/src/FairCurve/FairCurve_Energy.hxx b/src/FairCurve/FairCurve_Energy.hxx index 6efdfd8f7a..aaa74bf473 100644 --- a/src/FairCurve/FairCurve_Energy.hxx +++ b/src/FairCurve/FairCurve_Energy.hxx @@ -77,7 +77,7 @@ public: protected: - //! Angles corresspond to the Ox axis + //! Angles correspond to the Ox axis //! ConstrOrder1(2) can be equal to 0, 1 or 2 Standard_EXPORT FairCurve_Energy(const Handle(TColgp_HArray1OfPnt2d)& Poles, const Standard_Integer ConstrOrder1, const Standard_Integer ConstrOrder2, const Standard_Boolean WithAuxValue = Standard_False, const Standard_Real Angle1 = 0, const Standard_Real Angle2 = 0, const Standard_Integer Degree = 2, const Standard_Real Curvature1 = 0, const Standard_Real Curvature2 = 0); @@ -92,13 +92,13 @@ protected: Standard_Integer Indice (const Standard_Integer i, const Standard_Integer j) const; - //! compute the pole which depend of variables and G1 constraint + //! compute the pole which depend of variables and G1 constraint Standard_EXPORT void ComputePolesG1 (const Standard_Integer Side, const Standard_Real Lambda, const gp_Pnt2d& P1, gp_Pnt2d& P2) const; - //! compute the pole which depend of variables and G2 constraint + //! compute the pole which depend of variables and G2 constraint Standard_EXPORT void ComputePolesG2 (const Standard_Integer Side, const Standard_Real Lambda, const Standard_Real Rho, const gp_Pnt2d& P1, gp_Pnt2d& P2) const; - //! compute the energy (and derivatives) in intermediat format + //! compute the energy (and derivatives) in intermediate format Standard_EXPORT virtual Standard_Boolean Compute (const Standard_Integer DerivativeOrder, math_Vector& Result) = 0; diff --git a/src/FairCurve/FairCurve_EnergyOfBatten.hxx b/src/FairCurve/FairCurve_EnergyOfBatten.hxx index cb9b5ea3e4..d660da09d3 100644 --- a/src/FairCurve/FairCurve_EnergyOfBatten.hxx +++ b/src/FairCurve/FairCurve_EnergyOfBatten.hxx @@ -45,7 +45,7 @@ public: DEFINE_STANDARD_ALLOC - //! Angles corresspond to the Ox axis + //! Angles correspond to the Ox axis Standard_EXPORT FairCurve_EnergyOfBatten(const Standard_Integer BSplOrder, const Handle(TColStd_HArray1OfReal)& FlatKnots, const Handle(TColgp_HArray1OfPnt2d)& Poles, const Standard_Integer ContrOrder1, const Standard_Integer ContrOrder2, const FairCurve_BattenLaw& Law, const Standard_Real LengthSliding, const Standard_Boolean FreeSliding = Standard_True, const Standard_Real Angle1 = 0, const Standard_Real Angle2 = 0); //! return the lengthSliding = P1P2 + Sliding @@ -66,7 +66,7 @@ protected: //! compute the poles which correspond with the variable X Standard_EXPORT virtual void ComputePoles (const math_Vector& X) Standard_OVERRIDE; - //! compute the energy in intermediat format + //! compute the energy in intermediate format Standard_EXPORT virtual Standard_Boolean Compute (const Standard_Integer DerivativeOrder, math_Vector& Result) Standard_OVERRIDE; diff --git a/src/FairCurve/FairCurve_EnergyOfMVC.hxx b/src/FairCurve/FairCurve_EnergyOfMVC.hxx index 85e5519299..0bd06008d9 100644 --- a/src/FairCurve/FairCurve_EnergyOfMVC.hxx +++ b/src/FairCurve/FairCurve_EnergyOfMVC.hxx @@ -45,7 +45,7 @@ public: DEFINE_STANDARD_ALLOC - //! Angles corresspond to the Ox axis + //! Angles correspond to the Ox axis Standard_EXPORT FairCurve_EnergyOfMVC(const Standard_Integer BSplOrder, const Handle(TColStd_HArray1OfReal)& FlatKnots, const Handle(TColgp_HArray1OfPnt2d)& Poles, const Standard_Integer ContrOrder1, const Standard_Integer ContrOrder2, const FairCurve_BattenLaw& Law, const Standard_Real PhysicalRatio, const Standard_Real LengthSliding, const Standard_Boolean FreeSliding = Standard_True, const Standard_Real Angle1 = 0, const Standard_Real Angle2 = 0, const Standard_Real Curvature1 = 0, const Standard_Real Curvature2 = 0); //! return the lengthSliding = P1P2 + Sliding @@ -63,10 +63,10 @@ public: protected: - //! compute the poles which correspond with the variable X + //! compute the poles which correspond with the variable X Standard_EXPORT virtual void ComputePoles (const math_Vector& X) Standard_OVERRIDE; - //! compute the energy in intermediat format + //! compute the energy in intermediate format Standard_EXPORT virtual Standard_Boolean Compute (const Standard_Integer DerivativeOrder, math_Vector& Result) Standard_OVERRIDE; diff --git a/src/Geom2dConvert/Geom2dConvert.cxx b/src/Geom2dConvert/Geom2dConvert.cxx index a120df013b..2c889a2baf 100644 --- a/src/Geom2dConvert/Geom2dConvert.cxx +++ b/src/Geom2dConvert/Geom2dConvert.cxx @@ -598,7 +598,7 @@ static void Pretreatment(TColGeom2d_Array1OfBSplineCurve& tab) //======================================================================= //function : NeedToBeTreated -//purpose : Say if the BSpline is rationnal and if the two first and two +//purpose : Say if the BSpline is rational and if the two first and two // last weigths are different //======================================================================= diff --git a/src/GeomConvert/GeomConvert.cxx b/src/GeomConvert/GeomConvert.cxx index 1505342883..e92e4904df 100644 --- a/src/GeomConvert/GeomConvert.cxx +++ b/src/GeomConvert/GeomConvert.cxx @@ -616,7 +616,7 @@ static void Pretreatment(TColGeom_Array1OfBSplineCurve& tab) //======================================================================= //function : NeedToBeTreated -//purpose : Say if the BSpline is rationnal and if the two first and two +//purpose : Say if the BSpline is rational and if the two first and two // last weigths are different //======================================================================= diff --git a/src/GeomFill/GeomFill_CircularBlendFunc.hxx b/src/GeomFill/GeomFill_CircularBlendFunc.hxx index 015d3edbeb..a3ea392667 100644 --- a/src/GeomFill/GeomFill_CircularBlendFunc.hxx +++ b/src/GeomFill/GeomFill_CircularBlendFunc.hxx @@ -79,7 +79,7 @@ public: //! get the Multplicities of the section Standard_EXPORT virtual void Mults (TColStd_Array1OfInteger& TMults) const Standard_OVERRIDE; - //! Returns if the section is rationnal or not + //! Returns if the section is rational or not Standard_EXPORT virtual Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns the number of intervals for continuity @@ -100,7 +100,7 @@ public: Standard_EXPORT virtual void SetInterval (const Standard_Real First, const Standard_Real Last) Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary (in radian) //! SurfTol error inside the surface. diff --git a/src/GeomFill/GeomFill_EvolvedSection.hxx b/src/GeomFill/GeomFill_EvolvedSection.hxx index 71e48bac87..ad735004e0 100644 --- a/src/GeomFill/GeomFill_EvolvedSection.hxx +++ b/src/GeomFill/GeomFill_EvolvedSection.hxx @@ -74,7 +74,7 @@ public: //! get the Multplicities of the section Standard_EXPORT virtual void Mults (TColStd_Array1OfInteger& TMults) const Standard_OVERRIDE; - //! Returns if the sections are rationnal or not + //! Returns if the sections are rational or not Standard_EXPORT virtual Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns if the sections are periodic or not diff --git a/src/GeomFill/GeomFill_NSections.hxx b/src/GeomFill/GeomFill_NSections.hxx index b5dc687b48..00fe3f05ad 100644 --- a/src/GeomFill/GeomFill_NSections.hxx +++ b/src/GeomFill/GeomFill_NSections.hxx @@ -100,7 +100,7 @@ public: //! get the Multplicities of the section Standard_EXPORT virtual void Mults (TColStd_Array1OfInteger& TMults) const Standard_OVERRIDE; - //! Returns if the sections are rationnal or not + //! Returns if the sections are rational or not Standard_EXPORT virtual Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns if the sections are periodic or not diff --git a/src/GeomFill/GeomFill_SectionLaw.hxx b/src/GeomFill/GeomFill_SectionLaw.hxx index dec90fb964..3c8a149efd 100644 --- a/src/GeomFill/GeomFill_SectionLaw.hxx +++ b/src/GeomFill/GeomFill_SectionLaw.hxx @@ -69,7 +69,7 @@ public: //! get the Multplicities of the section Standard_EXPORT virtual void Mults (TColStd_Array1OfInteger& TMults) const = 0; - //! Returns if the sections are rationnal or not + //! Returns if the sections are rational or not Standard_EXPORT virtual Standard_Boolean IsRational() const = 0; //! Returns if the sections are periodic or not diff --git a/src/GeomFill/GeomFill_SweepFunction.hxx b/src/GeomFill/GeomFill_SweepFunction.hxx index 2cbc23692c..12f96812dd 100644 --- a/src/GeomFill/GeomFill_SweepFunction.hxx +++ b/src/GeomFill/GeomFill_SweepFunction.hxx @@ -99,7 +99,7 @@ public: Standard_EXPORT virtual void Resolution (const Standard_Integer Index, const Standard_Real Tol, Standard_Real& TolU, Standard_Real& TolV) const Standard_OVERRIDE; //! Returns the tolerance to reach in approximation - //! to respecte + //! to respect //! BoundTol error at the Boundary //! AngleTol tangent error at the Boundary (in radian) //! SurfTol error inside the surface. diff --git a/src/GeomFill/GeomFill_UniformSection.hxx b/src/GeomFill/GeomFill_UniformSection.hxx index 8b33e2efe7..c9c2410638 100644 --- a/src/GeomFill/GeomFill_UniformSection.hxx +++ b/src/GeomFill/GeomFill_UniformSection.hxx @@ -74,7 +74,7 @@ public: //! get the Multplicities of the section Standard_EXPORT virtual void Mults (TColStd_Array1OfInteger& TMults) const Standard_OVERRIDE; - //! Returns if the sections are rationnal or not + //! Returns if the sections are rational or not Standard_EXPORT virtual Standard_Boolean IsRational() const Standard_OVERRIDE; //! Returns if the sections are periodic or not diff --git a/src/GeomLib/GeomLib.cxx b/src/GeomLib/GeomLib.cxx index d6d120129c..f4767e7085 100644 --- a/src/GeomLib/GeomLib.cxx +++ b/src/GeomLib/GeomLib.cxx @@ -1985,7 +1985,7 @@ void GeomLib::AxeOfInertia(const TColgp_Array1OfPnt& Points, //function : CanBeTreated //purpose : indicates if the surface can be treated(if the conditions are // filled) and need to be treated(if the surface hasn't been yet -// treated or if the surface is rationnal and non periodic) +// treated or if the surface is rational and non periodic) //======================================================================= static Standard_Boolean CanBeTreated(Handle(Geom_BSplineSurface)& BSurf) diff --git a/src/GeomPlate/GeomPlate_BuildAveragePlane.hxx b/src/GeomPlate/GeomPlate_BuildAveragePlane.hxx index 0a27e51848..d8afdcf48f 100644 --- a/src/GeomPlate/GeomPlate_BuildAveragePlane.hxx +++ b/src/GeomPlate/GeomPlate_BuildAveragePlane.hxx @@ -42,9 +42,9 @@ public: DEFINE_STANDARD_ALLOC - //! Tol is a Tolerance to make the difference between + //! Tol is a Tolerance to make the difference between //! the result plane and the result line. - //! if POption = 1 : automatical parametrisation + //! if POption = 1 : automatic parametrisation //! if POption = 2 : parametrisation by eigen vectors //! if NOption = 1 : the average plane is the inertial plane. //! if NOption = 2 : the average plane is the plane of max. flux. diff --git a/src/GeomPlate/GeomPlate_BuildPlateSurface.cxx b/src/GeomPlate/GeomPlate_BuildPlateSurface.cxx index 9f018a8a4d..c06b14d026 100644 --- a/src/GeomPlate/GeomPlate_BuildPlateSurface.cxx +++ b/src/GeomPlate/GeomPlate_BuildPlateSurface.cxx @@ -1986,7 +1986,7 @@ Intersect(Handle(GeomPlate_HArray1OfSequenceOfReal)& PntInter, // the table of sequences Parcont contains all // parameter of points on curves // Field myPlateCont contains parameter of points on a plate; -// it excludes duplicate points and imcompatible zones. +// it excludes duplicate points and incompatible zones. // The first part corresponds to verification of compatibility // and to removal of duplicate points. //--------------------------------------------------------- diff --git a/src/IntCurveSurface/IntCurveSurface_Inter.gxx b/src/IntCurveSurface/IntCurveSurface_Inter.gxx index 3624a2f857..b03ded458d 100644 --- a/src/IntCurveSurface/IntCurveSurface_Inter.gxx +++ b/src/IntCurveSurface/IntCurveSurface_Inter.gxx @@ -1842,7 +1842,7 @@ void EstLimForInfRevl(const gp_Lin& Line, gp_Pln aPlnPrp = aPln.Rotated (gp_Ax1 (O,aXVec), M_PI/2.); // project Line and it's X-axe symmetric one to plane and intersect - // resulting curve with projection of Basic Curev + // resulting curve with projection of Basic Curve Standard_Real aVmin = RealLast(), aVmax = -aVmin; Standard_Boolean aNoInt1 = Standard_False, aNoInt2 = Standard_False; ProjectIntersectAndEstLim (Line, aPln, aBasCurvProj, aVmin, aVmax, aNoInt1); diff --git a/src/IntWalk/IntWalk_IWalking_5.gxx b/src/IntWalk/IntWalk_IWalking_5.gxx index ebc381f547..2d5cf5e10e 100644 --- a/src/IntWalk/IntWalk_IWalking_5.gxx +++ b/src/IntWalk/IntWalk_IWalking_5.gxx @@ -239,7 +239,7 @@ IntWalk_StatusDeflection IntWalk_IWalking::TestDeflection // the norm (square) of 3.*lambda (d1 - d4)/8. // either the norm of : // 3.*(Sqrt(Norme)/3.)*StepSign*(d1-d4)/8. - // which produces, takin the square : + // which produces, taking the square : // Norme * (d1-d4).SquareMagnitude()/64. Standard_Real FlecheCourante = diff --git a/src/OSD/OSD.cxx b/src/OSD/OSD.cxx index a2fbb7d05b..2f47bf71a5 100644 --- a/src/OSD/OSD.cxx +++ b/src/OSD/OSD.cxx @@ -28,7 +28,7 @@ Standard_Boolean OSD::RealToCString(const Standard_Real aReal, if (Sprintf(aString,"%.17e",aReal) <= 0) //BUC60808 return Standard_False ; - // Suppress "e+00" and unsignificant 0's + // Suppress "e+00" and insignificant 0's p = strchr(aString,'e'); if (p) { diff --git a/src/OSD/OSD_Error.cxx b/src/OSD/OSD_Error.cxx index 89c1b35108..22277616f8 100755 --- a/src/OSD/OSD_Error.cxx +++ b/src/OSD/OSD_Error.cxx @@ -315,7 +315,7 @@ void OSD_Error::Perror() { } break; case EINTR: - buffer += "operation breaked by a signal"; + buffer += "operation broken by a signal"; extCode = ERR_INTR; break; case ENOMEM: diff --git a/src/PrsDim/PrsDim.hxx b/src/PrsDim/PrsDim.hxx index 4a98ab75bc..1d5da30dd1 100644 --- a/src/PrsDim/PrsDim.hxx +++ b/src/PrsDim/PrsDim.hxx @@ -105,7 +105,7 @@ public: Standard_EXPORT static Standard_Boolean ComputeGeometry (const TopoDS_Vertex& aVertex, gp_Pnt& point, const Handle(Geom_Plane)& aPlane, Standard_Boolean& isOnPlane); - //! Tryes to get Plane from Face. Returns Surface of Face + //! Tries to get Plane from Face. Returns Surface of Face //! in aSurf. Returns Standard_True and Plane of Face in //! aPlane in following cases: //! Face is Plane, Offset of Plane, diff --git a/src/PrsDim/PrsDim_AngleDimension.cxx b/src/PrsDim/PrsDim_AngleDimension.cxx index 8d480a9686..ed0d9e0ab1 100644 --- a/src/PrsDim/PrsDim_AngleDimension.cxx +++ b/src/PrsDim/PrsDim_AngleDimension.cxx @@ -502,7 +502,7 @@ void PrsDim_AngleDimension::DrawArcWithText (const Handle(Prs3d_Presentation)& t if (isLineBreak) { - // compute gap for label as parameteric size of sector on circle segment + // compute gap for label as parametric size of sector on circle segment Standard_Real aSectorOfText = theTextWidth / aRadius; Standard_Real aTextBegin = aParamMid - aSectorOfText * 0.5; Standard_Real aTextEnd = aParamMid + aSectorOfText * 0.5; diff --git a/src/PrsDim/PrsDim_DiameterDimension.hxx b/src/PrsDim/PrsDim_DiameterDimension.hxx index 04a1370416..a062a982e1 100644 --- a/src/PrsDim/PrsDim_DiameterDimension.hxx +++ b/src/PrsDim/PrsDim_DiameterDimension.hxx @@ -31,7 +31,7 @@ DEFINE_STANDARD_HANDLE(PrsDim_DiameterDimension, PrsDim_Dimension) //! - On generic circle in the specified plane. //! - On generic shape containing geometry that can be measured //! by diameter dimension: circle wire, circular face, etc. -//! The anchor point is the location of the left attachement point of +//! The anchor point is the location of the left attachment point of //! dimension on the circle. //! The anchor point computation is processed after dimension plane setting //! so that positive flyout direction stands with normal of the circle and diff --git a/src/PrsDim/PrsDim_Dimension.cxx b/src/PrsDim/PrsDim_Dimension.cxx index ca11eccfaa..be3e013c78 100644 --- a/src/PrsDim/PrsDim_Dimension.cxx +++ b/src/PrsDim/PrsDim_Dimension.cxx @@ -440,7 +440,7 @@ void PrsDim_Dimension::drawText (const Handle(Prs3d_Presentation)& thePresentati aTextWidth += aFont.AdvanceX (aCurrChar, aNextChar); } - // formating text position in XOY plane + // formatting text position in XOY plane Standard_Integer aHLabelPos = theLabelPosition & LabelPosition_HMask; Standard_Integer aVLabelPos = theLabelPosition & LabelPosition_VMask; diff --git a/src/PrsDim/PrsDim_IdenticRelation.cxx b/src/PrsDim/PrsDim_IdenticRelation.cxx index abdd768f77..9d64752e6d 100644 --- a/src/PrsDim/PrsDim_IdenticRelation.cxx +++ b/src/PrsDim/PrsDim_IdenticRelation.cxx @@ -362,7 +362,7 @@ void PrsDim_IdenticRelation::ComputeSelection(const Handle(SelectMgr_Selection)& Handle(SelectMgr_EntityOwner) own = new SelectMgr_EntityOwner(this,7); Handle(Select3D_SensitiveSegment) seg; - // attachement point of the segment linking position to the curve + // attachment point of the segment linking position to the curve gp_Pnt attach; Standard_Real confusion (Precision::Confusion()); @@ -437,7 +437,7 @@ void PrsDim_IdenticRelation::ComputeSelection(const Handle(SelectMgr_Selection)& // jfa 24/10/2000 end } - // Creation of the segment linking the attachement point with the + // Creation of the segment linking the attachment point with the // position if ( !attach.IsEqual(myPosition, confusion) ) { @@ -1424,7 +1424,7 @@ void PrsDim_IdenticRelation::ComputeTwoVerticesPresentation(const Handle(Prs3d_P return ; - // The attachement points are the points themselves that must be + // The attachment points are the points themselves that must be //identical myFAttach = BRep_Tool::Pnt(FVertex); mySAttach = myFAttach; @@ -1657,7 +1657,7 @@ void PrsDim_IdenticRelation::ComputeOneEdgeOVertexPresentation(const Handle(Prs3 if (numedge == 1) myExtShape = 2; else myExtShape = 1; } - // The attachement points are the point + // The attachment points are the point myFAttach = BRep_Tool::Pnt(V); mySAttach = myFAttach; diff --git a/src/PrsDim/PrsDim_LengthDimension.cxx b/src/PrsDim/PrsDim_LengthDimension.cxx index e0bb95b055..a3927d1a97 100644 --- a/src/PrsDim/PrsDim_LengthDimension.cxx +++ b/src/PrsDim/PrsDim_LengthDimension.cxx @@ -792,7 +792,7 @@ Standard_Boolean PrsDim_LengthDimension::InitTwoShapesPoints (const TopoDS_Shape //function : InitOneShapePoints //purpose : Initialization of two points where dimension layouts // will be attached -// Attention: 1) can be only the edge in currect implementation +// Attention: 1) can be only the edge in current implementation // 2) No length for infinite edge //======================================================================= Standard_Boolean PrsDim_LengthDimension::InitOneShapePoints (const TopoDS_Shape& theShape) diff --git a/src/PrsDim/PrsDim_RadiusDimension.hxx b/src/PrsDim/PrsDim_RadiusDimension.hxx index 1c9b8a2e76..08a37692b8 100644 --- a/src/PrsDim/PrsDim_RadiusDimension.hxx +++ b/src/PrsDim/PrsDim_RadiusDimension.hxx @@ -28,7 +28,7 @@ DEFINE_STANDARD_HANDLE(PrsDim_RadiusDimension, PrsDim_Dimension) //! - On generic circle with user-defined anchor point on that circle. //! - On generic shape containing geometry that can be measured //! by diameter dimension: circle wire, arc, circular face, etc. -//! The anchor point is the location of left attachement point of +//! The anchor point is the location of left attachment point of //! dimension on the circle. It can be user-specified, or computed as //! middle point on the arc. The radius dimension always lies in the //! plane of the measured circle. The dimension is considered as diff --git a/src/STEPConstruct/STEPConstruct.hxx b/src/STEPConstruct/STEPConstruct.hxx index d7219f72ef..e846c60fb2 100644 --- a/src/STEPConstruct/STEPConstruct.hxx +++ b/src/STEPConstruct/STEPConstruct.hxx @@ -46,7 +46,7 @@ public: //! Returns STEP entity of the (sub)type of RepresentationItem - //! which is a result of the tranalation of the Shape, or Null if + //! which is a result of the translation of the Shape, or Null if //! no result is recorded Standard_EXPORT static Handle(StepRepr_RepresentationItem) FindEntity (const Handle(Transfer_FinderProcess)& FinderProcess, const TopoDS_Shape& Shape); @@ -59,7 +59,7 @@ public: //! Returns Shape resulting from given STEP entity (Null if not mapped) Standard_EXPORT static TopoDS_Shape FindShape (const Handle(Transfer_TransientProcess)& TransientProcess, const Handle(StepRepr_RepresentationItem)& item); - //! Find CDSR correcponding to the component in the specified assembly + //! Find CDSR corresponding to the component in the specified assembly Standard_EXPORT static Standard_Boolean FindCDSR (const Handle(Transfer_Binder)& ComponentBinder, const Handle(StepShape_ShapeDefinitionRepresentation)& AssemblySDR, Handle(StepShape_ContextDependentShapeRepresentation)& ComponentCDSR); }; diff --git a/src/STEPConstruct/STEPConstruct_ExternRefs.cxx b/src/STEPConstruct/STEPConstruct_ExternRefs.cxx index 66f63ad566..b99d9a2a28 100644 --- a/src/STEPConstruct/STEPConstruct_ExternRefs.cxx +++ b/src/STEPConstruct/STEPConstruct_ExternRefs.cxx @@ -652,7 +652,7 @@ Standard_Integer STEPConstruct_ExternRefs::AddExternRef (const Standard_CString //Handle(StepBasic_ProductDefinitionWithAssociatedDocuments) PDWAD = // Handle(StepBasic_ProductDefinitionWithAssociatedDocuments)::DownCast(PD); - // searh in graph for replace + // search in graph for replace // Standard_Integer numProdDef; // Interface_EntityIterator subs = Graph().Shareds(SDR); // for (subs.Start(); subs.More(); subs.Next()) { @@ -832,7 +832,7 @@ Standard_Boolean STEPConstruct_ExternRefs::addAP214ExterRef (const Handle(StepAP // create new product definition formation Handle(StepBasic_ProductDefinitionFormation) PDF = new StepBasic_ProductDefinitionFormation; - // name id taked from example Standard_ExtString_ref_master.stp + // name id taken from example Standard_ExtString_ref_master.stp Handle(TCollection_HAsciiString) PDF_ID = new TCollection_HAsciiString("1"); PDF->Init( PDF_ID, EmptyString, Product ); diff --git a/src/STEPConstruct/STEPConstruct_ExternRefs.hxx b/src/STEPConstruct/STEPConstruct_ExternRefs.hxx index 3a9ba665bc..acef104565 100644 --- a/src/STEPConstruct/STEPConstruct_ExternRefs.hxx +++ b/src/STEPConstruct/STEPConstruct_ExternRefs.hxx @@ -116,7 +116,7 @@ public: protected: - //! Create a new additional structure entities and add ncessary references + //! Create a new additional structure entities and add necessary references //! Note: do not refer from ADR to DF directly in AP214 (TRJ11). Standard_EXPORT Standard_Boolean addAP214ExterRef (const Handle(StepAP214_AppliedDocumentReference)& ADR, const Handle(StepBasic_ProductDefinition)& PD, const Handle(StepBasic_DocumentFile)& DF, const Standard_CString filename); diff --git a/src/STEPConstruct/STEPConstruct_ValidationProps.hxx b/src/STEPConstruct/STEPConstruct_ValidationProps.hxx index bbbb8490c8..46f4d23f94 100644 --- a/src/STEPConstruct/STEPConstruct_ValidationProps.hxx +++ b/src/STEPConstruct/STEPConstruct_ValidationProps.hxx @@ -116,7 +116,7 @@ public: Standard_Boolean& isArea, const StepData_Factors& theLocalFactors = StepData_Factors()) const; - //! Returns value of Centriod property (or False if it is not) + //! Returns value of Centroid property (or False if it is not) Standard_EXPORT Standard_Boolean GetPropPnt (const Handle(StepRepr_RepresentationItem)& item, const Handle(StepRepr_RepresentationContext)& Context, gp_Pnt& Pnt, diff --git a/src/SelectMgr/SelectMgr_Selection.hxx b/src/SelectMgr/SelectMgr_Selection.hxx index 50210ad8a3..b9cfca4200 100644 --- a/src/SelectMgr/SelectMgr_Selection.hxx +++ b/src/SelectMgr/SelectMgr_Selection.hxx @@ -92,7 +92,7 @@ public: NCollection_Vector& ChangeEntities() { return myEntities; } //! Returns the flag UpdateFlag. - //! This flage gives the update status of this framework + //! This flag gives the update status of this framework //! in a ViewerSelector object: //! - full //! - partial, or diff --git a/src/SelectMgr/SelectMgr_ViewerSelector.hxx b/src/SelectMgr/SelectMgr_ViewerSelector.hxx index 4537080f63..e03792043e 100644 --- a/src/SelectMgr/SelectMgr_ViewerSelector.hxx +++ b/src/SelectMgr/SelectMgr_ViewerSelector.hxx @@ -269,7 +269,7 @@ public: //! Picks the sensitive entity according to the input axis. //! This is geometric intersection 3D objects by axis - //! (camera parameters are ignored and objects with transform persistance are skipped). + //! (camera parameters are ignored and objects with transform persistence are skipped). Standard_EXPORT void Pick (const gp_Ax1& theAxis, const Handle(V3d_View)& theView); diff --git a/src/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.cxx b/src/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.cxx index cf2aefafdd..29a3bb64d8 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.cxx @@ -171,7 +171,7 @@ void ShapeUpgrade_ConvertCurve2dToBezier::Compute() mySplitValues->SetValue(mySplitValues->Length(),Last); } - // PTV 20.12.2001 Try to simpify BSpline Curve + // PTV 20.12.2001 Try to simplify BSpline Curve ShapeCustom_Curve2d::SimplifyBSpline2d (aBSpline2d, Precision::Approximation()); Geom2dConvert_BSplineCurveToBezierCurve tool(aBSpline2d,First,Last,precision); diff --git a/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx b/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx index d422ed9e46..1900053bcf 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx @@ -239,7 +239,7 @@ Standard_Boolean ShapeUpgrade_RemoveLocations::MakeNewShape(const TopoDS_Shape& } isDone = aRebuild; - //Removing location from sub-shapes in dependance of LevelRemoving and re-building shape. + //Removing location from sub-shapes in dependence of LevelRemoving and re-building shape. if(!isBound) { if(!aRebuild) diff --git a/src/Standard/Standard_Dump.hxx b/src/Standard/Standard_Dump.hxx index c8f2d6facc..602b0bdeca 100644 --- a/src/Standard/Standard_Dump.hxx +++ b/src/Standard/Standard_Dump.hxx @@ -432,7 +432,7 @@ private: NCollection_IndexedDataMap& theValues); - //! Returns key of json in the index position. Incement the index position to the next symbol in the row + //! Returns key of json in the index position. Increment the index position to the next symbol in the row Standard_EXPORT static Standard_Boolean jsonKey (const TCollection_AsciiString& theStreamStr, Standard_Integer theStartIndex, Standard_Integer& theNextIndex, diff --git a/src/Standard/Standard_ErrorHandler.cxx b/src/Standard/Standard_ErrorHandler.cxx index 3fc6c189d9..b5fcc06bc2 100644 --- a/src/Standard/Standard_ErrorHandler.cxx +++ b/src/Standard/Standard_ErrorHandler.cxx @@ -225,7 +225,7 @@ Standard_ErrorHandler* Standard_ErrorHandler::FindHandler(const Standard_Handler // lock the stack GetMutex().Lock(); - // Find the current ErrorHandler Accordin tread + // Find the current ErrorHandler according to thread Standard_ErrorHandler* aPrevious = 0; Standard_ErrorHandler* aCurrent = Top; Standard_ErrorHandler* anActive = 0; diff --git a/src/Standard/Standard_MMgrOpt.cxx b/src/Standard/Standard_MMgrOpt.cxx index e28d94ba23..b2764d4f57 100644 --- a/src/Standard/Standard_MMgrOpt.cxx +++ b/src/Standard/Standard_MMgrOpt.cxx @@ -121,7 +121,7 @@ extern "C" int getpagesize() ; /* In the allocated block, first bytes are used for storing of memory manager's data. (size of block). The minimal size of these data is sizeof(int). The memory allocated in system usually aligned by 16 bytes. The alignment of the - data area in the memory block is shfted on BLOCK_SHIFT*sizeof(Standard_Size) + data area in the memory block is shifted on BLOCK_SHIFT*sizeof(Standard_Size) bytes. It is OK for WNT, SUN and Linux systems, but on SGI alignment should be 8 bytes. So, BLOCK_SHIFT is formed as macro for support on other possible platforms. diff --git a/src/TDF/TDF_Attribute.hxx b/src/TDF/TDF_Attribute.hxx index e7aa964b80..99a7f31635 100644 --- a/src/TDF/TDF_Attribute.hxx +++ b/src/TDF/TDF_Attribute.hxx @@ -358,7 +358,7 @@ Standard_OStream& operator<< (Standard_OStream& anOS) const //! forgotten attribute is also flagged not "Valid". //! //! A forgotten attribute is invisible. Set also the - //! "Valid" status to False. Obvioulsy, DF cannot + //! "Valid" status to False. Obviously, DF cannot //! empty an attribute (this has a semantic //! signification), but can remove it from the //! structure. So, a forgotten attribute is NOT an empty diff --git a/src/TDocStd/TDocStd_Document.hxx b/src/TDocStd/TDocStd_Document.hxx index 057ee681f5..c4240ebc77 100644 --- a/src/TDocStd/TDocStd_Document.hxx +++ b/src/TDocStd/TDocStd_Document.hxx @@ -117,7 +117,7 @@ public: //! Launches a new command. This command may be undone. Standard_EXPORT void NewCommand(); - //! returns True if a Command transaction is open in the curret . + //! returns True if a Command transaction is open in the current . Standard_EXPORT Standard_Boolean HasOpenCommand() const; //! Opens a new command transaction in this document. diff --git a/src/TopOpeBRep/TopOpeBRep_EdgesFiller.hxx b/src/TopOpeBRep/TopOpeBRep_EdgesFiller.hxx index 7f5ebe441f..5c930b3355 100644 --- a/src/TopOpeBRep/TopOpeBRep_EdgesFiller.hxx +++ b/src/TopOpeBRep/TopOpeBRep_EdgesFiller.hxx @@ -37,7 +37,7 @@ class TopOpeBRepDS_Interference; //! Fills a TopOpeBRepDS_DataStructure with Edge/Edge -//! instersection data described by TopOpeBRep_EdgesIntersector. +//! intersection data described by TopOpeBRep_EdgesIntersector. class TopOpeBRep_EdgesFiller { public: diff --git a/src/TopOpeBRep/TopOpeBRep_EdgesIntersector.cxx b/src/TopOpeBRep/TopOpeBRep_EdgesIntersector.cxx index 6cebc0ab1e..99d042bf5f 100644 --- a/src/TopOpeBRep/TopOpeBRep_EdgesIntersector.cxx +++ b/src/TopOpeBRep/TopOpeBRep_EdgesIntersector.cxx @@ -250,7 +250,7 @@ static Standard_Boolean IsTangentSegment(const IntRes2d_IntersectionPoint &P1, Standard_Boolean EdgesIntersector_checkT1D(const TopoDS_Edge& E1,const TopoDS_Edge& E2,const TopoDS_Vertex& vG, TopOpeBRepDS_Transition& newT) //------------------------------------------------------------------------ - // E1 sdm E2, interfers with E2 at vertex vG + // E1 sdm E2, interferes with E2 at vertex vG // vG is vertex of E2, but not vertex of E1 // purpose : get newT / attached to E1, I1d=(newT(E2),G,E2) { diff --git a/src/TopOpeBRep/TopOpeBRep_FacesFiller.hxx b/src/TopOpeBRep/TopOpeBRep_FacesFiller.hxx index 3319d3fbeb..0548323a7c 100644 --- a/src/TopOpeBRep/TopOpeBRep_FacesFiller.hxx +++ b/src/TopOpeBRep/TopOpeBRep_FacesFiller.hxx @@ -43,7 +43,7 @@ class gp_Pnt; //! Fills a DataStructure from TopOpeBRepDS with the result -//! of Face/Face instersection described by FacesIntersector from TopOpeBRep. +//! of Face/Face intersection described by FacesIntersector from TopOpeBRep. //! if the faces have same Domain, record it in the DS. //! else record lines and points and attach list of interferences //! to the faces, the lines and the edges. diff --git a/src/TopOpeBRep/TopOpeBRep_ShapeScanner.hxx b/src/TopOpeBRep/TopOpeBRep_ShapeScanner.hxx index 7b1149c303..3a863691bb 100644 --- a/src/TopOpeBRep/TopOpeBRep_ShapeScanner.hxx +++ b/src/TopOpeBRep/TopOpeBRep_ShapeScanner.hxx @@ -30,8 +30,8 @@ class TopoDS_Shape; class TopOpeBRepTool_ShapeExplorer; -//! Find, among the subshapes SS of a reference shape -//! RS, the ones which 3D box interfers with the box of +//! Find, among the subshapes SS of a reference shape +//! RS, the ones which 3D box interferes with the box of //! a shape S (SS and S are of the same type). class TopOpeBRep_ShapeScanner { diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx b/src/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx index 2e012b6ae6..9143ba0712 100644 --- a/src/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx +++ b/src/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx @@ -135,7 +135,7 @@ Standard_Boolean FUN_computeLIFfaces2d(const TopOpeBRepBuild_Builder& BU, const TopoDS_Edge& E, TopOpeBRepDS_PDataStructure& pDS2d) // purpose : compute new face/face interferences F FTRA, -// {I = (T(F),ES,FTRA)} / Fsdm F and ES interfers with E which has splits ON +// {I = (T(F),ES,FTRA)} / Fsdm F and ES interferes with E which has splits ON // E is edge of F { const TopOpeBRepDS_DataStructure& BDS = BU.DataStructure()->DS(); diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.hxx b/src/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.hxx index ab83957329..51f2a6b722 100644 --- a/src/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.hxx +++ b/src/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.hxx @@ -69,8 +69,8 @@ public: return myIsDone; } - //! Using the list of internal edge from each face, - //! rebuild myShape by removing thoses edges. + //! Using the list of internal edges from each face, + //! rebuild myShape by removing those edges. Standard_EXPORT void Perform(); protected: diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_REGUW.cxx b/src/TopOpeBRepTool/TopOpeBRepTool_REGUW.cxx index ead25c61bd..1dab94eea5 100644 --- a/src/TopOpeBRepTool/TopOpeBRepTool_REGUW.cxx +++ b/src/TopOpeBRepTool/TopOpeBRepTool_REGUW.cxx @@ -722,7 +722,7 @@ Standard_Boolean TopOpeBRepTool_REGUW::REGU(const Standard_Integer istep, // tol2d = 1.e-2*(lowest distance (p2df,p2dl) between all non-closed // and non-degenerated pcurves seen during the regularization). // This value is updated in method chkp2dFORinE. - // The comparision of p2d points is coupled with comparision of vertices + // The comparison of p2d points is coupled with comparison of vertices // We should in fact use bounding boxes on pcurves but this is too expensive!!! mytol2d = 1.e-5; isinit0 = Standard_True; diff --git a/src/Vrml/Vrml_LOD.hxx b/src/Vrml/Vrml_LOD.hxx index 1744fffef3..ea9cd0f586 100644 --- a/src/Vrml/Vrml_LOD.hxx +++ b/src/Vrml/Vrml_LOD.hxx @@ -37,7 +37,7 @@ DEFINE_STANDARD_HANDLE(Vrml_LOD, Standard_Transient) //! of Levels Of Detail (LOD), from highest detail to lowest. //! //! The specified center point of the LOD is transformed by current -//! transformation into world space, and yhe distancefrom the transformed +//! transformation into world space, and the distance from the transformed //! center to the world-space eye point is calculated. //! If thedistance is less than the first value in the ranges array, //! than the first child of the LOD group is drawn. If between diff --git a/src/VrmlConverter/VrmlConverter_Curve.cxx b/src/VrmlConverter/VrmlConverter_Curve.cxx index 5c1f63c978..38e0c8fefe 100644 --- a/src/VrmlConverter/VrmlConverter_Curve.cxx +++ b/src/VrmlConverter/VrmlConverter_Curve.cxx @@ -78,7 +78,7 @@ static void DrawCurve (const Adaptor3d_Curve& aCurve, const Standard_Integer NbP, const Standard_Real U1, const Standard_Real U2, - const Handle(VrmlConverter_Drawer)& aDrawer, // for passsing of LineAspect + const Handle(VrmlConverter_Drawer)& aDrawer, // for passing of LineAspect Standard_OStream& anOStream) { Standard_Integer nbintervals = 1, i; diff --git a/src/VrmlConverter/VrmlConverter_DeflectionCurve.cxx b/src/VrmlConverter/VrmlConverter_DeflectionCurve.cxx index 6664391d78..c27e63a414 100644 --- a/src/VrmlConverter/VrmlConverter_DeflectionCurve.cxx +++ b/src/VrmlConverter/VrmlConverter_DeflectionCurve.cxx @@ -117,7 +117,7 @@ static void DrawCurve (Adaptor3d_Curve& aCurve, const Standard_Real TheDeflection, const Standard_Real U1, const Standard_Real U2, - const Handle(VrmlConverter_Drawer)& aDrawer, // for passsing of LineAspect + const Handle(VrmlConverter_Drawer)& aDrawer, // for passing of LineAspect Standard_OStream& anOStream) { Standard_Integer i; diff --git a/tests/bugs/iges/bug29391 b/tests/bugs/iges/bug29391 index 5a38f3b83e..6cc2f561aa 100644 --- a/tests/bugs/iges/bug29391 +++ b/tests/bugs/iges/bug29391 @@ -3,7 +3,7 @@ puts "OCC29391" puts "========" puts "" ########################################################################## -# transormations for few entities with type 144 are missing +# transformations for a few entities with type 144 are missing ########################################################################## igesbrep [locate_data_file bug29391.igs] a * diff --git a/tests/bugs/mesh/bug31449_2 b/tests/bugs/mesh/bug31449_2 index 50d626d3ff..93ae1c2c26 100644 --- a/tests/bugs/mesh/bug31449_2 +++ b/tests/bugs/mesh/bug31449_2 @@ -9,7 +9,7 @@ incmesh result 0.0001 set info_good [tricheck result] if { [string compare $info_good "" ] != 0 } { - puts "Error : something wierd has been produced, like free nodes, or links" + puts "Error : something weird has been produced, like free nodes, or links" } checktrinfo result -tri 65 -nod 67 diff --git a/tests/bugs/modalg_1/buc60663_2 b/tests/bugs/modalg_1/buc60663_2 index 9530e914c9..2a282f39a5 100755 --- a/tests/bugs/modalg_1/buc60663_2 +++ b/tests/bugs/modalg_1/buc60663_2 @@ -1,4 +1,4 @@ -puts "TODO OCC12345 ALL: Faulty : the distanse is" +puts "TODO OCC12345 ALL: Faulty : the distance is" puts "TODO OCC12345 ALL: Error : The length of result shape is" puts "=====================================" @@ -27,7 +27,7 @@ regexp {([-0-9.+eE]+)$} [dump d_val] full dist regexp { +Vertex +: +Min +[-0-9.+eE]+ +Max +([-0-9.+eE]+)} [maxtolerance $ver] full toler if {$dist > $toler} { - puts "Faulty : the distanse is $dist. It is more $toler." + puts "Faulty : the distance is $dist. It is more $toler." } checkprops result -l 0 checkshape result diff --git a/tests/bugs/modalg_1/bug144 b/tests/bugs/modalg_1/bug144 index 8670cf5e8c..c43c2fec88 100755 --- a/tests/bugs/modalg_1/bug144 +++ b/tests/bugs/modalg_1/bug144 @@ -1,4 +1,4 @@ -puts "TODO OCC12345 ALL: Faulty : the distanse is" +puts "TODO OCC12345 ALL: Faulty : the distance is" puts "TODO OCC12345 ALL: Error : The length of result shape is" puts "================" @@ -26,7 +26,7 @@ regexp {([-0-9.+eE]+)$} [dump d_val] full dist regexp { +Vertex +: +Min +[-0-9.+eE]+ +Max +([-0-9.+eE]+)} [ maxtolerance $ver ] full toler if { [expr $dist > $toler] } { - puts "Faulty : the distanse is $dist. It is more $toler." + puts "Faulty : the distance is $dist. It is more $toler." } checkprops result -l 0 diff --git a/tests/bugs/modalg_5/bug24657 b/tests/bugs/modalg_5/bug24657 index fba2aa6452..851c884108 100644 --- a/tests/bugs/modalg_5/bug24657 +++ b/tests/bugs/modalg_5/bug24657 @@ -11,7 +11,7 @@ explode a e pcurve p4 a_4 a pcurve p5 a_5 a -# Recieve an output strings of the intersection operation +# Receive an output strings of the intersection operation set inter1 [2dintersect p4 p5 -tol 1.e-7] set inter2 [2dintersect p5 p4 -tol 1.e-7] diff --git a/tests/bugs/modalg_7/bug29293_2 b/tests/bugs/modalg_7/bug29293_2 index 04ad573be3..39b1b1e35d 100644 --- a/tests/bugs/modalg_7/bug29293_2 +++ b/tests/bugs/modalg_7/bug29293_2 @@ -34,7 +34,7 @@ fit # Check that the normal directions have been preserved. # Both input faces faces have normals # directed strictly to the top (0, 0, 1). So, it is necessary to check -# that the reuslting face has the same normal direction. +# that the resulting face has the same normal direction. if {![regexp "(0, 0, 100)" [normals result -length 100 -print]]} { puts "Error: the orientation is changed" diff --git a/tests/bugs/moddata_3/bug28026 b/tests/bugs/moddata_3/bug28026 index af7cf8f316..0de5126b4b 100644 --- a/tests/bugs/moddata_3/bug28026 +++ b/tests/bugs/moddata_3/bug28026 @@ -14,7 +14,7 @@ set output [trinfo b] foreach data ${expected} { if ![regexp $data $output] { - puts "Error: Not cleanned all trinfo in '$data'" + puts "Error: Not cleaned all trinfo in '$data'" break; } } diff --git a/tests/bugs/step/bug32922 b/tests/bugs/step/bug32922 index 1c32f0dcc2..1c0a20c361 100644 --- a/tests/bugs/step/bug32922 +++ b/tests/bugs/step/bug32922 @@ -34,7 +34,7 @@ set step_file ${imagedir}/torus.stp testwritestep ${step_file} tor stepread ${step_file} a * -# Cheking the face of the torus +# Checking the face of the torus explode a_1 f renamevar a_1_1 result checkshape result diff --git a/tests/bugs/step/pro19895 b/tests/bugs/step/pro19895 index 9e93263bf3..75a2a6da95 100755 --- a/tests/bugs/step/pro19895 +++ b/tests/bugs/step/pro19895 @@ -3,8 +3,8 @@ puts "PRO19895" puts "==========" ############################################################################# -## There is wrong tolerance after reading of the model in optimize mode (C30). Retrieve entity number 2139 from file -## "bm4_db_punch_a.stp" and will obtaine tolerance. It is very big and isolains extend from entity. +## There is wrong tolerance after reading the model in optimize mode (C30). Retrieve entity number 2139 from file +## "bm4_db_punch_a.stp" and will obtain tolerance. It's very big and isolates extend from entity. ############################################################################# stepread [locate_data_file bm4_db_punch_a.stp] a * diff --git a/tests/bugs/xde/bug904 b/tests/bugs/xde/bug904 index 1b29f95ecc..2b3de9c53c 100755 --- a/tests/bugs/xde/bug904 +++ b/tests/bugs/xde/bug904 @@ -3,7 +3,7 @@ puts "OCC904" puts "============" puts "" ##################################################### -## Invalid resut shell after command fixshell in DRAW with non-manifold mode +## Invalid result shell after command fixshell in DRAW with non-manifold mode ##################################################### pload QAcommands diff --git a/tests/de/end b/tests/de/end index cc0c34c71a..70bc3312ed 100644 --- a/tests/de/end +++ b/tests/de/end @@ -627,7 +627,7 @@ if { $dump_file == 1 } { if {$lengthunit_start != ""} { puts $fd_stream "" - puts $fd_stream "# set $lengthunit_start as local lenght unit" + puts $fd_stream "# set $lengthunit_start as local length unit" puts $fd_stream "set lengthunit_start \"$lengthunit_start\"" } diff --git a/tests/lowalgos/intss/bug24915 b/tests/lowalgos/intss/bug24915 index 2c25dd4e91..d8f39fb629 100644 --- a/tests/lowalgos/intss/bug24915 +++ b/tests/lowalgos/intss/bug24915 @@ -9,7 +9,7 @@ puts "" ############################### puts "##############################" -puts "#!!!Searh \"Attention\" keyword on this web-page for additinal checking!!!" +puts "#!!!Search \"Attention\" keyword on this web-page for additional checking!!!" puts "##############################" restore [locate_data_file bug24915_ft2.brep] b1 diff --git a/tests/lowalgos/intss/bug504 b/tests/lowalgos/intss/bug504 index 2287b920fb..94b304ee92 100644 --- a/tests/lowalgos/intss/bug504 +++ b/tests/lowalgos/intss/bug504 @@ -13,7 +13,7 @@ restore [locate_data_file OCC504b.draw] su2 # checkshape su2 if [catch {intersect result su1 su2} catch_result] { - puts "Faulty OCC504 : A solution takes all memory and crach with AllocMemory" + puts "Faulty OCC504 : A solution takes all memory and crashes with AllocMemory" } else { puts "OCC504 OK: function intersection works ok" } diff --git a/tests/offset/bugs/bug30055 b/tests/offset/bugs/bug30055 index ecba24c463..a30ee7f361 100644 --- a/tests/offset/bugs/bug30055 +++ b/tests/offset/bugs/bug30055 @@ -9,5 +9,5 @@ restore [locate_data_file bug30055.brep] a thickshell result a 1 i if { [isdraw result] } { - puts "ERROR - result must not be buit" + puts "ERROR - result must not be built" } diff --git a/tests/pipe/bugs/bug32809 b/tests/pipe/bugs/bug32809 index 3e8cb1687b..06589dff68 100644 --- a/tests/pipe/bugs/bug32809 +++ b/tests/pipe/bugs/bug32809 @@ -1,5 +1,5 @@ puts "========" -puts "bug32809: Sweep algorithm with Round Corner doesnot work" +puts "bug32809: Sweep algorithm with Round Corner does not work" puts "========" puts "" diff --git a/tests/thrusection/specific_locked/E6 b/tests/thrusection/specific_locked/E6 index 85c8034d35..35a1063f37 100644 --- a/tests/thrusection/specific_locked/E6 +++ b/tests/thrusection/specific_locked/E6 @@ -51,7 +51,7 @@ set z2 20 set z3 0 set z4 100 -# begining vertex +# beginning vertex vertex v4 55 2.5 ${z4} # ending vertex vertex v5 55 2.5 -${z4} diff --git a/tests/thrusection/specific_locked/E7 b/tests/thrusection/specific_locked/E7 index 02170a4856..d0ac3d87d8 100644 --- a/tests/thrusection/specific_locked/E7 +++ b/tests/thrusection/specific_locked/E7 @@ -53,7 +53,7 @@ set z2 20 set z3 0 set z4 100 -# begining vertex +# beginning vertex vertex v4 55 2.5 ${z4} # ending vertex vertex v5 55 2.5 -${z4} diff --git a/tests/thrusection/specific_locked/E8 b/tests/thrusection/specific_locked/E8 index f691491927..c7e158c4d1 100644 --- a/tests/thrusection/specific_locked/E8 +++ b/tests/thrusection/specific_locked/E8 @@ -53,7 +53,7 @@ set z2 20 set z3 0 set z4 100 -# begining vertex +# beginning vertex vertex v4 55 2.5 ${z4} # ending vertex vertex v5 55 2.5 -${z4} diff --git a/tests/thrusection/specific_locked/F1 b/tests/thrusection/specific_locked/F1 index a83c817328..6f66321424 100644 --- a/tests/thrusection/specific_locked/F1 +++ b/tests/thrusection/specific_locked/F1 @@ -51,7 +51,7 @@ set z2 20 set z3 0 set z4 100 -# begining vertex +# beginning vertex vertex v4 2.5 5 ${z4} # ending vertex vertex v5 2.5 5 -${z4} diff --git a/tests/thrusection/specific_locked/F2 b/tests/thrusection/specific_locked/F2 index 7319643954..71e13219cb 100644 --- a/tests/thrusection/specific_locked/F2 +++ b/tests/thrusection/specific_locked/F2 @@ -53,7 +53,7 @@ set z2 20 set z3 0 set z4 100 -# begining vertex +# beginning vertex vertex v4 2.5 5 ${z4} # ending vertex vertex v5 2.5 5 -${z4} diff --git a/tests/thrusection/specific_locked/F3 b/tests/thrusection/specific_locked/F3 index 0008b0cfba..cfcde8888d 100644 --- a/tests/thrusection/specific_locked/F3 +++ b/tests/thrusection/specific_locked/F3 @@ -53,7 +53,7 @@ set z2 20 set z3 0 set z4 100 -# begining vertex +# beginning vertex vertex v4 2.5 5 ${z4} # ending vertex vertex v5 2.5 5 -${z4} diff --git a/tests/thrusection/specific_locked/G4 b/tests/thrusection/specific_locked/G4 index bf823e5460..b0fbea1605 100644 --- a/tests/thrusection/specific_locked/G4 +++ b/tests/thrusection/specific_locked/G4 @@ -55,7 +55,7 @@ set z4 100 set z5 30 set z6 10 -# begining vertex +# beginning vertex vertex v4 55 2.5 ${z4} # ending vertex vertex v5 55 2.5 -${z4} diff --git a/tests/thrusection/specific_locked/G6 b/tests/thrusection/specific_locked/G6 index ea646acc36..0ec083c9a2 100644 --- a/tests/thrusection/specific_locked/G6 +++ b/tests/thrusection/specific_locked/G6 @@ -53,7 +53,7 @@ set z4 100 set z5 30 set z6 10 -# begining vertex +# beginning vertex vertex v4 2.5 5 ${z4} # ending vertex vertex v5 2.5 5 -${z4} diff --git a/tests/v3d/bugs/bug22795 b/tests/v3d/bugs/bug22795 index 579171289a..a1f5f5921f 100644 --- a/tests/v3d/bugs/bug22795 +++ b/tests/v3d/bugs/bug22795 @@ -1,5 +1,5 @@ puts "================" -puts "OCC22795: Make possible to display some presentable objecys in overlay of others, groupped by display priority " +puts "OCC22795: Makes it possible to display some presentable objects in overlay of others, grouped by display priority " puts "================" puts "" diff --git a/tests/xcaf/end b/tests/xcaf/end index 7b42e7c65c..4cf9b41ebe 100644 --- a/tests/xcaf/end +++ b/tests/xcaf/end @@ -1,5 +1,5 @@ puts "Test includes comparing for $CompareDocumentsMode" -############## INIZIALIZING OF VARIABLES ################################# +############## INITIALIZING OF VARIABLES ################################# # ========== variables for comparison ====================== # Checkshape set Checkshape_Second ** diff --git a/tools/DFBrowserPane/DFBrowserPane_AttributePaneModel.hxx b/tools/DFBrowserPane/DFBrowserPane_AttributePaneModel.hxx index e9b9d6db52..359f460b31 100644 --- a/tools/DFBrowserPane/DFBrowserPane_AttributePaneModel.hxx +++ b/tools/DFBrowserPane/DFBrowserPane_AttributePaneModel.hxx @@ -28,7 +28,7 @@ //! \class DFBrowserPane_AttributePaneModel //! \brief This is an extension of table model to visualize a container of values //! It is possible to: -//! - set orientation to interpretate the values. +//! - set orientation to interpret the values. //! - set table view header values. //! Items of the view are enabled and selectable. class DFBrowserPane_AttributePaneModel : public QAbstractTableModel diff --git a/tools/MessageModel/MessageModel_ItemRoot.hxx b/tools/MessageModel/MessageModel_ItemRoot.hxx index 9e59a54477..41c9066dcb 100644 --- a/tools/MessageModel/MessageModel_ItemRoot.hxx +++ b/tools/MessageModel/MessageModel_ItemRoot.hxx @@ -68,7 +68,7 @@ public: //! Returns true if report exists is in the list of the current reports //! \param theReport a report instance - //! \return boolen value + //! \return boolean value Standard_EXPORT Standard_Boolean HasReport (const Handle(Message_Report)& theReport); //!< Returns processed reports diff --git a/tools/MessageModel/MessageModel_TreeModel.hxx b/tools/MessageModel/MessageModel_TreeModel.hxx index 3a2c69c79c..2b6f5c4b99 100644 --- a/tools/MessageModel/MessageModel_TreeModel.hxx +++ b/tools/MessageModel/MessageModel_TreeModel.hxx @@ -59,7 +59,7 @@ public: //! Returns true if parameter report was added into the model //! \param theReport a report instance - //! \return boolen value + //! \return boolean value Standard_EXPORT Standard_Boolean HasReport (const Handle(Message_Report)& theReport); //! Add shape, append it to the model root item @@ -79,7 +79,7 @@ public: Standard_EXPORT const NCollection_List& Reports() const; //! Sets the text value of the Root item, only "Name" column accepts the parameter value - //! \theName visulized text of root item + //! \theName visualized text of root item Standard_EXPORT void SetRootItemName (const TCollection_AsciiString& theName); //! Updates tree model diff --git a/tools/MessageView/MessageView_MetricStatisticModel.hxx b/tools/MessageView/MessageView_MetricStatisticModel.hxx index f31131d11e..81d394a397 100644 --- a/tools/MessageView/MessageView_MetricStatisticModel.hxx +++ b/tools/MessageView/MessageView_MetricStatisticModel.hxx @@ -29,7 +29,7 @@ //! metric time spent on the alert and its children. //! It visualizes a table with statistic information: //! the 1st column is alert name, the 2nd column is a counter of the name appearance, -//! the 3rd column is the cummulative time. +//! the 3rd column is the cumulative time. //! Tables rows are sorted by descending time. class MessageView_MetricStatisticModel : public QAbstractTableModel { @@ -59,7 +59,7 @@ public: //! It returns value only for DisplayRole //! \param theIndex a model index //! \param theRole a view role - //! \return value intepreted depending on the given role + //! \return value interpreted depending on the given role Standard_EXPORT virtual QVariant data (const QModelIndex& theIndex, int theRole = Qt::DisplayRole) const Standard_OVERRIDE; //! Returns number of rows diff --git a/tools/MessageView/MessageView_VisibilityState.hxx b/tools/MessageView/MessageView_VisibilityState.hxx index db37120cef..1443e7f1a3 100644 --- a/tools/MessageView/MessageView_VisibilityState.hxx +++ b/tools/MessageView/MessageView_VisibilityState.hxx @@ -55,7 +55,7 @@ public: //! Sets visibility state //! \theIndex tree model index //! \param theState visibility state - //! \param toEmitDataChanged boolean flag whether emit of the model should be done immediatelly + //! \param toEmitDataChanged boolean flag whether emit of the model should be done immediately //! \return true if state is changed Standard_EXPORT virtual bool SetVisible (const QModelIndex& theIndex, const bool theState, const bool toEmitDataChanged) Standard_OVERRIDE; diff --git a/tools/MessageView/MessageView_Window.hxx b/tools/MessageView/MessageView_Window.hxx index 5ef7066803..9dfe7f6bfe 100644 --- a/tools/MessageView/MessageView_Window.hxx +++ b/tools/MessageView/MessageView_Window.hxx @@ -85,7 +85,7 @@ public: //! \param theItem container of preference elements Standard_EXPORT void SetPreferences (const TInspectorAPI_PreferencesDataMap& theItem); - //! Applyes parameters to Init controls, opens files if there are in parameters, updates OCAF tree view model + //! Applies parameters to Init controls, opens files if there are in parameters, updates OCAF tree view model Standard_EXPORT void UpdateContent(); //! Returns main control @@ -116,7 +116,7 @@ protected slots: //! \param theIndex tree view model index void onTreeViewVisibilityClicked(const QModelIndex& theIndex); - //! Udpates all controls by changed selection in OCAF tree view + //! Updates all controls by changed selection in OCAF tree view //! \param theSelected list of selected tree view items //! \param theDeselected list of deselected tree view items void onTreeViewSelectionChanged (const QItemSelection& theSelected, const QItemSelection& theDeselected); diff --git a/tools/TInspector/TInspector_Window.hxx b/tools/TInspector/TInspector_Window.hxx index 43738319e9..3a78ca45f4 100644 --- a/tools/TInspector/TInspector_Window.hxx +++ b/tools/TInspector/TInspector_Window.hxx @@ -154,7 +154,7 @@ public slots: protected slots: - //! Activates plugin correspnded to the clicked button + //! Activates plugin corresponded to the clicked button void onButtonClicked(); //! Updates available actions by the active plugin diff --git a/tools/View/View_DisplayPreview.hxx b/tools/View/View_DisplayPreview.hxx index f8eaef2c3d..98187a3751 100644 --- a/tools/View/View_DisplayPreview.hxx +++ b/tools/View/View_DisplayPreview.hxx @@ -44,7 +44,7 @@ public: virtual ~View_DisplayPreview() {} //! Stores the current context where the presentations will be displayed/erased. - //! Erases previuously displayed presentations if there were some displayed + //! Erases previously displayed presentations if there were some displayed //! \param theContext a context instance Standard_EXPORT void SetContext (const Handle(AIS_InteractiveContext)& theContext); diff --git a/tools/View/View_Displayer.hxx b/tools/View/View_Displayer.hxx index 7239d9462b..b46316a1ef 100644 --- a/tools/View/View_Displayer.hxx +++ b/tools/View/View_Displayer.hxx @@ -53,7 +53,7 @@ public: View_DisplayPreview* DisplayPreview() const { return myDisplayPreview; } //! Stores the current context where the presentations will be displayed/erased. - //! Erases previuously displayed presentations if there were some displayed + //! Erases previously displayed presentations if there were some displayed //! \param theContext a context instance Standard_EXPORT void SetContext (const Handle(AIS_InteractiveContext)& theContext); diff --git a/tools/ViewControl/ViewControl_ColorSelector.cxx b/tools/ViewControl/ViewControl_ColorSelector.cxx index 2e480bcf7a..9426804851 100644 --- a/tools/ViewControl/ViewControl_ColorSelector.cxx +++ b/tools/ViewControl/ViewControl_ColorSelector.cxx @@ -100,7 +100,7 @@ public: return QVariant(); } - //! Sets content of the model index for the given role, it is applyed to internal container of values + //! Sets content of the model index for the given role, it is applied to internal container of values //! \param theRow a model index row //! \param theColumn a model index column //! \param theRole a view role @@ -128,11 +128,11 @@ public: return true; } - //! Returns number of tree level line items = colums in table view + //! Returns number of tree level line items = columns in table view virtual int ColumnCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE { (void)theParent; return 2; } - //! Returns onlly one row in table view + //! Returns only one row in table view virtual int RowCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE { (void)theParent; return 7; } @@ -211,7 +211,7 @@ public: //! Returns item information(short) for display role. //! \param theIndex a model index //! \param theRole a view role - //! \return value intepreted depending on the given role + //! \return value interpreted depending on the given role Standard_EXPORT virtual QVariant data (const QModelIndex& theIndex, int theRole = Qt::DisplayRole) const Standard_OVERRIDE { @@ -231,7 +231,7 @@ public: virtual int columnCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE { (void)theParent; return 26; } - //! Returns onlly one row in table view + //! Returns only one row in table view virtual int rowCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE { (void)theParent; return 20; } diff --git a/tools/ViewControl/ViewControl_ColorSelector.hxx b/tools/ViewControl/ViewControl_ColorSelector.hxx index 683615615c..38a4ac29f9 100644 --- a/tools/ViewControl/ViewControl_ColorSelector.hxx +++ b/tools/ViewControl/ViewControl_ColorSelector.hxx @@ -73,7 +73,7 @@ public: Quantity_NameOfColor& theColorName); private: - //! Returns symbol used as a separtor of color components in string conversion + //! Returns symbol used as a separator of color components in string conversion //! \return symbol value static QString ColorSeparator() { return ";"; }