|
BALL
1.5.0
|
#include <BALL/STRUCTURE/geometricTransformations.h>
Public Member Functions | |
| TranslationProcessor () | |
| TranslationProcessor (const Vector3 &translation) | |
| void | setTranslation (const Vector3 &translation) |
| const Vector3 & | getTranslation () const |
| virtual Processor::Result | operator() (Atom &atom) |
| Applicator method. More... | |
Public Member Functions inherited from BALL::UnaryProcessor< Atom > | |
| UnaryProcessor () | |
| UnaryProcessor (const UnaryProcessor &) | |
| virtual | ~UnaryProcessor () |
| virtual bool | start () |
| virtual bool | finish () |
Additional Inherited Members | |
Public Types inherited from BALL::UnaryFunctor< ArgumentType, ResultType > | |
| typedef ResultType | result_type |
| typedef ArgumentType | argument_type |
| typedef ArgumentType & | argument_reference |
| typedef const ArgumentType & | const_argument_reference |
| typedef ArgumentType * | argument_pointer |
| typedef const ArgumentType * | const_argument_pointer |
Translation processor. 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).
Definition at line 41 of file geometricTransformations.h.
| BALL::TranslationProcessor::TranslationProcessor | ( | ) |
Default constructor. The translation applicator object is initialized and the transformation is set to (0, 0, 0).
| BALL::TranslationProcessor::TranslationProcessor | ( | const Vector3 & | translation | ) |
Constructor. Creates a new instance of a TranslationProcessor and sets the translation vector.
| translation | the new translation vector |
| const Vector3& BALL::TranslationProcessor::getTranslation | ( | ) | const |
Returns the translation vector.
|
virtual |
Applicator method.
Reimplemented from BALL::UnaryProcessor< Atom >.
| void BALL::TranslationProcessor::setTranslation | ( | const Vector3 & | translation | ) |
Sets a new translation.
| translation | the new translation vector |