| 394 | // So prevent that when we know all points in the shape are actually used. |
| 395 | |
| 396 | void JitterPointsAt00InPlace( |
| 397 | Shape& shape) // io |
| 398 | { |
| 399 | for (int i = 0; i < shape.rows; i++) |
| 400 | if (!PointUsed(shape, i)) |
| 401 | shape(i, IX) = XJITTER; |
| 402 | } |
| 403 | |
| 404 | Shape JitterPointsAt00( |
| 405 | const Shape& shape) // in |
no test coverage detected