\page chamfer_operation_page Chamfer
\n To produce a \b Chamfer in the <b>Main Menu</b> select
-<b>Operations - > Transformation - > Chamfer</b>
+<b>Operations - > Chamfer</b>
\n This operation allows you to make chamfer of the edges of a Shape.
\n The \b Result will be a \b GEOM_Object.
\image html fillet1d_2.png
To produce a \b Fillet 1D in the <b>Main Menu</b> select
-<b>Operations - > Transformation - > Fillet 1D</b>
+<b>Operations - > Fillet 1D</b>
Define the <b>Wire with planar Edges</b> to create a fillet on, select the necessary
vertexes on this wire in the OCC Viewer and define the \b Radius of the Fillet.
\image html fillet2d_2.png
To produce a \b Fillet 2D in the <b>Main Menu</b> select
-<b>Operations - > Transformation - > Fillet 2D</b>
+<b>Operations - > Fillet 2D</b>
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.
\page fillet_operation_page Fillet
\n To produce a \b Fillet in the <b>Main Menu</b> select
-<b>Operations - > Transformation - > Fillet</b>
+<b>Operations - > Fillet</b>
\n This operation creates fillets on the edges of a shape.
\n The \b Result will be a \b GEOM_Object.
\image html partitionsn2.png "Result of intersection"
\anchor partition_picture_3
-\image html partitionsn3.png "Result of intersection of a box and a
-plane (both as \em Objects, no tools) with the Resulting type \em Solid and checked <em> "Keep shapes of lower type"</em>
+\image html partitionsn3.png "Result of intersection of a box and a plane (both as \em Objects, no tools) with the Resulting type \em Solid and checked 'Keep shapes of lower type'"
Our <b>TUI Scripts</b> provide you with useful examples of \ref tui_partition "Basic Operations".
</message>
<message>
<source>GEOM_PIPE</source>
- <translation>tuyau</translation>
+ <translation>Tuyau</translation>
</message>
<message>
<source>GEOM_PIPE_TITLE</source>
- <translation>Construction d'un Tuyau </translation>
+ <translation>Construction d'un tuyau</translation>
</message>
<message>
<source>GEOM_SEGMENT</source>
<translation>Vecteur</translation>
</message>
<message>
- <source>GEOM_AXIS_DEFAULT</source>
+ <source>GEOM_AXIS_DEFAULT</source>
<translation> (Axe Z par défaut)</translation>
</message>
<message>
</message>
<message>
<source>MEN_EDIT</source>
- <translation>Editer</translation>
+ <translation>Edition</translation>
</message>
<message>
<source>MEN_ELLIPSE</source>
</message>
<message>
<source>MEN_VIEW</source>
- <translation>Vue</translation>
+ <translation>Affichage</translation>
</message>
<message>
<source>MEN_WHAT_IS</source>
</message>
<message>
<source>TOP_DISK</source>
- <translation>Créer une disque</translation>
+ <translation>Créer un disque</translation>
</message>
<message>
<source>TOP_DISPLAY</source>
</message>
<message>
<source>TOP_GROUP_CREATE</source>
- <translation>Créer une groupe</translation>
+ <translation>Créer un groupe</translation>
</message>
<message>
<source>TOP_GROUP_EDIT</source>
- <translation>Editer une groupe</translation>
+ <translation>Editer un groupe</translation>
</message>
<message>
<source>TOP_HEX_SOLID</source>
</message>
<message>
<source>TOP_IMPORT</source>
- <translation>Importer une géométry d'un fichier BREP</translation>
+ <translation>Importer une géométrie d'un fichier BREP</translation>
</message>
<message>
<source>TOP_INERTIA</source>
</message>
<message>
<source>TOP_LOCAL_CS</source>
- <translation>Créer un système local de coordonnées </translation>
+ <translation>Créer un système local de coordonnées</translation>
</message>
<message>
<source>TOP_MASS_CENTER</source>
</message>
<message>
<source>TOP_MIN_DIST</source>
- <translation>Distance minimale </translation>
+ <translation>Distance minimale</translation>
</message>
<message>
<source>TOP_MIRROR</source>
<message>
<source>SHOW_ALL_SUB_SHAPES</source>
<translation>Afficher tous les sous-objets</translation>
- </message>
+ </message>
<message>
<source>SELECT_ALL</source>
<translation>Tout sélectionner</translation>
</message>
<message>
<source>GEOM_PIPE_TSHAPE</source>
- <translation>TuyauT</translation>
+ <translation>Tuyau en T</translation>
</message>
<message>
<source>GEOM_PIPE_TSHAPE_MPIPE</source>
return;
// Delta
- float delta = 0.01;
+ float delta = 0.1; // VSR: 23/11/2010 (transparency value <= 0.05 is ignored)
if ( !increase )
delta *= -1;
# @param theShapeWhat Shape, specifying what to find.
# @return Group of all found sub-shapes or a single found sub-shape.
#
+ # @note This function has a restriction on argument shapes.
+ # If \a theShapeWhere has curved parts with significantly
+ # outstanding centres (i.e. the mass centre of a part is closer to
+ # \a theShapeWhat than to the part), such parts will not be found.
+ # @image html get_in_place_lost_part.png
+ #
# @ref swig_GetInPlace "Example"
- def GetInPlace(self,theShapeWhere, theShapeWhat):
+ def GetInPlace(self, theShapeWhere, theShapeWhat):
# Example: see GEOM_TestOthers.py
anObj = self.ShapesOp.GetInPlace(theShapeWhere, theShapeWhat)
RaiseIfFailed("GetInPlace", self.ShapesOp)
# @ref tui_fillet2d "Example"
def MakeFillet1D(self,theShape, theR, theListOfVertexes):
# Example: see GEOM_TestAll.py
+ theR,Parameters = ParseParameters(theR)
anObj = self.LocalOp.MakeFillet1D(theShape, theR, theListOfVertexes)
RaiseIfFailed("MakeFillet1D", self.LocalOp)
+ anObj.SetParameters(Parameters)
return anObj
## Perform a fillet on the specified edges/faces of the given shape
# @ref tui_fillet2d "Example"
def MakeFillet2D(self,theShape, theR, theListOfVertexes):
# Example: see GEOM_TestAll.py
+ theR,Parameters = ParseParameters(theR)
anObj = self.LocalOp.MakeFillet2D(theShape, theR, theListOfVertexes)
RaiseIfFailed("MakeFillet2D", self.LocalOp)
+ anObj.SetParameters(Parameters)
return anObj
## Perform a symmetric chamfer on all edges of the given shape.