mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-15 18:18:35 +05:00
32 lines
993 B
Plaintext
32 lines
993 B
Plaintext
/*!
|
|
|
|
\page create_circle_page Circle
|
|
|
|
To create a \b Circle in the <b>Main Menu</b> select <b>New Entity - >
|
|
Basic - > Circle</b>
|
|
|
|
\n There are 2 algorithms to create a \b Circle in the 3D space.
|
|
\n The \b Result of each operation will be a GEOM_Object (edge).
|
|
|
|
\n Firstly, you can define a \b Circle 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.MakeCircle(Point, Vector,
|
|
Radius)</em>
|
|
\n <b>Arguments:</b> Name + 1 vertex (for the center) + 1 edge (for
|
|
the direction) + Radius.
|
|
|
|
\image html circle1.png
|
|
|
|
\n Secondly, you can define a \b Circle by three \b Points that lie on it.
|
|
\n <b>TUI Command:</b> <em>geompy.MakeCircleThreePnt(Point1, Point2, Point3)</em>
|
|
\n <b>Arguments:</b> Name + 3 points which will form the circle.
|
|
|
|
\image html circle2.png
|
|
|
|
<b>Example:</b>
|
|
\image html circles.png
|
|
|
|
Our <b>TUI Scripts</b> provide you with useful examples of creation of
|
|
\ref tui_creation_circle "Basic Geometric Objects".
|
|
|
|
*/ |