()
| 120 | |
| 121 | |
| 122 | void Foam::faceCoupleInfo::writePointsFaces() const |
| 123 | { |
| 124 | const indirectPrimitivePatch& m = masterPatch(); |
| 125 | const indirectPrimitivePatch& s = slavePatch(); |
| 126 | const primitiveFacePatch& c = cutFaces(); |
| 127 | |
| 128 | // Patches |
| 129 | { |
| 130 | OFstream str("masterPatch.obj"); |
| 131 | Pout<< "Writing masterPatch to " << str.name() << endl; |
| 132 | meshTools::writeOBJ(str, m.localFaces(), m.localPoints()); |
| 133 | } |
| 134 | { |
| 135 | OFstream str("slavePatch.obj"); |
| 136 | Pout<< "Writing slavePatch to " << str.name() << endl; |
no test coverage detected