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

54 lines
2.3 KiB
Plaintext
Raw Normal View History

/*!
\page translation_operation_page Translation
\n To produce a \b Translation in the <b>Main Menu</b> select
<b>Operations - > Transformation - > Translation</b>
This Operation makes a translation of an \b Object. To translate a
shape you need to define the base shape and the coordinates of the
vector of translation. <b>Create a copy</b> checkbox allows to keep the
initial object, otherwise it will be removed.
\n The \b Result of all operations will be any \b GEOM_Object.
\n Firstly you can define an \b Object and the vector coordinates along the
axes.
\n <b>TUI Command:</b> <em>geompy.MakeTranslation(Shape, DX, DY,
DZ),</em> where Shape is a shape to be translated, DX, DY, DZ are
components of translation vector.
\n <b>Arguments:</b> Name + one or several objects + 3 values (coordinates).
2009-02-13 17:16:39 +05:00
\n <b>Advanced option:</b>
\ref restore_presentation_parameters_page "Set presentation parameters and subshapes from arguments".
\image html transformation1.png
\n Secondly you can define an \b Object and the start and the end points
of the vector.
\n <b>TUI Command:</b> <em>geompy.MakeTranslationTwoPoints(Object, Point1, Point2)</em>
\n <b>Arguments:</b> Name + one or several objects + 2 vertices
2009-02-13 17:16:39 +05:00
\n <b>Advanced option:</b>
\ref restore_presentation_parameters_page "Set presentation parameters and subshapes from arguments".
\image html transformation2.png
2009-02-13 17:16:39 +05:00
\n Finally you can define an \b Object and the vector. The object will be translated by the length of the vector.
\n <b>TUI Command:</b> <em>geompy.MakeTranslationVector(Object, Vector)</em>
2009-02-13 17:16:39 +05:00
\n <b>Activate Distance</b> checkbox and <b>Distance</b> field allow defining the custom distance of translation.
\n <b>TUI Command </b> for translation by vector and custom distance: <em>geompy.MakeTranslationVectorDistance(Object, Vector, Distance)</em>
\n <b>Arguments:</b> Name + one or several objects + 1 vector.
2009-02-13 17:16:39 +05:00
\n <b>Advanced option:</b>
\ref restore_presentation_parameters_page "Set presentation parameters and subshapes from arguments".
\image html transformation3.png
\n <b>Example:</b>
2009-02-13 17:16:39 +05:00
\image html translationsn1.png "The initial shape (grey)"
2009-02-13 17:16:39 +05:00
\image html translationsn2.png "The resulting shape (yellow)"
Our <b>TUI Scripts</b> provide you with useful examples of the use of
\ref tui_translation "Transformation Operations".
*/