Merge branch 'master' of ssh://free-cad.git.sourceforge.net/gitroot/free-cad/free-cad

This commit is contained in:
Yorik van Havre 2012-03-17 17:16:26 -03:00
commit b1b3100cd8
3 changed files with 4 additions and 3 deletions

View File

@ -521,7 +521,7 @@ StdCmdMeasurementSimple::StdCmdMeasurementSimple()
:Command("Std_MeasurementSimple") :Command("Std_MeasurementSimple")
{ {
sGroup = QT_TR_NOOP("Tools"); 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"); sToolTipText = QT_TR_NOOP("Measures distance between two selected objects");
sWhatsThis = 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"); sStatusTip = QT_TR_NOOP("Measures distance between two selected objects");

View File

@ -31,7 +31,7 @@
ParGrp = FreeCAD.ParamGet("System parameter:Modules").GetGroup("Mesh") ParGrp = FreeCAD.ParamGet("System parameter:Modules").GetGroup("Mesh")
# Append the open handler # 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") FreeCAD.addExportType("Mesh formats (*.stl *.ast *.bms *.obj *.off *.ply)","Mesh")

View File

@ -179,7 +179,8 @@ the underlying geometry.</UserDocu>
</Methode> </Methode>
<Methode Name="makeThickness" Const="true"> <Methode Name="makeThickness" Const="true">
<Documentation> <Documentation>
<UserDocu>A hollowed solid is built from an initial solid and a set of faces on this solid, <UserDocu>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 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.</UserDocu> the hollowed solid, their thickness defined at the time of construction.</UserDocu>
</Documentation> </Documentation>