Fix source comment typos and whitespace

Found via `codespell -q 3 -S ./slvs -L vertexes,dof`
This commit is contained in:
luz.paz 2019-07-09 18:42:28 -04:00 committed by realthunder
parent 4a467bf670
commit 6a648cf66f
2 changed files with 10 additions and 11 deletions

View File

@ -2050,7 +2050,7 @@ class AsmConstraint(AsmGroup):
firstChild.Proxy.infos = order firstChild.Proxy.infos = order
self.prevOrder = used self.prevOrder = used
# now for thos instances that are 'out of place', lets assign some # now for those instances that are 'out of place', lets assign some
# initial placement # initial placement
partGroup = self.getAssembly().getPartGroup() partGroup = self.getAssembly().getPartGroup()
@ -2347,7 +2347,7 @@ class AsmConstraint(AsmGroup):
info = elements[0].Proxy.getInfo() info = elements[0].Proxy.getInfo()
if not isinstance(info.Part,tuple): if not isinstance(info.Part,tuple):
# The first element must be an link array in order to get # The first element must be an link array in order to get
# multiplied. # multiplied.
#First, check if it is a link (with element count) #First, check if it is a link (with element count)
if getLinkProperty(info.Part,'ElementCount') is None: if getLinkProperty(info.Part,'ElementCount') is None:
@ -3759,7 +3759,7 @@ class Assembly(AsmGroup):
recursive: If True, continue finding the child of the next assembly. recursive: If True, continue finding the child of the next assembly.
relativeToChild: If True, the returned subname is realtive to the child relativeToChild: If True, the returned subname is relative to the child
object found, or else, it is relative to the assembly, i.e., including object found, or else, it is relative to the assembly, i.e., including
the child's name the child's name
@ -4483,4 +4483,3 @@ class ViewProviderAsmPlainGroup(object):
children = vobj.Object.Group + children children = vobj.Object.Group + children
editGroup(parent,group) editGroup(parent,group)
editGroup(vobj.Object,children) editGroup(vobj.Object,children)

View File

@ -286,7 +286,7 @@ def _c(solver,partInfo,subname,shape,requireArc=False,retAll=False):
if requireArc and not isinstance(r,tuple): if requireArc and not isinstance(r,tuple):
return 'an arc edge' return 'an arc edge'
return return
return 'a cicular edge' return 'a circular edge'
if requireArc: if requireArc:
key = subname+'.a' key = subname+'.a'
else: else:
@ -353,7 +353,7 @@ def _c(solver,partInfo,subname,shape,requireArc=False,retAll=False):
pln = _w(solver,partInfo,subname,shape,True) pln = _w(solver,partInfo,subname,shape,True)
r = utils.getElementCircular(shape) r = utils.getElementCircular(shape)
if not r: if not r:
raise RuntimeError('shape is not cicular') raise RuntimeError('shape is not circular')
system.NameTag = nameTag + '.r' system.NameTag = nameTag + '.r'
hr = system.addDistanceV(r) hr = system.addDistanceV(r)
if requireArc or isinstance(r,(list,tuple)): if requireArc or isinstance(r,(list,tuple)):
@ -1284,7 +1284,7 @@ class PlaneCoincident(BaseCascade):
_iconName = 'Assembly_ConstraintCoincidence.svg' _iconName = 'Assembly_ConstraintCoincidence.svg'
_props = ['Multiply','Cascade','Offset','OffsetX','OffsetY'] + _AngleProps _props = ['Multiply','Cascade','Offset','OffsetX','OffsetY'] + _AngleProps
_tooltip = \ _tooltip = \
'Add a "{}" constraint to conincide planar faces of two or more parts.\n'\ 'Add a "{}" constraint to coincide planar faces of two or more parts.\n'\
'The faces are coincided at their centers with an optional distance.' 'The faces are coincided at their centers with an optional distance.'
@ -1380,7 +1380,7 @@ class PointsCoincident(Base):
_entityDef = (_p,_p) _entityDef = (_p,_p)
_workplane = True _workplane = True
_iconName = 'Assembly_ConstraintPointCoincident.svg' _iconName = 'Assembly_ConstraintPointCoincident.svg'
_tooltips = 'Add a "{}" constraint to conincide two points in 2D or 3D' _tooltips = 'Add a "{}" constraint to coincide two points in 2D or 3D'
class PointInPlane(BaseMulti): class PointInPlane(BaseMulti):
@ -1665,10 +1665,10 @@ class SketchPlane(BaseSketch):
# if there is any child element in this constraint, we expect the first # if there is any child element in this constraint, we expect the first
# one to be a planar face or edge to define the work plane. The rest of # one to be a planar face or edge to define the work plane. The rest of
# entities must be from some draft wire or circle/arc # entities must be from some draft wire or circle/arc
# #
# Base.prepare() will call system.addSketchPlane() with all contained # Base.prepare() will call system.addSketchPlane() with all contained
# element below. However, the default implementation, # element below. However, the default implementation,
# SystemExtension.addSketchPlane(), only really uses the first one, # SystemExtension.addSketchPlane(), only really uses the first one,
# i.e. the one obtained by _wa(), i.e. a tuple of entities # i.e. the one obtained by _wa(), i.e. a tuple of entities
# (workplane,base,normal). # (workplane,base,normal).
@ -1786,7 +1786,7 @@ class MidPoint(BaseSketch):
if not func: if not func:
return return
params = cls.getPropertyValues(obj) + cls.getEntities(obj,solver) params = cls.getPropertyValues(obj) + cls.getEntities(obj,solver)
# temparary fix of slvs.addMidPoint(), which should have made wrkpln # temporary fix of slvs.addMidPoint(), which should have made wrkpln
# argument optional and defaults to 0 # argument optional and defaults to 0
if len(params)==2: if len(params)==2:
params.append(0) params.append(0)