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

44 lines
1.5 KiB
Plaintext
Executable File

/*!
\page create_disk_page Disk
To create a \b Disk in the <b>Main Menu</b> select <b>New Entity - >
Primitives - > Disk</b>
\n There are 3 algorithms to create a \b Disk in 3D space.
\n The \b Result of each operation will be a GEOM_Object (face).
\n Firstly, you can create a \b Disk by the given radius at the origin
of coordinates. You can define the axis of the disk by the orientation
group buttons. There are three options to create an object in OXY, OYZ or OZX Planes.
\n <b>TUI Command:</b> <em>geompy.MakeDiskR(Radius, Orientation)</em>
\n <b>Arguments:</b> Name + 2 values (Dimensions at origin: radius and
orientation).
\n The orientation can be defined by "1", "2" or "3" values. This
means that Disk will lie in "OXY", "OYZ" or "OZX" plane correspondingly.
\image html disk1.png
\n Secondly, you can define a \b Disk by a <b>Center Point</b>, a \b
Vector giving the circle's normal and a \b Radius.
\n <b>TUI Command:</b> <em>geompy.MakeDiskPntVecR(Point, Vector,
Radius)</em>
\n <b>Arguments:</b> Name + 1 vertex (for the center) + 1 edge (for
the direction) + Radius.
\image html disk2.png
\n Finally, you can define a \b Disk by three \b Points that lie on its boundary.
\n <b>TUI Command:</b> <em>geompy.MakeDiskThreePnt(Point1, Point2, Point3)</em>
\n <b>Arguments:</b> Name + 3 points which will form the disk.
\image html disk3.png
<b>Example:</b>
\image html disks.png
Our <b>TUI Scripts</b> provide you with useful examples of creating
\ref tui_creation_disk "Primitives".
*/