#include <abstract_tool.h>
Public Member Functions | |
virtual CloudCommand * | createCommand (QList< const CloudComposerItem * > input_data) |
virtual QString | getToolName () const |
ModifyItemTool (PropertiesModel *parameter_model, QObject *parent) | |
virtual QList < CloudComposerItem * > | performAction (QList< const CloudComposerItem * > input_data, PointTypeFlags::PointType type=PointTypeFlags::NONE)=0 |
Function called which does work in plugin. | |
virtual | ~ModifyItemTool () |
Definition at line 90 of file abstract_tool.h.
pcl::cloud_composer::ModifyItemTool::ModifyItemTool | ( | PropertiesModel * | parameter_model, |
QObject * | parent | ||
) | [inline] |
Definition at line 94 of file abstract_tool.h.
virtual pcl::cloud_composer::ModifyItemTool::~ModifyItemTool | ( | ) | [inline, virtual] |
Definition at line 98 of file abstract_tool.h.
virtual CloudCommand* pcl::cloud_composer::ModifyItemTool::createCommand | ( | QList< const CloudComposerItem * > | input_data | ) | [inline, virtual] |
Implements pcl::cloud_composer::AbstractTool.
Definition at line 104 of file abstract_tool.h.
virtual QString pcl::cloud_composer::ModifyItemTool::getToolName | ( | ) | const [inline, virtual] |
Implements pcl::cloud_composer::AbstractTool.
Reimplemented in pcl::cloud_composer::SanitizeCloudTool, pcl::cloud_composer::StatisticalOutlierRemovalTool, pcl::cloud_composer::VoxelGridDownsampleTool, and pcl::cloud_composer::TransformClouds.
Definition at line 110 of file abstract_tool.h.
virtual QList<CloudComposerItem*> pcl::cloud_composer::ModifyItemTool::performAction | ( | QList< const CloudComposerItem * > | input_data, |
PointTypeFlags::PointType | type = PointTypeFlags::NONE |
||
) | [pure virtual] |
Function called which does work in plugin.
data | input_data from the model - const for good reason Returned list will become the output, replacing input_data in the model - you must deep copy the input_data, since undo works by switching back and forth |
Implements pcl::cloud_composer::AbstractTool.
Implemented in pcl::cloud_composer::SanitizeCloudTool, pcl::cloud_composer::StatisticalOutlierRemovalTool, pcl::cloud_composer::VoxelGridDownsampleTool, and pcl::cloud_composer::TransformClouds.