37 #ifndef vtkMergeFields_h 38 #define vtkMergeFields_h 41 #include "vtkFiltersCoreModule.h" 61 void SetOutputField(
const char*
name,
int fieldLoc);
68 void SetOutputField(
const char*
name,
const char* fieldLoc);
73 void Merge(
int component,
const char* arrayName,
int sourceComp);
80 vtkSetMacro(NumberOfComponents,
int);
81 vtkGetMacro(NumberOfComponents,
int);
99 delete[] this->FieldName;
100 this->FieldName =
nullptr;
103 size_t len = strlen(
name) + 1;
104 this->FieldName =
new char[len];
106 strncpy_s(this->FieldName, len,
name, len - 1);
108 strncpy(this->FieldName,
name, len);
133 static char FieldLocationNames[3][12];
144 void AddComponent(Component* op);
145 Component* FindComponent(
int index);
146 void DeleteAllComponents();
148 void PrintComponent(Component* op, ostream& os,
vtkIndent indent);
149 void PrintAllComponents(ostream& os,
vtkIndent indent);
Merge multiple fields into one.
void SetName(const char *name)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
abstract superclass for arrays of numeric data
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
Component * GetNextComponent(Component *op)
Superclass for algorithms that produce output of the same type as input.
static vtkDataSetAlgorithm * New()
represent and manipulate fields of data