0016819: EDF PAL 564: Make fillet on 2D surface

This commit is contained in:
dmv 2009-01-19 15:12:09 +00:00
parent 8cef831218
commit 5143ff4b1f
4 changed files with 8 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -9,9 +9,11 @@ This operation creates fillets on the corners of a <b>2D Planar Face</b>.
To produce a \b Fillet 2D in the <b>Main Menu</b> select To produce a \b Fillet 2D in the <b>Main Menu</b> select
<b>Operations - > Transformation - > Fillet 2D</b> <b>Operations - > Transformation - > Fillet 2D</b>
Define the <b>Main Object</b> to create a fillet on, select the necessary Define the <b>Planar Face</b> to create a fillet on, select the necessary
vertexes on this face in the OCC Viewer and define the \b Radius of the Fillet. vertexes on this face in the OCC Viewer and define the \b Radius of the Fillet.
\b Note: This Operation Works for the <b>Planar 2D</b> Faces Only.
<b>TUI Command:</b> <em>geompy.MakeFillet(Shape, R, ListVertexes)</em> <b>TUI Command:</b> <em>geompy.MakeFillet(Shape, R, ListVertexes)</em>
\n <b>Arguments:</b> Name + 1 shape + one or several vertexes + 1 value (Fillet radius). \n <b>Arguments:</b> Name + 1 shape + one or several vertexes + 1 value (Fillet radius).

View File

@ -681,6 +681,10 @@ msgstr "Edge"
msgid "GEOM_FACE" msgid "GEOM_FACE"
msgstr "Face" msgstr "Face"
#Face
msgid "GEOM_PLANAR_FACE"
msgstr "Planar Face"
#Faces #Faces
msgid "GEOM_FACES" msgid "GEOM_FACES"
msgstr "Faces" msgstr "Faces"

View File

@ -68,7 +68,7 @@ OperationGUI_Fillet2dDlg::OperationGUI_Fillet2dDlg (GeometryGUI* theGeometryGUI,
GroupVertexes = new DlgRef_2Sel1Spin(centralWidget()); GroupVertexes = new DlgRef_2Sel1Spin(centralWidget());
GroupVertexes->GroupBox1->setTitle(tr("GEOM_FILLET_2D")); 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->TextLabel2->setText(tr("GEOM_VERTEXES"));
GroupVertexes->TextLabel3->setText(tr("GEOM_RADIUS")); GroupVertexes->TextLabel3->setText(tr("GEOM_RADIUS"));
GroupVertexes->PushButton1->setIcon(iconSelect); GroupVertexes->PushButton1->setIcon(iconSelect);