last update 20 Sep 2009 |
#include <cvrMatrixTransform.h>
Public Member Functions | |
parameters () | |
parameters (const parameters &other) | |
~parameters () | |
parameters & | copy (const parameters &other) |
parameters & | operator= (const parameters &other) |
virtual const std::string & | name () const |
virtual parameters * | clone () const |
virtual parameters * | newInstance () const |
virtual bool | write (ioHandler &handler, const bool complete=true) const |
virtual bool | read (ioHandler &handler, const bool complete=true) |
Public Attributes | |
fmatrix | transformation |
cvr::matrixTransform< I >::matrixTransform::parameters::parameters | ( | ) |
Default constructor.
Reimplemented from cvr::geometricTransform< I >::geometricTransform::parameters.
cvr::matrixTransform< I >::matrixTransform::parameters::parameters | ( | const parameters & | other | ) |
Copy constructor.
other | the parameters object to be copied |
Reimplemented from cvr::geometricTransform< I >::geometricTransform::parameters.
cvr::matrixTransform< I >::matrixTransform::parameters::~parameters | ( | ) | [virtual] |
virtual parameters* cvr::matrixTransform< I >::matrixTransform::parameters::clone | ( | ) | const [virtual] |
Returns a pointer to a clone of the parameters.
Implements cvr::geometricTransform< I >::geometricTransform::parameters.
parameters& cvr::matrixTransform< I >::matrixTransform::parameters::copy | ( | const parameters & | other | ) |
Copy the contents of a parameters object.
other | the parameters object to be copied |
Reimplemented from cvr::geometricTransform< I >::geometricTransform::parameters.
virtual const std::string& cvr::matrixTransform< I >::matrixTransform::parameters::name | ( | ) | const [virtual] |
Returns the complete name of the parameters class.
Reimplemented from cvr::geometricTransform< I >::geometricTransform::parameters.
virtual parameters* cvr::matrixTransform< I >::matrixTransform::parameters::newInstance | ( | ) | const [virtual] |
Returns a pointer to a new instance of the parameters.
Implements cvr::geometricTransform< I >::geometricTransform::parameters.
parameters& cvr::matrixTransform< I >::matrixTransform::parameters::operator= | ( | const parameters & | other | ) |
Copy the contents of a parameters object.
other | the parameters object to be copied |
Reimplemented from cvr::geometricTransform< I >::geometricTransform::parameters.
virtual bool cvr::matrixTransform< I >::matrixTransform::parameters::read | ( | ioHandler & | handler, | |
const bool | complete = true | |||
) | [virtual] |
Read the parameters from the given ioHandler.
handler | the ioHandler to be used | |
complete | if true (the default) the enclosing begin/end will be also written, otherwise only the data block will be written. |
Reimplemented from cvr::geometricTransform< I >::geometricTransform::parameters.
virtual bool cvr::matrixTransform< I >::matrixTransform::parameters::write | ( | ioHandler & | handler, | |
const bool | complete = true | |||
) | const [virtual] |
Write the parameters in the given ioHandler.
handler | the ioHandler to be used | |
complete | if true (the default) the enclosing begin/end will be also written, otherwise only the data block will be written. |
Reimplemented from cvr::geometricTransform< I >::geometricTransform::parameters.
fmatrix cvr::matrixTransform< I >::matrixTransform::parameters::transformation |