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

Method AddCoordinateColumn

Infovis/Core/vtkTableToSparseArray.cxx:73–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73void vtkTableToSparseArray::AddCoordinateColumn(const char* name)
74{
75 if (!name)
76 {
77 vtkErrorMacro(<< "cannot add coordinate column with nullptr name");
78 return;
79 }
80
81 this->Implementation->Coordinates.emplace_back(name);
82 this->Modified();
83}
84
85void vtkTableToSparseArray::SetValueColumn(const char* name)
86{

Callers 1

ArrayTableToSparseArrayFunction · 0.80

Calls 2

emplace_backMethod · 0.45
ModifiedMethod · 0.45

Tested by

no test coverage detected