| 90 | } |
| 91 | |
| 92 | const DataDimension AbstractGrid::adjustedLowerUpperRange( |
| 93 | const DataDimension &dim, |
| 94 | bool adjustLower, bool adjustUpper) |
| 95 | { |
| 96 | DataDimension result(dim); |
| 97 | adjustLowerUpperRange( |
| 98 | result.start, result.end, |
| 99 | result.stepWidth, |
| 100 | adjustLower, adjustUpper); |
| 101 | return result; |
| 102 | } |
nothing calls this directly
no outgoing calls
no test coverage detected