| 46 | // * * * * * * * * * * * * * Private Static Functions * * * * * * * * * * * // |
| 47 | |
| 48 | bool Foam::meshCutter::uses(const labelList& elems1, const labelList& elems2) |
| 49 | { |
| 50 | forAll(elems1, elemI) |
| 51 | { |
| 52 | if (findIndex(elems2, elems1[elemI]) != -1) |
| 53 | { |
| 54 | return true; |
| 55 | } |
| 56 | } |
| 57 | return false; |
| 58 | } |
| 59 | |
| 60 | |
| 61 | bool Foam::meshCutter::isIn |
no test coverage detected