[GITHUB #1] updated TUI command doc for make sphere from point and radius

This commit is contained in:
mbs 2024-09-09 10:16:27 +01:00
parent ae49976071
commit d72c6cd028

View File

@ -8,22 +8,22 @@
\n The \b Result of each operation will be a GEOM_Object (SOLID).
\n Firstly, you can define a \b Sphere by the <b>Center Point</b> and the \b Radius.
\n <b>TUI Command:</b> <em>geompy.MakeSphere(Point, Radius)</em>
\n <b>Arguments:</b> Name + 1 vertex + 1 value (Radius).
\n <b>TUI Command:</b> <em>geompy.MakeSpherePntR(Point, Radius)</em>
\image html sphere1.png
\n Secondly, you can define a \b Sphere with the center at the origin of
coordinate system by the \b Radius.
\n <b>Arguments:</b> Name + 1 value (Radius).
\n <b>TUI Command:</b> <em>geompy.MakeSphereR(Radius)</em>
\n <b>Arguments:</b> Name + 1 value (Radius from the origin).
\image html sphere2.png
\n <b>NB!</b> The is another way to create a \b Sphere, which is
currently accessible only via \b TUI commands.
\n You can define the \b Sphere by the coordinates of the <b>Center
Point</b> and its \b Radius (in this way you don't need to create it in advance).
Point</b> and its \b Radius (in this way you don't need to create the center point in advance).
\n <b>TUI Command:</b> <em>geompy.MakeSphere(X, Y, Z, Radius)</em>
<b>Example:</b>