mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-19 04:00:33 +05:00
Update GEOM documentation
This commit is contained in:
parent
de35f4e2a3
commit
72cb85eb5f
@ -8,18 +8,29 @@ To create a 3D Sketch, select in the main menu <em>New Entity -> 3D Sketch</em>.
|
||||
|
||||
\image html 3dsketch2.png
|
||||
|
||||
The position of each coordinates can be defined by absolute coordinates X, Y, Z or
|
||||
by relative coordinates DX, DY, DZ with respect to the previous Applied point.
|
||||
Type of coordinates can be selected by the <b>Coordinates Type</b> radio buttons.
|
||||
\n <b>"Sketch Validation"</b> button applies the wire, only red part will be built by "Sketch Validation".
|
||||
\n <b>"Sketch Closure"</b> will close the Sketch by straight line from last red part and apply it.
|
||||
To make a closed wire using the TUI command, the first and the last point shoul
|
||||
In this dialog it is possible to define the coordinates of the points.
|
||||
|
||||
The position of each point can be defined by \b Absolute coordinates X, Y, Z or
|
||||
by \b Relative coordinates DX, DY, DZ with respect to the previous Applied point.
|
||||
The type of coordinates can be selected by the <b>Coordinates Type</b>
|
||||
radio buttons.
|
||||
|
||||
To add the point in the list of points and to proceed with the
|
||||
definition of the next point, click <b>Apply</b> button. \b Undo and
|
||||
\b Redo buttons, respectively, remove or restore the last point in the list.
|
||||
|
||||
\n <b>"Sketch Validation"</b> button applies the wire, built by the
|
||||
user, "as is".
|
||||
\n <b>"Sketch Closure"</b> closes the Sketch by a straight line from
|
||||
the start to the end point and applies it.
|
||||
|
||||
To make a closed wire using the TUI command, the first and the last point should
|
||||
have the same coordinates.
|
||||
|
||||
The Result of the operation will be a \b GEOM_Object.
|
||||
|
||||
<b>TUI Command:</b> <em>geompy.Make3DSketcher( [ PointsList ] )</em>
|
||||
This algorithm creates a wire, from the list of real values which define XYZ
|
||||
This algorithm creates a wire from the list of real values, which define XYZ
|
||||
coordinates of points.
|
||||
|
||||
<b>Example:</b>
|
||||
|
@ -30,10 +30,7 @@ accessible only via \b TUI commands.
|
||||
this way you don't need to create them in advance).
|
||||
\n <b>TUI Command:</b> <em>geompy.MakeBox(x1,y1,z1,x2,y2,z2)</em>
|
||||
\n <b>Arguments:</b> Name + X, Y and Z coordinates of both points.
|
||||
\note You can also use variables defined in the SALOME \b NoteBook
|
||||
to specify any numerical parameters of the box.
|
||||
|
||||
\image html box3.png
|
||||
|
||||
<b>Example:</b>
|
||||
|
||||
|
@ -9,10 +9,10 @@ Object</b> (vertex, edge, planar wire, face or shell), which will be extruded
|
||||
and the <b>Path Object</b> (edge or wire) along which the <b>Base
|
||||
Object</b> will be extruded.
|
||||
\n In this mode the default pipe generation algorithm is used. The pipe
|
||||
is created in such a way that the <b>angle between the normal vector</b> to
|
||||
the base shape <b>and the tangent to the path</b> wire at any point of the
|
||||
given path <b>is kept constant</b>.
|
||||
\n Check Box <b>Select unpublished edges</b> - if checked, allows to select an edge of any other shape as the path object.
|
||||
is created so that the <b>angle between the normal vector</b> to
|
||||
the base shape <b>and the tangent to the path</b> wire remains constant at any point of the
|
||||
given path.
|
||||
\n <b>Select unpublished edges</b> checkbox - if checked, allows to select an edge of any other shape as the path object.
|
||||
\n The \b Result of the operation will be a GEOM_Object (edge, face, shell,
|
||||
solid or compsolid).
|
||||
|
||||
@ -25,17 +25,18 @@ definition of the path.
|
||||
|
||||
<b>Example:</b>
|
||||
|
||||
\image html pipe_wire_edgesn.png "Extrusion of wire"
|
||||
\image html pipe_wire_edgesn.png "Extrusion of a wire"
|
||||
|
||||
\n Secondly, you can define the <b>Base
|
||||
Object</b> (edge, planar wire or face), which will be extruded,
|
||||
the <b>Path Object</b> (edge or wire) along which the <b>Base
|
||||
Object</b> will be extruded and the <b>Vector</b> (edge or wire).
|
||||
Object</b> will be extruded and the <b>BiNormal Vector</b> (edge or
|
||||
wire).
|
||||
|
||||
\n In contrast to the default mode, in this mode the pipe is generated
|
||||
in such a way that the <b>angle between the normal vector</b> to the base
|
||||
shape <b>and the BiNormal vector</b> given as the third argument <b>is kept
|
||||
constant</b>.
|
||||
\n Check Box <b>Select unpublished edges</b> - if checked, allows to select an edge of any other shape as the path object.
|
||||
to preserve the constant <b>angle between the normal vector</b> to the base
|
||||
shape <b>and the BiNormal vector</b> given as the third argument.
|
||||
\n <b>Select unpublished edges</b> checkbox - if checked, allows to select an edge of any other shape as the path object.
|
||||
\n The \b Result of the operation will be a GEOM_Object (edge, face, shell,
|
||||
solid or compsolid).
|
||||
|
||||
@ -49,7 +50,7 @@ BiNormal direction to perform the extrusion.
|
||||
|
||||
<b>Example:</b>
|
||||
|
||||
\image html pipebinormalsn.png "Extrusion of face with BiNormal parameter"
|
||||
\image html pipebinormalsn.png "Extrusion of a face with BiNormal parameter"
|
||||
|
||||
Our <b>TUI Scripts</b> provide you with useful examples of creation of
|
||||
\ref tui_creation_pipe "Complex Geometric Objects".
|
||||
|
@ -24,4 +24,8 @@ into sub-objects of lower dimension.</li>
|
||||
<li>create \subpage create_adv_obj_page "Advanced geometrical objects" - edges, wires, shells...</li>
|
||||
</ul>
|
||||
|
||||
\note It is possible to use the variables defined in the SALOME \b NoteBook
|
||||
to specify the numerical parameters for creation of any object.
|
||||
|
||||
|
||||
*/
|
||||
|
@ -22,7 +22,6 @@ provided by Geometry module.
|
||||
<li>\ref tui_working_with_groups_page</li>
|
||||
<li>\ref tui_building_by_blocks_page</li>
|
||||
<li>\ref tui_sketcher_page</li>
|
||||
<li>\ref tui_3dsketcher_page</li>
|
||||
<li>\ref tui_advanced_geom_objs_page</li>
|
||||
</ul>
|
||||
<li>\subpage tui_transformation_page</li>
|
||||
@ -34,6 +33,7 @@ provided by Geometry module.
|
||||
<li>\ref tui_repairing_operations_page</li>
|
||||
</ul>
|
||||
<li>\subpage tui_measurement_tools_page</li>
|
||||
<li>\subpage tui_3dsketcher_page</li>
|
||||
<li>\subpage tui_swig_examples_page</li>
|
||||
<ul>
|
||||
<li>\ref tui_test_others_page</li>
|
||||
|
Loading…
Reference in New Issue
Block a user