18#ifndef vtkAssignCoordinates_h 
   19#define vtkAssignCoordinates_h 
   21#include "vtkInfovisLayoutModule.h"  
   24VTK_ABI_NAMESPACE_BEGIN
 
   37  vtkSetStringMacro(XCoordArrayName);
 
   38  vtkGetStringMacro(XCoordArrayName);
 
   45  vtkSetStringMacro(YCoordArrayName);
 
   46  vtkGetStringMacro(YCoordArrayName);
 
   53  vtkSetStringMacro(ZCoordArrayName);
 
   54  vtkGetStringMacro(ZCoordArrayName);
 
   61  vtkSetMacro(Jitter, 
bool);
 
   72  char* XCoordArrayName;
 
   73  char* YCoordArrayName;
 
   74  char* ZCoordArrayName;
 
Given two(or three) arrays take the values in those arrays and simply assign them to the coordinates ...
 
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
 
static vtkAssignCoordinates * New()
 
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
 
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
 
~vtkAssignCoordinates() override
 
a simple class to control print indentation