------------------------------------------------------------------------------
| 2599 | |
| 2600 | //------------------------------------------------------------------------------ |
| 2601 | int EnSightDataSet::ReadPartId(EnSightFile& file) |
| 2602 | { |
| 2603 | int partId; |
| 2604 | file.ReadNumber(&partId); |
| 2605 | if (file.Format != FileType::ASCII && file.ByteOrder == Endianness::Unknown) |
| 2606 | { |
| 2607 | file.DetectByteOrder(&partId); |
| 2608 | } |
| 2609 | return partId; |
| 2610 | } |
| 2611 | |
| 2612 | //------------------------------------------------------------------------------ |
| 2613 | void EnSightDataSet::ReadDimensions(bool hasRange, int dimensions[3], int& numPts, int& numCells) |
no test coverage detected