----------------------------------------------------------------------------
| 723 | |
| 724 | //---------------------------------------------------------------------------- |
| 725 | void vtkIOSSReader::SetRemoveUnusedPoints(bool val) |
| 726 | { |
| 727 | if (this->RemoveUnusedPoints != val) |
| 728 | { |
| 729 | // clear cache to ensure we read appropriate points/point data. |
| 730 | this->Internals->ClearCache(); |
| 731 | this->RemoveUnusedPoints = val; |
| 732 | this->Modified(); |
| 733 | } |
| 734 | } |
| 735 | |
| 736 | //---------------------------------------------------------------------------- |
| 737 | void vtkIOSSReader::SetReadAllFilesToDetermineStructure(bool val) |
nothing calls this directly
no test coverage detected