Misc. typo fixes

Found via `codespell -q 3 -L vertexes`
This commit is contained in:
luz.paz 2019-05-15 00:44:17 -04:00
parent a830823f52
commit 778502f859
5 changed files with 6 additions and 6 deletions

View File

@ -71,7 +71,7 @@ class _CommandAbout:
msg = translate("EM","ElectroMagnetic Workbench version ") + EM_VERSION + "\n\n" + EM_AUTHOR + "\n" + EM_LICENSE msg = translate("EM","ElectroMagnetic Workbench version ") + EM_VERSION + "\n\n" + EM_AUTHOR + "\n" + EM_LICENSE
if FreeCAD.GuiUp: 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 = QtGui.QMessageBox(QtGui.QMessageBox.Information, translate("EM_About","About ElectroMagnetic workbench"), msg)
diag.setWindowModality(QtCore.Qt.ApplicationModal) diag.setWindowModality(QtCore.Qt.ApplicationModal)
diag.exec_() diag.exec_()

View File

@ -420,7 +420,7 @@ class _FHPlane:
'x_coord' and 'y_coord' are the point coordinates, of type Base.Quantity 'x_coord' and 'y_coord' are the point coordinates, of type Base.Quantity
'obj' is the FHPlane object '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 The function returns a tuple containing two integers corresponding to the node
position within the plane array of internal nodes. position within the plane array of internal nodes.

View File

@ -186,7 +186,7 @@ class _FHSegment:
obj.Width = EMFHSEGMENT_DEF_SEGWIDTH obj.Width = EMFHSEGMENT_DEF_SEGWIDTH
if obj.Height == None or obj.Height <= 0: if obj.Height == None or obj.Height <= 0:
obj.Height = EMFHSEGMENT_DEF_SEGHEIGHT 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) self.assignShape(obj)
#FreeCAD.Console.PrintWarning("_FHSegment execute() ends\n") #debug #FreeCAD.Console.PrintWarning("_FHSegment execute() ends\n") #debug

View File

@ -83,7 +83,7 @@ def export_mesh(filename, meshobj=None, isDiel=False, showNormals=False, folder=
elif len(facet.Points) == 4: elif len(facet.Points) == 4:
fid.write("Q " + condName) fid.write("Q " + condName)
else: 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 continue
center = Vector(0.0, 0.0, 0.0) center = Vector(0.0, 0.0, 0.0)
avgSideLen = 0.0 avgSideLen = 0.0
@ -234,7 +234,7 @@ def export_faces(filename, isDiel=False, name="", showNormals=False, forceMesh=F
elif pointsNum == 4: elif pointsNum == 4:
fid.write("Q " + condName) fid.write("Q " + condName)
else: else:
FreeCAD.Console.PrintMessage("Unforseen number of panel vertexes: " + pointsNum + ", skipping panel") FreeCAD.Console.PrintMessage("Unforeseen number of panel vertexes: " + pointsNum + ", skipping panel")
continue continue
center = Vector(0.0, 0.0, 0.0) center = Vector(0.0, 0.0, 0.0)
avgSideLen = 0.0 avgSideLen = 0.0

View File

@ -141,7 +141,7 @@ def parse_3D_input_file(fileinname, parentFid, parentFilePosMap, isdiel = False,
m_iParseLevel = m_iParseLevel + 1 m_iParseLevel = m_iParseLevel + 1
if m_iParseLevel >= AUTOREFINE_MAX_PARSE_LEVEL: 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") ") of recursive files exceeded, skipping file " + fileinname + "\n")
return True return True