MCPcopy Create free account
hub / github.com/Kitware/VTK / SetArrayName

Method SetArrayName

Filters/Extraction/vtkConvertSelection.cxx:86–94  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

84
85//------------------------------------------------------------------------------
86void vtkConvertSelection::SetArrayName(const char* name)
87{
88 if (!this->ArrayNames)
89 {
90 this->ArrayNames = vtkStringArray::New();
91 }
92 this->ArrayNames->Initialize();
93 this->ArrayNames->InsertNextValue(name);
94}
95
96//------------------------------------------------------------------------------
97const char* vtkConvertSelection::GetArrayName()

Callers 2

TestPDCFunction · 0.45
TestExtractValuesFunction · 0.45

Calls 3

NewFunction · 0.50
InitializeMethod · 0.45
InsertNextValueMethod · 0.45

Tested by 2

TestPDCFunction · 0.36
TestExtractValuesFunction · 0.36