Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lattice2ArrayFilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def GetDefaultCommand(self): # return the index of the tuple of the default comm
return 0

def GetResources(self):
return { 'MenuText': 'Array filter:',
return { 'MenuText': 'Array filter',
'ToolTip': 'Array filter: tool to extract specific elements from lattice2 arrays.'}

def IsActive(self): # optional
Expand All @@ -314,7 +314,7 @@ def ExplodeArray(feature):
plms = lattice2BaseFeature.getPlacementsList(feature)
features_created = []
for i in range(len(plms)):
af = makeArrayFilter(name = 'Placment')
af = makeArrayFilter(name = 'Placement')
af.Label = u'Placement' + str(i)
af.Base = feature
af.FilterType = 'specific items'
Expand Down
2 changes: 1 addition & 1 deletion lattice2ArrayFromShape.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def GetDefaultCommand(self): # return the index of the tuple of the default comm
return 0

def GetResources(self):
return { 'MenuText': 'Array from shape:', 'ToolTip': 'Array from shape: make array of placements from children of a compound'}
return { 'MenuText': 'Array from shape', 'ToolTip': 'Array from shape: make array of placements from children of a compound'}

def IsActive(self): # optional
return True
Expand Down
4 changes: 2 additions & 2 deletions lattice2AttachablePlacement.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def GetResources(self):

def Activated(self):
try:
CreateAttachablePlacement(name= "Placment")
CreateAttachablePlacement(name= "Placement")
except Exception as err:
msgError(err)

Expand Down Expand Up @@ -261,7 +261,7 @@ def GetDefaultCommand(self): # return the index of the tuple of the default comm
return 0

def GetResources(self):
return { 'MenuText': 'Attached Placement:',
return { 'MenuText': 'Attached Placement',
'ToolTip': 'Attached Placement (group): tools to work with attached placement objects.'}

def IsActive(self): # optional
Expand Down
2 changes: 1 addition & 1 deletion lattice2BoundBox.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def GetDefaultCommand(self): # return the index of the tuple of the default comm
return 0

def GetResources(self):
return { 'MenuText': 'Bounding Box:',
return { 'MenuText': 'Bounding Box',
'ToolTip': 'Bounding Box: make a box that precisely fits a shape.'}

def IsActive(self): # optional
Expand Down
2 changes: 1 addition & 1 deletion lattice2Inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def GetDefaultCommand(self): # return the index of the tuple of the default comm
return 0

def GetResources(self):
return { 'MenuText': 'Inspect:', 'ToolTip': 'Inspect: tools to analyze shape structure.'}
return { 'MenuText': 'Inspect', 'ToolTip': 'Inspect: tools to analyze shape structure.'}

def IsActive(self): # optional
return True
Expand Down
2 changes: 1 addition & 1 deletion lattice2InterpolateGroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def GetDefaultCommand(self): # return the index of the tuple of the default comm
return 0

def GetResources(self):
return { 'MenuText': 'Interpolation features:',
return { 'MenuText': 'Interpolation features',
'ToolTip': 'Interpolation features (group): creating placements between occurrences.'}

def IsActive(self): # optional
Expand Down
2 changes: 1 addition & 1 deletion lattice2Placement.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def GetResources(self):

def Activated(self):
FreeCADGui.Selection.clearSelection()
CreateLatticePlacement(name= "Placment", mode= self.mode)
CreateLatticePlacement(name= "Placement", mode= self.mode)
if self.mode == "Custom":
FreeCADGui.runCommand("Std_Placement")

Expand Down
2 changes: 1 addition & 1 deletion lattice2PopulateChildren.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def GetDefaultCommand(self): # return the index of the tuple of the default comm
return 0

def GetResources(self):
return { 'MenuText': 'Populate with Children:',
return { 'MenuText': 'Populate with Children',
'ToolTip': 'Populate with Children: put children of compound at corresponding placements in an array of placements.'}

def IsActive(self): # optional
Expand Down
2 changes: 1 addition & 1 deletion lattice2PopulateCopies.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def GetDefaultCommand(self): # return the index of the tuple of the default comm
return 0

def GetResources(self):
return { 'MenuText': 'Populate with copies:',
return { 'MenuText': 'Populate with copies',
'ToolTip': 'Populate with copies: put a copy of an object at every placement in an array of placements.'}

def IsActive(self): # optional
Expand Down
2 changes: 1 addition & 1 deletion lattice2RecomputeLocker.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def GetDefaultCommand(self): # return the index of the tuple of the default comm
return 0

def GetResources(self):
return { 'MenuText': 'Lattice recompute control:',
return { 'MenuText': 'Lattice recompute control',
'ToolTip': 'Document recompute controlling tools from Lattice2 workbench',
'CmdType':"ForEdit"}

Expand Down
2 changes: 1 addition & 1 deletion lattice2SeriesGroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def GetDefaultCommand(self): # return the index of the tuple of the default comm
return 0

def GetResources(self):
return { 'MenuText': 'Series features:',
return { 'MenuText': 'Series features',
'ToolTip': 'Series features (group): features that collect permutations of an object by changing dependent objects.'}

def IsActive(self): # optional
Expand Down
2 changes: 1 addition & 1 deletion lattice2SubLink.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def GetDefaultCommand(self): # return the index of the tuple of the default comm
return 0

def GetResources(self):
return { 'MenuText': 'Sublink:',
return { 'MenuText': 'Sublink',
'ToolTip': 'Sublink (group): extract elements from shapes.'}

def IsActive(self): # optional
Expand Down