#include <geometricTransformations.h>
Inheritance diagram for TranslationProcessor:

Public Member Functions | |
| TranslationProcessor () | |
| Default constructor. | |
| TranslationProcessor (const Vector3 &translation) | |
| Constructor. | |
| void | setTranslation (const Vector3 &translation) |
| Sets a new translation. | |
| const Vector3 & | getTranslation () const |
| Returns the translation vector. | |
| virtual Processor::Result | operator() (Atom &atom) |
| Applicator method. | |
This processor executes a translation on each atom of a given Composite object. The translation may be given in the constructor, or by calling setTranslation. Applying the processor to a given Composite object will add the given translation vector to the coordinates of each Atom object (and derived classes).
|
|
Default constructor. The translation applicator object is initialized and the transformation is set to (0, 0, 0). |
|
|
Constructor. Creates a new instance of a TranslationProcessor and sets the translation vector.
|
|
|
Returns the translation vector.
|
|
|
Sets a new translation.
|