geom/doc/salome/gui/GEOM/input/creating_quadrangle_face.doc

50 lines
1.5 KiB
Plaintext
Raw Normal View History

2012-08-09 13:58:02 +06:00
/*!
\page create_quadrangle_face_page Quadrangle face
2012-12-13 14:40:36 +06:00
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
2012-08-09 13:58:02 +06:00
edges).
2012-12-13 14:40:36 +06:00
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
2013-06-17 18:09:15 +06:00
\ref tui_building_by_blocks_page
2012-12-13 14:40:36 +06:00
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.
2012-08-09 13:58:02 +06:00
\image html block1.png
2012-12-13 14:40:36 +06:00
Secondly, you can define a Quadrangle Face by two edges, while the other two edges are created automatically.
2013-06-17 18:09:15 +06:00
<b>TUI Command:</b> <em>geompy.MakeQuad2Edges(E1, E2)</em>
2012-12-13 14:40:36 +06:00
<b>Arguments:</b> Name + 2 Edges.
2012-08-09 13:58:02 +06:00
\image html block2.png
2012-12-13 14:40:36 +06:00
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.
2012-08-09 13:58:02 +06:00
\image html block3.png
\n <b>Example:</b>
\image html image185.png "Quadrangle face built by blocks"
2013-06-17 18:09:15 +06:00
*/