From 778502f8591939c8f637e7afb12fa7520d116e8a Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Wed, 15 May 2019 00:44:17 -0400 Subject: [PATCH 1/2] Misc. typo fixes Found via `codespell -q 3 -L vertexes` --- EM_About.py | 2 +- EM_FHPlane.py | 2 +- EM_FHSegment.py | 2 +- Export_mesh.py | 4 ++-- import_fastercap.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/EM_About.py b/EM_About.py index c1036ff..db32034 100644 --- a/EM_About.py +++ b/EM_About.py @@ -71,7 +71,7 @@ class _CommandAbout: msg = translate("EM","ElectroMagnetic Workbench version ") + EM_VERSION + "\n\n" + EM_AUTHOR + "\n" + EM_LICENSE if FreeCAD.GuiUp: - # Simple QMessageBox providing "about" informaiton + # Simple QMessageBox providing "about" information diag = QtGui.QMessageBox(QtGui.QMessageBox.Information, translate("EM_About","About ElectroMagnetic workbench"), msg) diag.setWindowModality(QtCore.Qt.ApplicationModal) diag.exec_() diff --git a/EM_FHPlane.py b/EM_FHPlane.py index c444990..999e27b 100644 --- a/EM_FHPlane.py +++ b/EM_FHPlane.py @@ -420,7 +420,7 @@ class _FHPlane: 'x_coord' and 'y_coord' are the point coordinates, of type Base.Quantity 'obj' is the FHPlane object - 'seg1len' and 'seg2len' are the lengths of the segments along the lenght and width, respectively + 'seg1len' and 'seg2len' are the lengths of the segments along the length and width, respectively The function returns a tuple containing two integers corresponding to the node position within the plane array of internal nodes. diff --git a/EM_FHSegment.py b/EM_FHSegment.py index af49196..9ad08d2 100644 --- a/EM_FHSegment.py +++ b/EM_FHSegment.py @@ -186,7 +186,7 @@ class _FHSegment: obj.Width = EMFHSEGMENT_DEF_SEGWIDTH if obj.Height == None or obj.Height <= 0: obj.Height = EMFHSEGMENT_DEF_SEGHEIGHT - # and finally, if everything is ok, make and assing the shape + # and finally, if everything is ok, make and assign the shape self.assignShape(obj) #FreeCAD.Console.PrintWarning("_FHSegment execute() ends\n") #debug diff --git a/Export_mesh.py b/Export_mesh.py index 4c15b8f..5ab3151 100644 --- a/Export_mesh.py +++ b/Export_mesh.py @@ -83,7 +83,7 @@ def export_mesh(filename, meshobj=None, isDiel=False, showNormals=False, folder= elif len(facet.Points) == 4: fid.write("Q " + condName) else: - FreeCAD.Console.PrintMessage("Unforseen number of mesh facet points: " + len(facet.Points) + ", skipping facet") + FreeCAD.Console.PrintMessage("Unforeseen number of mesh facet points: " + len(facet.Points) + ", skipping facet") continue center = Vector(0.0, 0.0, 0.0) avgSideLen = 0.0 @@ -234,7 +234,7 @@ def export_faces(filename, isDiel=False, name="", showNormals=False, forceMesh=F elif pointsNum == 4: fid.write("Q " + condName) else: - FreeCAD.Console.PrintMessage("Unforseen number of panel vertexes: " + pointsNum + ", skipping panel") + FreeCAD.Console.PrintMessage("Unforeseen number of panel vertexes: " + pointsNum + ", skipping panel") continue center = Vector(0.0, 0.0, 0.0) avgSideLen = 0.0 diff --git a/import_fastercap.py b/import_fastercap.py index 10a6d15..15b8e66 100644 --- a/import_fastercap.py +++ b/import_fastercap.py @@ -141,7 +141,7 @@ def parse_3D_input_file(fileinname, parentFid, parentFilePosMap, isdiel = False, m_iParseLevel = m_iParseLevel + 1 if m_iParseLevel >= AUTOREFINE_MAX_PARSE_LEVEL: - FreeCAD.Console.PrintMessage("Warning: maxumum number (" + format(AUTOREFINE_MAX_PARSE_LEVEL) + + FreeCAD.Console.PrintMessage("Warning: maximum number (" + format(AUTOREFINE_MAX_PARSE_LEVEL) + ") of recursive files exceeded, skipping file " + fileinname + "\n") return True From 76f2e29ac8b0ee14accf777fd68ca00347848c1f Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Wed, 15 May 2019 00:45:23 -0400 Subject: [PATCH 2/2] Fix source comment typo --- EM_FHPath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EM_FHPath.py b/EM_FHPath.py index 8a73bdd..6a51b9b 100644 --- a/EM_FHPath.py +++ b/EM_FHPath.py @@ -254,7 +254,7 @@ class _FHPath: self.ww = [Vector(0,0,0)] else: # transform 'obj.ww' according to the 'Base' Placement - # (transation is don't care, we worry about rotation) + # (translation is don't care, we worry about rotation) self.ww = [obj.Base.Placement.multVec(obj.ww)] shapes = [] # get node positions in absolute coordinates (at least two nodes exist, checked above)