| 294 | } |
| 295 | |
| 296 | static void CheckY( // check that the point "bot" is below the point "top" |
| 297 | const Shape& shape, // in |
| 298 | int top, // in |
| 299 | int bot) // in |
| 300 | { |
| 301 | if (PointUsed(shape, top) && |
| 302 | PointUsed(shape, bot) && |
| 303 | shape(bot, IY) < shape(top, IY)) |
| 304 | { |
| 305 | Err("shape17 point %d is below point %d", top, bot); |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | void SanityCheckShape17( // check that left pupil is to the left of the right pupil, etc |
| 310 | const Shape& shape17) // in |
no test coverage detected