From 00c2a6ea16f8aef106f9d43c95d9a6c2c23e9878 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 17 Mar 2012 12:11:29 +0100 Subject: [PATCH 1/3] Improve Python doc for makeThickness() --- src/Mod/Part/App/TopoShapePy.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/Part/App/TopoShapePy.xml b/src/Mod/Part/App/TopoShapePy.xml index eb612ab736..34522f5f95 100644 --- a/src/Mod/Part/App/TopoShapePy.xml +++ b/src/Mod/Part/App/TopoShapePy.xml @@ -179,7 +179,8 @@ the underlying geometry. - A hollowed solid is built from an initial solid and a set of faces on this solid, + makeThickness(List of shapes, Ofset (Float), Tolerance (Float)) -> Shape +A hollowed solid is built from an initial solid and a set of faces on this solid, which are to be removed. The remaining faces of the solid become the walls of the hollowed solid, their thickness defined at the time of construction. From 7796af8ede57cd0d068aec905e5e652e109e2758 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 17 Mar 2012 12:25:52 +0100 Subject: [PATCH 2/3] 0000643: Mesh doesn't register off file import properly --- src/Mod/Mesh/Init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Mesh/Init.py b/src/Mod/Mesh/Init.py index 427c366aff..bc76d6a79b 100644 --- a/src/Mod/Mesh/Init.py +++ b/src/Mod/Mesh/Init.py @@ -31,7 +31,7 @@ ParGrp = FreeCAD.ParamGet("System parameter:Modules").GetGroup("Mesh") # Append the open handler -FreeCAD.addImportType("Mesh formats (*.stl *.ast *.bms *.obj *.ply)","Mesh") +FreeCAD.addImportType("Mesh formats (*.stl *.ast *.bms *.obj *.off *.ply)","Mesh") FreeCAD.addExportType("Mesh formats (*.stl *.ast *.bms *.obj *.off *.ply)","Mesh") From 07b22afb37451c6b4c99d77b4bccd98c206c8dbc Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 17 Mar 2012 14:40:28 +0100 Subject: [PATCH 3/3] Fix typo --- src/Gui/CommandStd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/CommandStd.cpp b/src/Gui/CommandStd.cpp index f0c3210a6c..3861e1e647 100644 --- a/src/Gui/CommandStd.cpp +++ b/src/Gui/CommandStd.cpp @@ -521,7 +521,7 @@ StdCmdMeasurementSimple::StdCmdMeasurementSimple() :Command("Std_MeasurementSimple") { sGroup = QT_TR_NOOP("Tools"); - sMenuText = QT_TR_NOOP("Mesure distance"); + sMenuText = QT_TR_NOOP("Measure distance"); sToolTipText = QT_TR_NOOP("Measures distance between two selected objects"); sWhatsThis = QT_TR_NOOP("Measures distance between two selected objects"); sStatusTip = QT_TR_NOOP("Measures distance between two selected objects");