mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-12 00:29:18 +05:00
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
/*!
|
|
|
|
\page create_quadrangle_face_page Quadrangle face
|
|
|
|
This operation allows to build a face bypassing the
|
|
intermediate stage of building edges and wires (in case of
|
|
building by 4 points) or wires (in case of building by 4 or 2
|
|
edges).
|
|
|
|
There are 3 algorithms to create a Quadrangle Face in the 3D space.
|
|
\n The \b Result of each op
|
|
|
|
The created blocks can be processed with \ref blocks_operations_page "Operations on Blocks".
|
|
|
|
Our <b>TUI Scripts</b> provide you with useful examples of
|
|
\ref tui_building_by_blocks_page
|
|
|
|
The created blocks can be processed with \ref blocks_operations_page "Operations on Blocks".
|
|
|
|
Our <b>TUI Scripts</b> provide you with useful examples of
|
|
\ref tui_building_by_blocks_page "Building by Blocks".
|
|
age "Building by Blocks".
|
|
eration will be a \b GEOM_Object (face).
|
|
|
|
Firstly you can define a Quadrangle Face by four vertices. Edges are
|
|
created automatically.
|
|
|
|
<b>TUI Command:</b> <em>geompy.MakeQuad4Vertices(V1, V2, V3, V4),</em>
|
|
<b>Arguments:</b> Name + 4 Points.
|
|
|
|
\image html block1.png
|
|
|
|
Secondly, you can define a Quadrangle Face by two edges, while the other two edges are created automatically.
|
|
<b>TUI Command:</b> <em>geompy.MakeQuad2Edges(E1, E2)</em>
|
|
<b>Arguments:</b> Name + 2 Edges.
|
|
|
|
\image html block2.png
|
|
|
|
Finally, you can define a Quadrangle Face by four edges.
|
|
|
|
<b>TUI Command:</b> <em>geompy.MakeQuad(E1, E2, E3, E4),</em>.
|
|
<b>Arguments:</b> Name + 4 Edges.
|
|
|
|
\image html block3.png
|
|
|
|
\n <b>Example:</b>
|
|
\image html image185.png "Quadrangle face built by blocks"
|
|
|
|
*/
|