| 669 | } |
| 670 | |
| 671 | bool vtkXArrayAccessor::GetCoordinates( |
| 672 | int vtkNotUsed(ncid), int varId, std::vector<std::string>& coordName) |
| 673 | { |
| 674 | coordName.resize(this->VarCoords[varId].size()); |
| 675 | std::transform(this->VarCoords[varId].begin(), this->VarCoords[varId].end(), coordName.begin(), |
| 676 | [this](size_t index) { return this->Var[index]; }); |
| 677 | return true; |
| 678 | } |
| 679 | |
| 680 | bool vtkXArrayAccessor::NeedsFileName() |
| 681 | { |
no test coverage detected