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
2 changes: 1 addition & 1 deletion DefeaturingTools-a.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def setupUi(self, DockWidget):
self.PB_right.setObjectName("PB_right")
self.PB_makeEdge = QtGui.QPushButton(self.dockWidgetContents)
self.PB_makeEdge.setGeometry(QtCore.QRect(12, 468, 32, 32))
self.PB_makeEdge.setToolTip("make Edge from selected Vertexes")
self.PB_makeEdge.setToolTip("make Edge from selected Vertices")
self.PB_makeEdge.setText("")
self.PB_makeEdge.setObjectName("PB_makeEdge")
self.PB_expSTEP = QtGui.QPushButton(self.dockWidgetContents)
Expand Down
4 changes: 2 additions & 2 deletions DefeaturingTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,7 @@ def makeEdge_RH():
except:
i_sayerr("failed to create a Line")
else:
i_sayerr("select only 2 Vertexes")
i_sayerr("select only 2 Vertices")
for ob in FreeCAD.ActiveDocument.Objects:
FreeCADGui.Selection.removeSelection(ob)
##
Expand Down Expand Up @@ -1999,7 +1999,7 @@ def setupUi(self, DockWidget):
self.PB_right.setObjectName("PB_right")
self.PB_makeEdge = QtGui.QPushButton(self.dockWidgetContents)
self.PB_makeEdge.setGeometry(QtCore.QRect(12, 468, 32, 32))
self.PB_makeEdge.setToolTip("make Edge from selected Vertexes")
self.PB_makeEdge.setToolTip("make Edge from selected Vertices")
self.PB_makeEdge.setText("")
self.PB_makeEdge.setObjectName("PB_makeEdge")
self.PB_expSTEP = QtGui.QPushButton(self.dockWidgetContents)
Expand Down
2 changes: 1 addition & 1 deletion DefeaturingTools.ui
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ of the selected Objects</string>
</rect>
</property>
<property name="toolTip">
<string notr="true">make Edge from selected Vertexes</string>
<string notr="true">make Edge from selected Vertices</string>
</property>
<property name="text">
<string notr="true"/>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Intended for editing STEP models, removing/adding of selected features from the

* Features a set of tools to edit a Shape or a STEP model, removing hole(s), face(s), simplifying the model, changing the tolerance, applying Fuzzy Boolean operations etc...
* Tools to create more solid shape(s), from edge(s), face(s) or shell(s).
* Possiblity using direct modeling of the model, when the history of operations is unavailable. (This is the case for 3D STEP models).
* Possibility for using Direct Modeling of the model, when the history of operations is unavailable. (This is the case for 3D STEP models).
* Useful in situations to quickly remove proprietary details of the model before sharing it. See [Defeaturing](https://wiki.freecadweb.org/Defeaturing)
* More details at [wiki.freecadweb.org/Defeaturing_Workbench](https://wiki.freecadweb.org/Defeaturing_Workbench)

Expand Down