2008-03-07 12:45:34 +05:00
|
|
|
/*!
|
|
|
|
|
|
|
|
\page create_extrusion_page Extrusion
|
|
|
|
|
|
|
|
\n To generate an \b Extrusion on an object in the <b>Main Menu</b>
|
|
|
|
select <b>New Entity - > Generation - > Extrusion</b>
|
|
|
|
|
|
|
|
\n There are 2 algorithms for creation of an \b Extrusion (Prism).
|
|
|
|
\n The \b Result of the operation will be a GEOM_Object (edge, face, shell
|
|
|
|
solid or compsolid).
|
|
|
|
|
|
|
|
\n Firstly, you can define the <b>Base Shape</b> (a basis of the
|
|
|
|
extrusion), the \b Vector (a direction of the extrusion) and the \b
|
|
|
|
Height of extrusion.
|
|
|
|
\n The \b Result of the operation will be a GEOM_Object (edge, face,
|
|
|
|
shell, solid or compsolid).
|
|
|
|
\n <b> Both Directions </b> checkbox allows extruiding the source
|
|
|
|
object both forward and backward.
|
|
|
|
\n <b>TUI Command:</b> <em>geompy.MakePrismVecH(Base, Vector, Height)</em>
|
|
|
|
\n <b>Arguments:</b> Name + 1 shape (vertex, edge, planar wire, face or
|
|
|
|
shell) serving as base object + 1 vector (for direction of the
|
|
|
|
extrusion) + 1 value (dimension).
|
|
|
|
|
|
|
|
\image html extrusion1.png
|
|
|
|
|
|
|
|
\n Secondly, you can define the \b Extrusion by the <b>Base Shape</b>
|
|
|
|
and the \b Start and <b>End Point</b> of the \b Vector (in this way
|
|
|
|
you don't need to create it in advance).
|
|
|
|
\n <b> Both Directions </b> checkbox allows extruiding the source
|
|
|
|
object both forward and backward.
|
|
|
|
\n <b>TUI Command:</b> <em>geompy.MakePrism(Base, Point1, Point2)</em>
|
|
|
|
\n <b>Arguments:</b> Name + 1 shape (vertex, edge, planar wire, face or
|
|
|
|
shell) serving as base object + 2 vertices.
|
|
|
|
|
|
|
|
\image html extrusion2.png
|
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
\n Finally, you can define the \b Extrusion by the <b>Base Shape</b>
|
|
|
|
and the <b>DX, DY, DZ</b> Vector\n
|
|
|
|
<b>Both Directions</b> checkbox allows extruding the
|
|
|
|
source objects both forward and backward.
|
|
|
|
\n <b>TUI Command:</b> <em>geompy.MakePrismDXDYDZ(Base, dx, dy, dz)</em>
|
|
|
|
\n <b>Arguments:</b> Name + 1 shape (vertex, edge, planar wire, face or
|
|
|
|
shell) serving as base object + 3 axis directions.
|
|
|
|
|
|
|
|
\image html extrusion3.png
|
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
<b>Examples:</b>
|
|
|
|
|
|
|
|
\image html prisms_basessn.png
|
|
|
|
<center>Base Shape</center>
|
|
|
|
|
|
|
|
\image html prismssn.png
|
|
|
|
<center>Prisms</center>
|
|
|
|
|
|
|
|
Our <b>TUI Scripts</b> provide you with useful examples of creation of
|
|
|
|
\ref tui_creation_prism "Complex Geometric Objects".
|
|
|
|
|
|
|
|
*/
|