Return the neighbour face point from the signed indices
| 227 | |
| 228 | // Return the neighbour face point from the signed indices |
| 229 | inline label facePointN |
| 230 | ( |
| 231 | const block& block, |
| 232 | const label i, |
| 233 | const label j, |
| 234 | const label k |
| 235 | ) |
| 236 | { |
| 237 | return block.pointLabel |
| 238 | ( |
| 239 | unsignIndex(i, block.density().x()), |
| 240 | unsignIndex(j, block.density().y()), |
| 241 | unsignIndex(k, block.density().z()) |
| 242 | ); |
| 243 | } |
| 244 | |
| 245 | // Return the neighbour face point from the mapped indices |
| 246 | inline label facePointN |
no test coverage detected