| 71 | } |
| 72 | |
| 73 | void 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 | |
| 85 | void vtkTableToSparseArray::SetValueColumn(const char* name) |
| 86 | { |
no test coverage detected