| 33 | // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // |
| 34 | |
| 35 | void Foam::ensightPart::writeHeader |
| 36 | ( |
| 37 | ensightFile& os, |
| 38 | bool withDescription |
| 39 | ) const |
| 40 | { |
| 41 | os.write("part"); |
| 42 | os.newline(); |
| 43 | |
| 44 | os.write(number() + 1); // Ensight starts with 1 |
| 45 | os.newline(); |
| 46 | |
| 47 | if (withDescription) |
| 48 | { |
| 49 | os.write(name()); |
| 50 | os.newline(); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | |
| 55 | void Foam::ensightPart::writeFieldList |
no test coverage detected