------------------------------------------------------------------------------
| 579 | |
| 580 | //------------------------------------------------------------------------------ |
| 581 | int vtkTecplotReader::IsDataAttributeCellBased(int attrIndx) |
| 582 | { |
| 583 | int cellBasd = -1; |
| 584 | if (attrIndx >= 0 && attrIndx < this->GetNumberOfDataAttributes()) |
| 585 | { |
| 586 | // the if-statement ensures that this->CellBased has been ready |
| 587 | cellBasd = |
| 588 | this->CellBased[attrIndx + this->CellBased.size() - this->GetNumberOfDataAttributes()]; |
| 589 | } |
| 590 | |
| 591 | return cellBasd; |
| 592 | } |
| 593 | |
| 594 | //------------------------------------------------------------------------------ |
| 595 | int vtkTecplotReader::IsDataAttributeCellBased(const char* attrName) |
nothing calls this directly
no test coverage detected