------------------------------------------------------------------------------
| 567 | |
| 568 | //------------------------------------------------------------------------------ |
| 569 | const char* vtkTecplotReader::GetDataAttributeName(int attrIndx) |
| 570 | { |
| 571 | if (attrIndx < 0 && attrIndx >= this->GetNumberOfDataAttributes()) |
| 572 | { |
| 573 | return nullptr; |
| 574 | } |
| 575 | |
| 576 | return this->Variables[attrIndx + this->Variables.size() - this->GetNumberOfDataAttributes()] |
| 577 | .c_str(); |
| 578 | } |
| 579 | |
| 580 | //------------------------------------------------------------------------------ |
| 581 | int vtkTecplotReader::IsDataAttributeCellBased(int attrIndx) |
no test coverage detected