mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-12 00:29:18 +05:00
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
/*!
|
|
|
|
\page create_quadrangle_face_page Quadrangle face
|
|
|
|
\n <b>Description:</b> Builds a face using the below mentioned
|
|
arguments. This operation allows to build a face bypassing the
|
|
intermediate stage of building edges and wires (in the case of
|
|
building by 4 points) or wires (in the case of building by 4 or 2
|
|
edges).
|
|
|
|
\n The \b Result of the operation will be a \b GEOM_Object (face).
|
|
|
|
\n <b>TUI Command:</b>
|
|
<ul>
|
|
<li><em>geompy.MakeQuad4Vertices(V1, V2, V3, V4),</em> where V1, V2,
|
|
V3, V4 are four vertices from which a face is constructed. Edges are
|
|
created automatically.</li>
|
|
<li><em>geompy.MakeQuad2Edges(E1, E2),</em> where E1, E2 are edges from
|
|
which the face is constructed, two other edges are created
|
|
automatically.</li>
|
|
<li><em>geompy.MakeQuad(E1, E2, E3, E4),</em> where E1, E2, E3, E4 are
|
|
four edges from which the face is constructed.</li>
|
|
</ul>
|
|
|
|
<b>Arguments:</b>
|
|
<ul>
|
|
<li>Name + 4 Points, or</li>
|
|
<li>Name + 2 Edges, or</li>
|
|
<li>Name + 4 Edges.</li>
|
|
</ul>
|
|
|
|
\n <b>Dialog Box:</b>
|
|
|
|
\image html block1.png
|
|
|
|
\image html block2.png
|
|
|
|
\image html block3.png
|
|
|
|
\n <b>Example:</b>
|
|
\image html image185.png "Quadrangle face built by blocks"
|
|
|
|
*/ |