Definition at line 198 of file MapExtractorInterface.h.
#include <MapExtractorInterface.h>

Public Member Functions |
|
| Locator (void) | |
| ~Locator (void) | |
| virtual void | Prepare (void) |
| This is called once at the beginning. The
locator node can initialize its own internal data during this call.
|
|
| virtual bool | LocateSurfacePoint (mudbox::SurfacePoint &pPoint, const class TargetLocation &vTarget) |
| This function is responsible to locate a
point on the source surface based on a surface point on the target
surface. |
|
| virtual QWidget * | UserInterface (void) |
| This function must create a new widget
instance which provides an interface to the user to check and alter
the current options for the locator node. |
|
| virtual void | Serialize (mudbox::Stream &s) |
| The locator node must serialize its internal
data members in this function. |
|
| class MapExtractor * | MapExtractor (void) const |
| This function returns a pointer to the
address of the map extraction node which this locator node belongs
to. |
|
Public Attributes |
|
| Mapper * | m_pMapper |
| Locator | ( | void | ) | [inline] |
Definition at line 202 of file MapExtractorInterface.h.
: m_pMapper( NULL ) {};
| ~Locator | ( | void | ) | [inline] |
Definition at line 203 of file MapExtractorInterface.h.
{};
| virtual void Prepare | ( | void | ) | [inline, virtual] |
This is called once at the beginning. The locator node can initialize its own internal data during this call.
Definition at line 205 of file MapExtractorInterface.h.
{};
| virtual bool LocateSurfacePoint | ( | mudbox::SurfacePoint & | pPoint, |
| const class TargetLocation & | vTarget | ||
| ) | [virtual] |
This function is responsible to locate a point on the source surface based on a surface point on the target surface.
The function has to fill the pPoint structure with the result. This function must be thread safe.
| virtual QWidget* UserInterface | ( | void | ) | [virtual] |
This function must create a new widget instance which provides an interface to the user to check and alter the current options for the locator node.
| virtual void Serialize | ( | mudbox::Stream & | s | ) | [virtual] |
The locator node must serialize its internal data members in this function.
Reimplemented from Node.
| class MapExtractor* MapExtractor | ( | void | ) | const |
This function returns a pointer to the address of the map extraction node which this locator node belongs to.
| Mapper* m_pMapper |
Definition at line 217 of file MapExtractorInterface.h.