From: maintenance team Date: Mon, 5 Nov 2007 08:07:07 +0000 (+0000) Subject: Common update X-Git-Tag: V4_1_0rc2~25 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=c000f878b8dbf956dfea5360c21c7f5242c58357;p=modules%2Fgeom.git Common update --- diff --git a/doc/salome/gui/GEOM/input/chamfer_operation.doc b/doc/salome/gui/GEOM/input/chamfer_operation.doc index 85f30759f..53e114094 100644 --- a/doc/salome/gui/GEOM/input/chamfer_operation.doc +++ b/doc/salome/gui/GEOM/input/chamfer_operation.doc @@ -18,6 +18,16 @@ Dimension (radius) of the chamfer. \image html chamfer_all.png +\n In the algorithms below there exist two ways to define the \b +Dimension of the Chamfer +\n Firstly the \b Dimension can be defined via \b D1 and \D2, which +represent the offset on the first and the second face forming the +edge. +\n Secondly the \b Dimension can be defined via \b D, which represents +the offset on the first face, and the \b Angle, which is the angle +between the first face and the chamfer plane. + + \n To create chamfer on the specified edges of the given shape, you need to define the Main Object to create a fillet on, select the two faces to which belongs the necessary common edge in the viewer @@ -25,7 +35,12 @@ and define the \b Dimension of the Chamfer. \n TUI Command: geompy.MakeChamferEdge(Shape, D1, D2, Face1, Face2), where \em Shape is a shape to create a chamfer on, \em D1 is a chamfer size along \em Face1, \em D2 is a chamfer size -along \em Face2, \em Face1 and \em Face2 are indices of faces in Shape. +along \em Face2, \em Face1 and \em Face2 are indices of faces in +Shape. + +\n Alternative TUI Command: geompy.MakeChamferEdge(Shape, D, Angle, +Face1, Face2), where \em D1 is a chamfer size along \em Face1 and +\em Angle is the angle between Face1 and the chamfer plane. \image html chamfer2.png @@ -37,16 +52,36 @@ necessary faces the OCC Viewer and define the \b Dimension of the Chamfer. \n TUI Command: geompy.MakeChamferFaces(Shape, D1, D2, ListOfFaceID), where \em Shape is a shape to create chamfer on, -\em D1 is a chamfer size along a face from \em ListOfFaceID, \em D2 -is a chamfer size along two faces connected to the edge to which the -chamfer is applied, \em ListOfFaceID is a list of indices of faces in -\em Shape. +\em D1 and D2 are chamfer sizes along faces from \em +ListOfFaceID. For each Edge Face1 and Face2 are defined basing +on their indices. + +\n Alternative TUI Command: geompy.MakeChamferFaces(Shape, D, Angle, +ListOfFaceID), where \em D1 is a chamfer size along \em Face1 and +\em Angle is the angle between Face1 and the chamfer plane. \image html chamfer3.png \image html chamfer_faces.png +\n To create chamfer on an arbitrary set of edges of the given shape +to define the Main Object to create a fillet on, select the +necessary edges the OCC Viewer and define the \b Dimension of the +Chamfer. +\n TUI Command: geompy.MakeChamferEdges(Shape, D1, D2, +ListOfEdgeID), where \em Shape is a shape to create chamfer on, +\em D1 and D2 are chamfer sizes along faces defined by the algorithm +basing on \em ListOfEdgeID, which is a list of indices of edges in +\em Shape. For each Edge the algorithm selects Face1 and Face2 basing +on their indices. + +\n Alternative TUI Command: geompy.MakeChamferEdges(Shape, D, Angle, +ListOfEdgeID), where \em D1 is a chamfer size along \em Face1 and +\em Angle is the angle between Face1 and the chamfer plane. + +\image html chamfer4.png + Our TUI Scripts provide you with useful examples of the use of \ref tui_chamfer "Transformation Operations". -*/ \ No newline at end of file +*/ diff --git a/doc/salome/gui/GEOM/input/fillet_operation.doc b/doc/salome/gui/GEOM/input/fillet_operation.doc index 5d8b3983b..8bf2ee1f6 100644 --- a/doc/salome/gui/GEOM/input/fillet_operation.doc +++ b/doc/salome/gui/GEOM/input/fillet_operation.doc @@ -24,6 +24,11 @@ the \b Radius of the Fillet. \n Arguments: Name + 1 shape + one or several edges (or faces) + 1 value (Fillet radius). +\n Alternatively, there is a possibility to create a fillet with a +variable radius. For this, toggle the lower radio button and define +\b R1 (the radius at the start of the selected edge(s)) and \b R2 +(the radius at the end of the selected edge(s)) + \image html fillet2.png \image html fillet3.png diff --git a/doc/salome/gui/GEOM/input/using_measurement_tools.doc b/doc/salome/gui/GEOM/input/using_measurement_tools.doc index e833aaca5..c831a23c0 100644 --- a/doc/salome/gui/GEOM/input/using_measurement_tools.doc +++ b/doc/salome/gui/GEOM/input/using_measurement_tools.doc @@ -10,6 +10,7 @@ concerning created or imported geometrical objects. They are:
  • \ref basic_prop_anchor "Basic properties"
  • \ref center_mass_anchor "Center of mass"
  • \ref inertia_anchor "Inertia"
  • +
  • \ref normale_anchor "Normale to a Face"
  • \ref boundaries_anchor "Check Free Boundaries"
  • \ref faces_anchor "Check Faces"
  • \ref bounding_box_anchor "Bounding box"
  • @@ -82,6 +83,14 @@ returned. \image html measures4.png +\anchor normale_anchor +

    Normale to a Face

    + +\n Calculates the normal vector to the selected \b Face. The \b Point +is a point of the \Face, where the Normal should be calculated. + +\image html normaletoface.png + \anchor boundaries_anchor

    Check Free Boundaries

    @@ -140,7 +149,7 @@ distance is computed.

    Angle

    \n Returns the angle between two lines or linear edges -\n TUI Command: geompy.GetAngle(shape1, shape2), where +\n TUI Command: geompy.GetAngle(shape1, shape2), where Shape1 and Shape2 are shapes between which the angle is computed. \image html angle.png diff --git a/doc/salome/gui/GEOM/input/viewing_geom_obj.doc b/doc/salome/gui/GEOM/input/viewing_geom_obj.doc index ac6e11ea3..a9e42b2db 100644 --- a/doc/salome/gui/GEOM/input/viewing_geom_obj.doc +++ b/doc/salome/gui/GEOM/input/viewing_geom_obj.doc @@ -11,11 +11,13 @@ module. left mouse click to change its presentation parameters and access to other useful options by right-clicking on the selected object. -\image html image1.jpg +\image html dialog.png