From: dmv Date: Mon, 19 Jan 2009 15:12:09 +0000 (+0000) Subject: 0016819: EDF PAL 564: Make fillet on 2D surface X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=5143ff4b1fa1a8bbc9630fb7f2d4e99f0a96c613;p=modules%2Fgeom.git 0016819: EDF PAL 564: Make fillet on 2D surface --- diff --git a/doc/salome/gui/GEOM/images/fillet2d_2.png b/doc/salome/gui/GEOM/images/fillet2d_2.png index 39a337845..58579c47d 100755 Binary files a/doc/salome/gui/GEOM/images/fillet2d_2.png and b/doc/salome/gui/GEOM/images/fillet2d_2.png differ diff --git a/doc/salome/gui/GEOM/input/fillet2d_operation.doc b/doc/salome/gui/GEOM/input/fillet2d_operation.doc index 52d49f9ea..43701ed90 100755 --- a/doc/salome/gui/GEOM/input/fillet2d_operation.doc +++ b/doc/salome/gui/GEOM/input/fillet2d_operation.doc @@ -9,9 +9,11 @@ This operation creates fillets on the corners of a 2D Planar Face. To produce a \b Fillet 2D in the Main Menu select Operations - > Transformation - > Fillet 2D -Define the Main Object to create a fillet on, select the necessary +Define the Planar Face to create a fillet on, select the necessary vertexes on this face in the OCC Viewer and define the \b Radius of the Fillet. +\b Note: This Operation Works for the Planar 2D Faces Only. + TUI Command: geompy.MakeFillet(Shape, R, ListVertexes) \n Arguments: Name + 1 shape + one or several vertexes + 1 value (Fillet radius). diff --git a/src/GEOMGUI/GEOM_msg_en.po b/src/GEOMGUI/GEOM_msg_en.po index 13846b78c..334bbc092 100644 --- a/src/GEOMGUI/GEOM_msg_en.po +++ b/src/GEOMGUI/GEOM_msg_en.po @@ -681,6 +681,10 @@ msgstr "Edge" msgid "GEOM_FACE" msgstr "Face" +#Face +msgid "GEOM_PLANAR_FACE" +msgstr "Planar Face" + #Faces msgid "GEOM_FACES" msgstr "Faces" diff --git a/src/OperationGUI/OperationGUI_Fillet2dDlg.cxx b/src/OperationGUI/OperationGUI_Fillet2dDlg.cxx index 055b513dd..b33cfc3ee 100755 --- a/src/OperationGUI/OperationGUI_Fillet2dDlg.cxx +++ b/src/OperationGUI/OperationGUI_Fillet2dDlg.cxx @@ -68,7 +68,7 @@ OperationGUI_Fillet2dDlg::OperationGUI_Fillet2dDlg (GeometryGUI* theGeometryGUI, GroupVertexes = new DlgRef_2Sel1Spin(centralWidget()); GroupVertexes->GroupBox1->setTitle(tr("GEOM_FILLET_2D")); - GroupVertexes->TextLabel1->setText(tr("GEOM_MAIN_OBJECT")); + GroupVertexes->TextLabel1->setText(tr("GEOM_PLANAR_FACE")); GroupVertexes->TextLabel2->setText(tr("GEOM_VERTEXES")); GroupVertexes->TextLabel3->setText(tr("GEOM_RADIUS")); GroupVertexes->PushButton1->setIcon(iconSelect);