| 97 | |
| 98 | |
| 99 | inline Foam::label Foam::blockDescriptor::pointLabel |
| 100 | ( |
| 101 | const label i, |
| 102 | const label j, |
| 103 | const label k |
| 104 | ) const |
| 105 | { |
| 106 | return |
| 107 | ( |
| 108 | i |
| 109 | + j*(density_.x() + 1) |
| 110 | + k*(density_.x() + 1)*(density_.y() + 1) |
| 111 | ); |
| 112 | } |
| 113 | |
| 114 | |
| 115 | inline Foam::label Foam::blockDescriptor::facePointLabel |
no test coverage detected