From 128239b54a1db4826ddec82059bc6eaefe9c73a8 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Sun, 24 Dec 2017 09:48:11 -0500 Subject: [PATCH] Typos: Various workbenches and misc. [skip ci] --- src/App/DocumentObjectPy.xml | 4 ++-- src/App/Part.cpp | 2 +- src/Base/Console.h | 8 ++++---- src/Doc/BuildDevDoc.cfg.in | 2 +- src/Doc/BuildDocDoxy.cfg | 2 +- src/Doc/BuildDocDoxy.cfg.in | 2 +- src/Doc/BuildWebDoc.cfg.in | 2 +- src/Doc/FreeCAD.uml | 4 ++-- src/Gui/NetworkRetriever.cpp | 4 ++-- src/Gui/SplitView3DInventor.h | 2 +- src/Mod/Assembly/Gui/AppAssemblyGui.cpp | 2 +- src/Mod/Assembly/Gui/ViewProviderConstraint.h | 2 +- src/Mod/Cam/App/SpringbackCorrection.h | 2 +- src/Mod/Cam/App/best_fit.cpp | 6 +++--- src/Mod/Cam/App/best_fit.h | 8 ++++---- src/Mod/Cam/Gui/AppCamGui.cpp | 2 +- src/Mod/Drawing/App/DrawingExport.cpp | 2 +- src/Mod/Idf/Idf.py | 4 ++-- src/Mod/Idf/Idflibs/License.txt | 2 +- src/Mod/Mesh/App/Core/Simplify.h | 2 +- src/Mod/Mesh/Gui/Resources/icons/MeshWorkbench.svg | 4 ++-- src/Mod/Mesh/Gui/Resources/icons/Mesh_Export_Mesh.svg | 4 ++-- .../Mesh/Gui/Resources/icons/Mesh_Harmonize_Normals.svg | 4 ++-- src/Mod/Mesh/Gui/Resources/icons/Mesh_Import_Mesh.svg | 4 ++-- src/Mod/Mesh/Gui/Resources/icons/Mesh_Mesh_from_Shape.svg | 2 +- src/Mod/Mesh/Gui/Resources/icons/Mesh_Regular_Solid.svg | 4 ++-- .../Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cone.svg | 4 ++-- .../Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cube.svg | 4 ++-- .../Gui/Resources/icons/RegularSolids/Mesh_Cylinder.svg | 4 ++-- .../Gui/Resources/icons/RegularSolids/Mesh_Ellipsoid.svg | 4 ++-- .../Gui/Resources/icons/RegularSolids/Mesh_Sphere.svg | 4 ++-- .../Mesh/Gui/Resources/icons/RegularSolids/Mesh_Torus.svg | 4 ++-- src/Mod/Mesh/Gui/Resources/icons/Tree_Mesh.svg | 4 ++-- src/Mod/Mesh/Gui/Resources/icons/mesh_cut.svg | 4 ++-- src/Mod/OpenSCAD/OpenSCAD2Dgeom.py | 6 +++--- src/Mod/OpenSCAD/OpenSCADUtils.py | 8 ++++---- src/Mod/OpenSCAD/colorcodeshapes.py | 2 +- src/Mod/OpenSCAD/expandplacements.py | 2 +- src/Mod/OpenSCAD/importCSG.py | 2 +- src/Mod/OpenSCAD/prototype.py | 4 ++-- src/Mod/OpenSCAD/replaceobj.py | 4 ++-- src/Mod/Robot/App/WaypointPy.xml | 6 +++--- src/Mod/Robot/App/kdl_cp/chainidsolver_vereshchagin.cpp | 4 ++-- src/Mod/Robot/App/kdl_cp/chainiksolvervel_wdls.hpp | 4 ++-- src/Mod/Robot/App/kdl_cp/frames.hpp | 2 +- src/Mod/Robot/App/kdl_cp/treeiksolvervel_wdls.hpp | 4 ++-- src/Mod/Robot/App/kdl_cp/velocityprofile_traphalf.hpp | 4 ++-- src/Mod/Robot/RobotExampleTrajectoryOutOfShapes.py | 2 +- src/Mod/Show/TempoVis.py | 2 +- src/Tools/_TEMPLATE_/Gui/App_TEMPLATE_Gui.cpp | 2 +- src/Tools/dir2qrc.py | 2 +- src/Tools/examplePy2wiki.py | 4 ++-- src/Tools/generateBase/generateDS.py | 2 +- src/Tools/thumbs/IExtractImage.h | 4 ++-- src/WindowsInstaller/FreeCAD_x64_WindowsInstaller.nsi | 2 +- 55 files changed, 95 insertions(+), 95 deletions(-) diff --git a/src/App/DocumentObjectPy.xml b/src/App/DocumentObjectPy.xml index 012a903c59..ddc960c41a 100644 --- a/src/App/DocumentObjectPy.xml +++ b/src/App/DocumentObjectPy.xml @@ -82,7 +82,7 @@ - A list of all objects this object links to recursivly. + A list of all objects this object links to recursively. @@ -94,7 +94,7 @@ - A list of all objects which link to this object recursivly. + A list of all objects which link to this object recursively. diff --git a/src/App/Part.cpp b/src/App/Part.cpp index 4c2c06bc85..63c29fb7de 100644 --- a/src/App/Part.cpp +++ b/src/App/Part.cpp @@ -92,7 +92,7 @@ PyObject *Part::getPyObject() // Python feature --------------------------------------------------------- -// Not quit sure yet makeing Part derivable in Python is good Idea! +// Not quite sure yet making Part derivable in Python is good Idea! // JR 2014 //namespace App { diff --git a/src/Base/Console.h b/src/Base/Console.h index cf5dcb0860..8bfc00f9cb 100644 --- a/src/Base/Console.h +++ b/src/Base/Console.h @@ -59,13 +59,13 @@ * * \section Motivation * - * FreeCAD Base::Console() is capable of outputing to different targets, and has + * FreeCAD Base::Console() is capable of outputting to different targets, and has * some basic enable/disable control of different types of logs. There is, - * however, no easy to use logging facility for various FC modules. This set of - * helper macros and function is aimed to provide a unified logging (and timing) + * however, no easy way to use logging facility for various FC modules. This set + * of helper macros and function is aimed to provide a unified logging (and timing) * interface. The interface is mainly designed for C++ code. Python code can * also take some advantage of log level control interface. The developer can - * now leave their logging code permantly active in the source code without + * now leave their logging code permanently active in the source code without * impact on performance, and the log can be easily turned on/off dynamically * using Python console for debugging purpose, even in release build. * diff --git a/src/Doc/BuildDevDoc.cfg.in b/src/Doc/BuildDevDoc.cfg.in index eb96d7c4dd..2808f140d8 100644 --- a/src/Doc/BuildDevDoc.cfg.in +++ b/src/Doc/BuildDevDoc.cfg.in @@ -279,7 +279,7 @@ TYPEDEF_HIDES_STRUCT = NO # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time -# causing a significant performance penality. +# causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will rougly double the diff --git a/src/Doc/BuildDocDoxy.cfg b/src/Doc/BuildDocDoxy.cfg index 5a455e0b0c..417222900a 100644 --- a/src/Doc/BuildDocDoxy.cfg +++ b/src/Doc/BuildDocDoxy.cfg @@ -278,7 +278,7 @@ TYPEDEF_HIDES_STRUCT = NO # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time -# causing a significant performance penality. +# causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will rougly double the diff --git a/src/Doc/BuildDocDoxy.cfg.in b/src/Doc/BuildDocDoxy.cfg.in index bdc380be32..280e055ac3 100644 --- a/src/Doc/BuildDocDoxy.cfg.in +++ b/src/Doc/BuildDocDoxy.cfg.in @@ -278,7 +278,7 @@ TYPEDEF_HIDES_STRUCT = NO # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time -# causing a significant performance penality. +# causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will rougly double the diff --git a/src/Doc/BuildWebDoc.cfg.in b/src/Doc/BuildWebDoc.cfg.in index 428479674e..2c43dc34a8 100644 --- a/src/Doc/BuildWebDoc.cfg.in +++ b/src/Doc/BuildWebDoc.cfg.in @@ -279,7 +279,7 @@ TYPEDEF_HIDES_STRUCT = NO # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time -# causing a significant performance penality. +# causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will rougly double the diff --git a/src/Doc/FreeCAD.uml b/src/Doc/FreeCAD.uml index 3e4865903c..0dec7bc818 100644 --- a/src/Doc/FreeCAD.uml +++ b/src/Doc/FreeCAD.uml @@ -1907,7 +1907,7 @@ 8KD6N7QAJEChIE1a/RanLgAA -Persistance +Persistence iAYOWyQEKE++31JRAbi8kQAA 4 d58NHGW8tkCxiyV+qSUYgQAA @@ -3181,7 +3181,7 @@ 1 -Persistance +Persistence False diff --git a/src/Gui/NetworkRetriever.cpp b/src/Gui/NetworkRetriever.cpp index c870e2518b..242293012e 100644 --- a/src/Gui/NetworkRetriever.cpp +++ b/src/Gui/NetworkRetriever.cpp @@ -162,8 +162,8 @@ void NetworkRetriever::setProxy( const QString& proxy, const QString& user, cons } /** - * If \a recursive is true all referenced files are downloaded recursivly. - * As default recursivion is disabled. \a level specifies the maximum recursion + * If \a recursive is true all referenced files are downloaded recursively. + * As default recursion is disabled. \a level specifies the maximum recursion * depth. If \a level is 0 the recursion depth is infinite. As default the level * property is 1. * \note: Use this with care! diff --git a/src/Gui/SplitView3DInventor.h b/src/Gui/SplitView3DInventor.h index ec717b934b..8941f22488 100644 --- a/src/Gui/SplitView3DInventor.h +++ b/src/Gui/SplitView3DInventor.h @@ -47,7 +47,7 @@ public: virtual const char *getName(void) const; - /// Mesage handler + /// Message handler virtual bool onMsg(const char* pMsg, const char** ppReturn); virtual bool onHasMsg(const char* pMsg) const; virtual void OnChange(ParameterGrp::SubjectType &rCaller,ParameterGrp::MessageType Reason); diff --git a/src/Mod/Assembly/Gui/AppAssemblyGui.cpp b/src/Mod/Assembly/Gui/AppAssemblyGui.cpp index cf9106911b..ed223f8c35 100644 --- a/src/Mod/Assembly/Gui/AppAssemblyGui.cpp +++ b/src/Mod/Assembly/Gui/AppAssemblyGui.cpp @@ -75,7 +75,7 @@ void AssemblyGuiExport initAssemblyGui() Base::Interpreter().runString("import AssemblyGui"); Base::Interpreter().runString("import PartGui"); - // instanciating the commands + // instantiating the commands CreateAssemblyCommands(); CreateAssemblyConstraintCommands(); diff --git a/src/Mod/Assembly/Gui/ViewProviderConstraint.h b/src/Mod/Assembly/Gui/ViewProviderConstraint.h index e45b82d2da..a0ca36a56b 100644 --- a/src/Mod/Assembly/Gui/ViewProviderConstraint.h +++ b/src/Mod/Assembly/Gui/ViewProviderConstraint.h @@ -84,7 +84,7 @@ public: //hide and show in the normal way virtual bool isShow(void) const; - //avoid unneeded context menu entrys + //avoid unneeded context menu entries virtual void setupContextMenu(QMenu* menu, QObject* receiver, const char* member); //only flat lines supported diff --git a/src/Mod/Cam/App/SpringbackCorrection.h b/src/Mod/Cam/App/SpringbackCorrection.h index 8676097755..7e315e95da 100644 --- a/src/Mod/Cam/App/SpringbackCorrection.h +++ b/src/Mod/Cam/App/SpringbackCorrection.h @@ -152,7 +152,7 @@ public: bool Load(const TopoDS_Shape& aShape); /** @brief loads input-shape and -mesh */ bool Load(const TopoDS_Shape& aShape, const MeshCore::MeshKernel& aMesh); - /** @brief sets parameter-values to initial state, tesselates the input + /** @brief sets parameter-values to initial state, tessellates the input shape and computes a curvature-radius-value at each edge contained in the input-shape */ bool Init(); diff --git a/src/Mod/Cam/App/best_fit.cpp b/src/Mod/Cam/App/best_fit.cpp index 803985df28..e4989d7c47 100644 --- a/src/Mod/Cam/App/best_fit.cpp +++ b/src/Mod/Cam/App/best_fit.cpp @@ -175,13 +175,13 @@ bool best_fit::Perform() Runtime_BestFit << "Runtime Best-Fit" << std::endl; - cout << "tesselate shape" << endl; + cout << "tessellate shape" << endl; sec1 = time(NULL); - Tesselate_Shape(m_Cad, m_CadMesh, 1); // Tesselates m_Cad Shape and stores Tesselation in m_CadMesh + Tesselate_Shape(m_Cad, m_CadMesh, 1); // Tessellates m_Cad Shape and stores Tessellation in m_CadMesh sec2 = time(NULL); - Runtime_BestFit << "Tesselate Shape: " << sec2 - sec1 << " sec" << std::endl; + Runtime_BestFit << "Tessellate Shape: " << sec2 - sec1 << " sec" << std::endl; sec1 = time(NULL); Comp_Weights(); // m_pntCloud_1, m_weights, m_normals des/r Cad-Meshs/Punktewolke werden hier gefüllt diff --git a/src/Mod/Cam/App/best_fit.h b/src/Mod/Cam/App/best_fit.h index 0987777453..1fdcfede1c 100644 --- a/src/Mod/Cam/App/best_fit.h +++ b/src/Mod/Cam/App/best_fit.h @@ -108,7 +108,7 @@ public: /*! \brief Computes a triangulation on shape. - \param shape specifies the shape to be tesselated + \param shape specifies the shape to be tessellated \param mesh output-mesh to store the computed triangulation \param deflection parameter which determines the accuracy of the triangulation @@ -117,7 +117,7 @@ public: /*! \brief Computes a triangulation on aface. - \param aface specifies the face to be tesselated + \param aface specifies the face to be tessellated \param mesh output-mesh to store the computed triangulation \param deflection parameter which determines the accuracy of the triangulation @@ -201,7 +201,7 @@ private: */ inline bool TransMat(Base::Matrix4D &matrix, double translation, int translationAxis); - /*! \brief Tranforms the point-set \p pnts and the corresponding + /*! \brief Transforms the point-set \p pnts and the corresponding surface-normals normals with reference to the input-matrix \param pnts point-vector to transform @@ -212,7 +212,7 @@ private: std::vector &normals, Base::Matrix4D &M); - /*! \brief Tranforms the point-set pnts with reference to the input-matrix + /*! \brief Transforms the point-set pnts with reference to the input-matrix \param pnts point-vector to transform \param M is the 4x4-input-matrix diff --git a/src/Mod/Cam/Gui/AppCamGui.cpp b/src/Mod/Cam/Gui/AppCamGui.cpp index 749574eb6e..4edbdeab58 100644 --- a/src/Mod/Cam/Gui/AppCamGui.cpp +++ b/src/Mod/Cam/Gui/AppCamGui.cpp @@ -69,7 +69,7 @@ extern "C" CamGui::Workbench ::init(); - // instanciating the commands + // instantiating the commands CreateCamCommands(); return; diff --git a/src/Mod/Drawing/App/DrawingExport.cpp b/src/Mod/Drawing/App/DrawingExport.cpp index 06133ee5de..831f38d5f0 100644 --- a/src/Mod/Drawing/App/DrawingExport.cpp +++ b/src/Mod/Drawing/App/DrawingExport.cpp @@ -436,7 +436,7 @@ void SVGOutput::printGeneric(const BRepAdaptor_Curve& c, int id, std::ostream& o } out << "\" />" << endl; } else if (c.GetType() == GeomAbs_Line) { - //BRep_Tool::Polygon3D assumes the edge has polygon representation - ie already been "tesselated" + //BRep_Tool::Polygon3D assumes the edge has polygon representation - ie already been "tessellated" //this is not true for all edges, especially "floating edges" double f = c.FirstParameter(); double l = c.LastParameter(); diff --git a/src/Mod/Idf/Idf.py b/src/Mod/Idf/Idf.py index e9fd4926e5..26e735f159 100644 --- a/src/Mod/Idf/Idf.py +++ b/src/Mod/Idf/Idf.py @@ -203,7 +203,7 @@ def mid_point(prev_vertex,vertex,angle): def split_records(line_record): """split_records(line_record)-> list of strings(records) - standard separator list separator is space, records containting encapsulated by " """ + standard separator list separator is space, records containing encapsulated by " """ split_result=[] quote_pos=line_record.find('"') while quote_pos!=-1: @@ -227,7 +227,7 @@ def process_emp(doc,filename,placement,board_thickness): """process_emp(doc,filename,placement,board_thickness) -> place components from emn file to board""" filename=filename.partition(".emn")[0]+".emp" empfile=pythonopen(filename, "r") - emp_unit=1.0 #presume milimeter like emn unit + emp_unit=1.0 #presume millimeter like emn unit emp_version=2 #presume emn_version 2 comp_height=0 #presume 0 part height comp_outline=[] #no part outline diff --git a/src/Mod/Idf/Idflibs/License.txt b/src/Mod/Idf/Idflibs/License.txt index 0ace8ce245..8db7246284 100644 --- a/src/Mod/Idf/Idflibs/License.txt +++ b/src/Mod/Idf/Idflibs/License.txt @@ -1,5 +1,5 @@ (c) 2010 Milos Koutny (milos.koutny@gmail.com) -All parts in this directory are suported by Milos Koutny +All parts in this directory are supported by Milos Koutny and licensed under: Creative Commons Attribution Share Alike diff --git a/src/Mod/Mesh/App/Core/Simplify.h b/src/Mod/Mesh/App/Core/Simplify.h index cef4e766cb..8843944b87 100644 --- a/src/Mod/Mesh/App/Core/Simplify.h +++ b/src/Mod/Mesh/App/Core/Simplify.h @@ -105,7 +105,7 @@ private: // Main simplification function // // target_count : target nr. of triangles -// agressiveness : sharpness to increase the threashold. +// agressiveness : sharpness to increase the threshold. // 5..8 are good numbers // more iterations yield higher quality // diff --git a/src/Mod/Mesh/Gui/Resources/icons/MeshWorkbench.svg b/src/Mod/Mesh/Gui/Resources/icons/MeshWorkbench.svg index 6dd12f8137..0b1f37eafd 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/MeshWorkbench.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/MeshWorkbench.svg @@ -155,11 +155,11 @@ mesh sphere workbench - tesselated + tessellated - Tesselated sphere mesh, lit from top + Tessellated sphere mesh, lit from top [agryson] Alexander Gryson diff --git a/src/Mod/Mesh/Gui/Resources/icons/Mesh_Export_Mesh.svg b/src/Mod/Mesh/Gui/Resources/icons/Mesh_Export_Mesh.svg index f90c3a8b47..1e42bccbcf 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/Mesh_Export_Mesh.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/Mesh_Export_Mesh.svg @@ -189,7 +189,7 @@ Mesh_Export_Mesh - Tesselated cube mesh with arrow pointing away from document + Tessellated cube mesh with arrow pointing away from document [agryson] Alexander Gryson @@ -199,7 +199,7 @@ mesh cube - tesselated + tessellated arrow document diff --git a/src/Mod/Mesh/Gui/Resources/icons/Mesh_Harmonize_Normals.svg b/src/Mod/Mesh/Gui/Resources/icons/Mesh_Harmonize_Normals.svg index f705a3a22a..1d6e2e6ed1 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/Mesh_Harmonize_Normals.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/Mesh_Harmonize_Normals.svg @@ -221,12 +221,12 @@ mesh plane - tesselated + tessellated normal arrow - Planar tesselatad mesh with each face having an arrow pointing upwards + Planar tessellated mesh with each face having an arrow pointing upwards diff --git a/src/Mod/Mesh/Gui/Resources/icons/Mesh_Import_Mesh.svg b/src/Mod/Mesh/Gui/Resources/icons/Mesh_Import_Mesh.svg index cb88553a27..30f87bbf3d 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/Mesh_Import_Mesh.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/Mesh_Import_Mesh.svg @@ -180,13 +180,13 @@ cube mesh - tesselated + tessellated arrow file document - Tesselated cube mesh with arrow pointing towards document + Tessellated cube mesh with arrow pointing towards document [agryson] Alexander Gryson diff --git a/src/Mod/Mesh/Gui/Resources/icons/Mesh_Mesh_from_Shape.svg b/src/Mod/Mesh/Gui/Resources/icons/Mesh_Mesh_from_Shape.svg index cd3e1a1ff1..e9f58ed7f9 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/Mesh_Mesh_from_Shape.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/Mesh_Mesh_from_Shape.svg @@ -137,7 +137,7 @@ Mesh_Mesh_from_Shape - Solid cube with arrow pointing towards a tesselated cube mesh + Solid cube with arrow pointing towards a tessellated cube mesh [agryson] Alexander Gryson diff --git a/src/Mod/Mesh/Gui/Resources/icons/Mesh_Regular_Solid.svg b/src/Mod/Mesh/Gui/Resources/icons/Mesh_Regular_Solid.svg index ca42180fde..e41c6ad38d 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/Mesh_Regular_Solid.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/Mesh_Regular_Solid.svg @@ -371,7 +371,7 @@ Mesh_Regular_Solid - A tesselated cube mesh in front of a tesselated cylindrical mesh + A tessellated cube mesh in front of a tessellated cylindrical mesh [agryson] Alexander Gryson @@ -394,7 +394,7 @@ mesh cube cylinder - tesselated + tessellated Fri Dec 20 16:28:14 2013 +0100 diff --git a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cone.svg b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cone.svg index 206b2b9bf9..94139c41c5 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cone.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cone.svg @@ -182,12 +182,12 @@ [agryson] Alexander Gryson - Tesselated conic mesh, lit from top + Tessellated conic mesh, lit from top mesh cone - tesselated + tessellated http://www.freecadweb.org/wiki/index.php?title=Artwork diff --git a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cube.svg b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cube.svg index 8d00d6d60c..0cf3c4a752 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cube.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cube.svg @@ -249,10 +249,10 @@ mesh cube - tesselated + tessellated - Tesselated cube mesh, lit from top + Tessellated cube mesh, lit from top [agryson] Alexander Gryson diff --git a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cylinder.svg b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cylinder.svg index f97ab24e21..5356805012 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cylinder.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cylinder.svg @@ -237,12 +237,12 @@ [agryson] Alexander Gryson - Tesselated cylindrical mesh, lit from top + Tessellated cylindrical mesh, lit from top mesh cylinder - tesselated + tessellated Sat Dec 21 21:54:56 2013 +1100 diff --git a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Ellipsoid.svg b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Ellipsoid.svg index 6232768c40..7642dbaac0 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Ellipsoid.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Ellipsoid.svg @@ -292,10 +292,10 @@ mesh ellipsoid - tessealted + tessellated - Tesselated ellipsoid mesh, lit from top + Tessellated ellipsoid mesh, lit from top [agryson] Alexander Gryson diff --git a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Sphere.svg b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Sphere.svg index 0c99b30c7f..8a3b462c4c 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Sphere.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Sphere.svg @@ -202,10 +202,10 @@ mesh sphere - tesselated + tessellated - Tesselated sphere mesh, lit from top + Tessellated sphere mesh, lit from top [agryson] Alexander Gryson diff --git a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Torus.svg b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Torus.svg index 59da9d9dba..5617f8492c 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Torus.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Torus.svg @@ -269,13 +269,13 @@ [agryson] Alexander Gryson - Tesselated torus mesh, lit from top + Tessellated torus mesh, lit from top mesh torus - tesselated + tessellated Sat Dec 21 21:54:56 2013 +1100 diff --git a/src/Mod/Mesh/Gui/Resources/icons/Tree_Mesh.svg b/src/Mod/Mesh/Gui/Resources/icons/Tree_Mesh.svg index 0ac809f345..69a304dab2 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/Tree_Mesh.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/Tree_Mesh.svg @@ -133,10 +133,10 @@ mesh plane - tesselated + tessellated - Tesselated folded plane, lit from top + Tessellated folded plane, lit from top diff --git a/src/Mod/Mesh/Gui/Resources/icons/mesh_cut.svg b/src/Mod/Mesh/Gui/Resources/icons/mesh_cut.svg index 5f8a51db40..d59704ed0c 100644 --- a/src/Mod/Mesh/Gui/Resources/icons/mesh_cut.svg +++ b/src/Mod/Mesh/Gui/Resources/icons/mesh_cut.svg @@ -899,12 +899,12 @@ [agryson] Alexander Gryson - A tesselated planar mesh in between the blades of an open scissor + A tessellated planar mesh in between the blades of an open scissor mesh plane - tesselated + tessellated scissors cut diff --git a/src/Mod/OpenSCAD/OpenSCAD2Dgeom.py b/src/Mod/OpenSCAD/OpenSCAD2Dgeom.py index b8aec8ac4c..e7a9ca256a 100644 --- a/src/Mod/OpenSCAD/OpenSCAD2Dgeom.py +++ b/src/Mod/OpenSCAD/OpenSCAD2Dgeom.py @@ -20,7 +20,7 @@ #* * #*************************************************************************** -__title__="FreeCAD OpenSCAD Workbench - 2D helper fuctions" +__title__="FreeCAD OpenSCAD Workbench - 2D helper functions" __author__ = "Sebastian Hoogen" __url__ = ["http://www.freecadweb.org"] @@ -277,7 +277,7 @@ def findConnectedEdges(edgelist,eps=1e-6,debug=False): def endpointdistance(edges): '''return the distance of of vertices in path (list of edges) as - maximum, mininum and distance between start and endpoint + maximum, minimum and distance between start and endpoint it expects the edges to be traversed forward from starting from Vertex 0''' numedges=len(edges) if numedges == 1 and len(edges[0].Vertexes) == 1: @@ -293,7 +293,7 @@ def endpointdistance(edges): def endpointdistancedebuglist(debuglist): '''return the distance of of vertices in path (list of edges) as - maximum, mininum and distance between start and endpoint + maximum, minimum and distance between start and endpoint it it expects a 'not reversed' flag for every edge''' numedges=len(debuglist) if numedges == 1 and len(debuglist[0][0].Vertexes) == 1: diff --git a/src/Mod/OpenSCAD/OpenSCADUtils.py b/src/Mod/OpenSCAD/OpenSCADUtils.py index 1fbe555eca..5679d5f1e4 100644 --- a/src/Mod/OpenSCAD/OpenSCADUtils.py +++ b/src/Mod/OpenSCAD/OpenSCADUtils.py @@ -20,7 +20,7 @@ #* * #*************************************************************************** -__title__="FreeCAD OpenSCAD Workbench - Utility Fuctions" +__title__="FreeCAD OpenSCAD Workbench - Utility Functions" __author__ = "Sebastian Hoogen" __url__ = ["http://www.freecadweb.org"] @@ -89,7 +89,7 @@ def searchforopenscadexe(): return opath def workaroundforissue128needed(): - '''sets the import path depending on the OpenSCAD Verion + '''sets the import path depending on the OpenSCAD Version for versions <= 2012.06.23 to the current working dir for versions above to the inputfile dir see https://github.com/openscad/openscad/issues/128''' @@ -161,7 +161,7 @@ def callopenscad(inputfilename,outputfilename=None,outputext='csg',keepname=Fals check_output2([osfilename,'-o',outputfilename, inputfilename]) return outputfilename else: - raise OpenSCADError('OpenSCAD executeable unavailable') + raise OpenSCADError('OpenSCAD executable unavailable') def callopenscadstring(scadstr,outputext='csg'): '''create a tempfile and call the open scad binary @@ -490,7 +490,7 @@ def process2D_ObjectsViaOpenSCADShape(ObjList,Operation,doc): # TBD: assure the given doc is active face = importDXFface(tmpfilename,None,None) #clean up - filenames.append(tmpfilename) #delete the ouptut file as well + filenames.append(tmpfilename) #delete the output file as well try: os.unlink(tmpfilename) except OSError: diff --git a/src/Mod/OpenSCAD/colorcodeshapes.py b/src/Mod/OpenSCAD/colorcodeshapes.py index f60b05d651..ff78f6049e 100644 --- a/src/Mod/OpenSCAD/colorcodeshapes.py +++ b/src/Mod/OpenSCAD/colorcodeshapes.py @@ -20,7 +20,7 @@ #* * #*************************************************************************** -__title__="FreeCAD OpenSCAD Workbench - 2D helper fuctions" +__title__="FreeCAD OpenSCAD Workbench - 2D helper functions" __author__ = "Sebastian Hoogen" __url__ = ["http://www.freecadweb.org"] diff --git a/src/Mod/OpenSCAD/expandplacements.py b/src/Mod/OpenSCAD/expandplacements.py index 2db0b6b2ab..786289d560 100644 --- a/src/Mod/OpenSCAD/expandplacements.py +++ b/src/Mod/OpenSCAD/expandplacements.py @@ -20,7 +20,7 @@ #* * #*************************************************************************** -__title__="FreeCAD OpenSCAD Workbench - expand placements and matrices fuctions" +__title__="FreeCAD OpenSCAD Workbench - expand placements and matrices functions" __author__ = "Sebastian Hoogen" __url__ = ["http://www.freecadweb.org"] diff --git a/src/Mod/OpenSCAD/importCSG.py b/src/Mod/OpenSCAD/importCSG.py index de9d48fecf..2087ba83f2 100644 --- a/src/Mod/OpenSCAD/importCSG.py +++ b/src/Mod/OpenSCAD/importCSG.py @@ -632,7 +632,7 @@ def process_linear_extrude(obj,h) : def process_linear_extrude_with_twist(base,height,twist) : newobj=doc.addObject("Part::FeaturePython",'twist_extrude') - Twist(newobj,base,height,-twist) #base is an FreeCAD Object, heigth and twist are floats + Twist(newobj,base,height,-twist) #base is an FreeCAD Object, height and twist are floats if gui: if FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/OpenSCAD").\ GetBool('useViewProviderTree'): diff --git a/src/Mod/OpenSCAD/prototype.py b/src/Mod/OpenSCAD/prototype.py index 8029c2b944..61cff80632 100644 --- a/src/Mod/OpenSCAD/prototype.py +++ b/src/Mod/OpenSCAD/prototype.py @@ -390,7 +390,7 @@ class Node: f=edgestofaces(edges) except Part.OCCError: FreeCAD.Console.PrintError(\ - 'processing of dxf import faild\nPlease rework \'%s\' manualy\n' % layera) + 'processing of dxf import failed\nPlease rework \'%s\' manually\n' % layera) f=Part.Shape() #empty Shape obj=doc.addObject("Part::FeaturePython",'import_dxf_%s_%s'%(objname,layera)) #obj=doc.addObject('Part::Feature',) @@ -549,7 +549,7 @@ class Node: child.pprint(level+1) def pprint2(self,path='root',pathjust=24): - """prints the tree. Left column contains the the systax to access a child""" + """prints the tree. Left column contains the syntax to access a child""" if self.arguments: argstr = ' (%s)' % self.arguments else: diff --git a/src/Mod/OpenSCAD/replaceobj.py b/src/Mod/OpenSCAD/replaceobj.py index 7ccd66bf87..310203c819 100644 --- a/src/Mod/OpenSCAD/replaceobj.py +++ b/src/Mod/OpenSCAD/replaceobj.py @@ -20,12 +20,12 @@ #* * #*************************************************************************** -__title__="FreeCAD OpenSCAD Workbench - replace object fuction" +__title__="FreeCAD OpenSCAD Workbench - replace object function" __author__ = "Sebastian Hoogen" __url__ = ["http://www.freecadweb.org"] ''' -This fucntions allows to replace an object in the feature hierarchy +This functions allows to replace an object in the feature hierarchy ''' def replaceobj(parent,oldchild,newchild): diff --git a/src/Mod/Robot/App/WaypointPy.xml b/src/Mod/Robot/App/WaypointPy.xml index df9ab2b920..b14f124432 100644 --- a/src/Mod/Robot/App/WaypointPy.xml +++ b/src/Mod/Robot/App/WaypointPy.xml @@ -29,7 +29,7 @@ - End position (destination) of the the waypoint + End position (destination) of the waypoint @@ -51,13 +51,13 @@ In Case of WAIT s wait time - descripe which tool frame to use for that point + Describe which tool frame to use for that point - descripe which Base frame to use for that point + Describe which Base frame to use for that point diff --git a/src/Mod/Robot/App/kdl_cp/chainidsolver_vereshchagin.cpp b/src/Mod/Robot/App/kdl_cp/chainidsolver_vereshchagin.cpp index b9ae06efac..3fad6fe263 100644 --- a/src/Mod/Robot/App/kdl_cp/chainidsolver_vereshchagin.cpp +++ b/src/Mod/Robot/App/kdl_cp/chainidsolver_vereshchagin.cpp @@ -436,7 +436,7 @@ void ChainIdSolver_Vereshchagin::getJointNullSpaceAcceleration(JntArray& nullspa //This is not only a bias force energy but also includes generalized forces //change type of parameter G -//this method should retur array of G's +//this method should return array of G's void ChainIdSolver_Vereshchagin::getLinkBiasForceAcceleratoinEnergy(Eigen::VectorXd& G) { @@ -453,7 +453,7 @@ void ChainIdSolver_Vereshchagin::getLinkBiasForceAcceleratoinEnergy(Eigen::Vecto } -//this method should retur array of R's +//this method should return array of R's void ChainIdSolver_Vereshchagin::getLinkBiasForceMatrix(Wrenches& R_tilde) { diff --git a/src/Mod/Robot/App/kdl_cp/chainiksolvervel_wdls.hpp b/src/Mod/Robot/App/kdl_cp/chainiksolvervel_wdls.hpp index 2b74c7c196..fa24008c5e 100644 --- a/src/Mod/Robot/App/kdl_cp/chainiksolvervel_wdls.hpp +++ b/src/Mod/Robot/App/kdl_cp/chainiksolvervel_wdls.hpp @@ -108,7 +108,7 @@ namespace KDL /** * Set the joint space weighting matrix * - * weight_js joint space weighting symetric matrix, + * weight_js joint space weighting symmetric matrix, * default : identity. * @param Mq : This matrix being used as a * weight for the norm of the joint space speed it HAS TO BE @@ -133,7 +133,7 @@ namespace KDL /** * Set the task space weighting matrix * - * weight_ts task space weighting symetric matrix, + * weight_ts task space weighting symmetric matrix, * default: identity * @param Mx : This matrix being used as a weight * for the norm of the error (in terms of task space speed) it diff --git a/src/Mod/Robot/App/kdl_cp/frames.hpp b/src/Mod/Robot/App/kdl_cp/frames.hpp index def6e76c62..96a0e3157e 100644 --- a/src/Mod/Robot/App/kdl_cp/frames.hpp +++ b/src/Mod/Robot/App/kdl_cp/frames.hpp @@ -274,7 +274,7 @@ public: Suppose V2 = R*V, (1) V is expressed in frame B V2 is expressed in frame A - This matrix R consists of 3 collumns [ X,Y,Z ], + This matrix R consists of 3 columns [ X,Y,Z ], X,Y, and Z contain the axes of frame B, expressed in frame A Because of linearity expr(1) is valid. \endverbatim diff --git a/src/Mod/Robot/App/kdl_cp/treeiksolvervel_wdls.hpp b/src/Mod/Robot/App/kdl_cp/treeiksolvervel_wdls.hpp index 8cf7998298..6f81615da7 100644 --- a/src/Mod/Robot/App/kdl_cp/treeiksolvervel_wdls.hpp +++ b/src/Mod/Robot/App/kdl_cp/treeiksolvervel_wdls.hpp @@ -28,7 +28,7 @@ namespace KDL { /* * Set the joint space weighting matrix * - * @param weight_js joint space weighting symetric matrix, + * @param weight_js joint space weighting symmetric matrix, * default : identity. M_q : This matrix being used as a * weight for the norm of the joint space speed it HAS TO BE * symmetric and positive definite. We can actually deal with @@ -53,7 +53,7 @@ namespace KDL { /* * Set the task space weighting matrix * - * @param weight_ts task space weighting symetric matrix, + * @param weight_ts task space weighting symmetric matrix, * default: identity M_x : This matrix being used as a weight * for the norm of the error (in terms of task space speed) it * HAS TO BE symmetric and positive definite. We can actually diff --git a/src/Mod/Robot/App/kdl_cp/velocityprofile_traphalf.hpp b/src/Mod/Robot/App/kdl_cp/velocityprofile_traphalf.hpp index 344ae7f59c..81a8cb881e 100644 --- a/src/Mod/Robot/App/kdl_cp/velocityprofile_traphalf.hpp +++ b/src/Mod/Robot/App/kdl_cp/velocityprofile_traphalf.hpp @@ -55,7 +55,7 @@ namespace KDL { /** - * A 'Half' Trapezoidal VelocityProfile. A contructor flag + * A 'Half' Trapezoidal VelocityProfile. A constructor flag * indicates if the calculated profile should be starting * or ending. * @ingroup Motion @@ -93,7 +93,7 @@ class VelocityProfile_TrapHalf : public VelocityProfile /** * Plans a 'Half' Trapezoidal VelocityProfile between pos1 and pos2. - * If the distance is too short betweeen pos1 and pos2, + * If the distance is too short between pos1 and pos2, * only the acceleration phase is set and the max velocity is not reached. * * \param pos1 Starting position diff --git a/src/Mod/Robot/RobotExampleTrajectoryOutOfShapes.py b/src/Mod/Robot/RobotExampleTrajectoryOutOfShapes.py index b8f919944d..385db1d388 100644 --- a/src/Mod/Robot/RobotExampleTrajectoryOutOfShapes.py +++ b/src/Mod/Robot/RobotExampleTrajectoryOutOfShapes.py @@ -1,7 +1,7 @@ # Examples to generate trajectories out of shapes import FreeCADGui as Gui -# geting selected edges from the selection and sort them +# getting selected edges from the selection and sort them count = 0 FirstPos1 = None FirstPos2 = None diff --git a/src/Mod/Show/TempoVis.py b/src/Mod/Show/TempoVis.py index 4d34f2f0c2..5b00c8693f 100644 --- a/src/Mod/Show/TempoVis.py +++ b/src/Mod/Show/TempoVis.py @@ -47,7 +47,7 @@ class TempoVis(FrozenClass): self.document = None self.restore_on_delete = False # if true, restore() gets called upon object deletion. It becomes False after explicit call to Restore, and set to true by many methods. - self.links_are_lost = False # set to true after restore from JSON. Indictes to attempt to use ActiveDocument/ActiveViewer instead. + self.links_are_lost = False # set to true after restore from JSON. Indicates to attempt to use ActiveDocument/ActiveViewer instead. self._freeze() diff --git a/src/Tools/_TEMPLATE_/Gui/App_TEMPLATE_Gui.cpp b/src/Tools/_TEMPLATE_/Gui/App_TEMPLATE_Gui.cpp index f2df6e8ff2..d96b311ee6 100644 --- a/src/Tools/_TEMPLATE_/Gui/App_TEMPLATE_Gui.cpp +++ b/src/Tools/_TEMPLATE_/Gui/App_TEMPLATE_Gui.cpp @@ -69,7 +69,7 @@ PyMOD_INIT_FUNC(_TEMPLATE_Gui) PyMOD_Return(0); } - // instanciating the commands + // instantiating the commands Create_TEMPLATE_Commands(); _TEMPLATE_Gui::Workbench::init(); diff --git a/src/Tools/dir2qrc.py b/src/Tools/dir2qrc.py index c653088f9a..ed7eb2d546 100644 --- a/src/Tools/dir2qrc.py +++ b/src/Tools/dir2qrc.py @@ -9,7 +9,7 @@ Usage: Options: -v, --verbose print out all files collected - -o --out-file=FILENAME use this file name for output, default resorces.qrc + -o --out-file=FILENAME use this file name for output, default resources.qrc -d, --directory=DIRNAME directory to search, default PWD -h, --help print this help message diff --git a/src/Tools/examplePy2wiki.py b/src/Tools/examplePy2wiki.py index adb99df612..4801160f04 100644 --- a/src/Tools/examplePy2wiki.py +++ b/src/Tools/examplePy2wiki.py @@ -7,12 +7,12 @@ Usage: examplePy2wiki [Optionen] Options: - -o --out-file=FILENAME use this file name for output, default resorces.qrc + -o --out-file=FILENAME use this file name for output, default resources.qrc -i, --in-file=FILENAME directory to search, default PWD -h, --help print this help message This program reads python files and generate a output suited for a Mediawiki page. -The python comments get translated to text and the code blocks get indended to +The python comments get translated to text and the code blocks get intended to show up us code in the wiki. diff --git a/src/Tools/generateBase/generateDS.py b/src/Tools/generateBase/generateDS.py index 5d774dc92d..dfee3e9912 100644 --- a/src/Tools/generateBase/generateDS.py +++ b/src/Tools/generateBase/generateDS.py @@ -192,7 +192,7 @@ class XschemaElement: # Attribute definitions for the current attributeGroup, if there is one. self.attributeGroup = None # List of names of attributes for this element. - # We will add the attribute defintions in each of these groups + # We will add the attribute definitions in each of these groups # to this element in annotate(). self.attributeGroupNameList = [] self.topLevel = 0 diff --git a/src/Tools/thumbs/IExtractImage.h b/src/Tools/thumbs/IExtractImage.h index 5eba1f3eaf..ce6faed266 100644 --- a/src/Tools/thumbs/IExtractImage.h +++ b/src/Tools/thumbs/IExtractImage.h @@ -12,9 +12,9 @@ DEFINE_GUID(IID_IExtractImage, #define IEIFLAG_ASYNC 0x0001 // ask the extractor if it supports ASYNC extract (free threaded) #define IEIFLAG_CACHE 0x0002 // returned from the extractor if it does NOT cache the thumbnail #define IEIFLAG_ASPECT 0x0004 // passed to the extractor to beg it to render to the aspect ratio of the supplied rect -#define IEIFLAG_OFFLINE 0x0008 // if the extractor shouldn't hit the net to get any content neede for the rendering +#define IEIFLAG_OFFLINE 0x0008 // if the extractor shouldn't hit the net to get any content needed for the rendering #define IEIFLAG_GLEAM 0x0010 // does the image have a gleam ? this will be returned if it does -#define IEIFLAG_SCREEN 0x0020 // render as if for the screen (this is exlusive with IEIFLAG_ASPECT ) +#define IEIFLAG_SCREEN 0x0020 // render as if for the screen (this is exclusive with IEIFLAG_ASPECT ) #define IEIFLAG_ORIGSIZE 0x0040 // render to the approx size passed, but crop if necessary #define IEIFLAG_NOSTAMP 0x0080 // returned from the extractor if it does NOT want an icon stamp on the thumbnail #define IEIFLAG_NOBORDER 0x0100 // returned from the extractor if it does NOT want an a border around the thumbnail diff --git a/src/WindowsInstaller/FreeCAD_x64_WindowsInstaller.nsi b/src/WindowsInstaller/FreeCAD_x64_WindowsInstaller.nsi index 8e866e30d7..940dc607a6 100644 --- a/src/WindowsInstaller/FreeCAD_x64_WindowsInstaller.nsi +++ b/src/WindowsInstaller/FreeCAD_x64_WindowsInstaller.nsi @@ -142,7 +142,7 @@ sectionEnd # http://forums.winamp.com/showthread.php?t=255747 function unSelectPythonPath - # Unselect the PYTHONPATH option + # Deselect the PYTHONPATH option !insertmacro UnselectSection ${PythonPathSection} functionEnd