------------------------------------------------------------------------------
| 847 | |
| 848 | //------------------------------------------------------------------------------ |
| 849 | void vtkParticleReader::DoProgressUpdate(size_t& bytesRead, size_t& fileLength) |
| 850 | { |
| 851 | if (bytesRead > this->Alliquot) |
| 852 | { |
| 853 | this->UpdateProgress(bytesRead / (double)fileLength); |
| 854 | this->Count++; |
| 855 | this->Alliquot = fileLength / quantum * this->Count; |
| 856 | } |
| 857 | } |
| 858 | |
| 859 | //------------------------------------------------------------------------------ |
| 860 | void vtkParticleReader::SetDataByteOrderToBigEndian() |
no test coverage detected