| 1038 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // |
| 1039 | |
| 1040 | bool Foam::meshReaders::STARCD::readGeometry(const scalar scaleFactor) |
| 1041 | { |
| 1042 | readPoints(geometryFile_ + ".vrt", scaleFactor); |
| 1043 | readCells(geometryFile_ + ".cel"); |
| 1044 | cullPoints(); |
| 1045 | readBoundary(geometryFile_ + ".bnd"); |
| 1046 | |
| 1047 | return true; |
| 1048 | } |
| 1049 | |
| 1050 | |
| 1051 | // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // |
no test coverage detected