28 #ifndef vtkMergeFields_h
29 #define vtkMergeFields_h
32 #include "vtkFiltersCoreModule.h"
34 VTK_ABI_NAMESPACE_BEGIN
53 void SetOutputField(
const char*
name,
int fieldLoc);
60 void SetOutputField(
const char*
name,
const char* fieldLoc);
65 void Merge(
int component,
const char* arrayName,
int sourceComp);
72 vtkSetMacro(NumberOfComponents,
int);
73 vtkGetMacro(NumberOfComponents,
int);
91 delete[] this->FieldName;
92 this->FieldName =
nullptr;
95 size_t len = strlen(name) + 1;
96 this->FieldName =
new char[len];
98 strncpy_s(this->FieldName, len, name, len - 1);
100 strncpy(this->FieldName, name, len);
125 static char FieldLocationNames[3][12];
136 void AddComponent(Component* op);
137 Component* FindComponent(
int index);
138 void DeleteAllComponents();
140 void PrintComponent(Component* op, ostream& os,
vtkIndent indent);
141 void PrintAllComponents(ostream& os,
vtkIndent indent);
148 VTK_ABI_NAMESPACE_END
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