| 272 | } |
| 273 | |
| 274 | Shape Shape17( // convert an arb face shape to a 17 point shape, err if can't |
| 275 | const Shape& shape) // in |
| 276 | { |
| 277 | Shape shape17(Shape17OrEmpty(shape)); |
| 278 | if (shape17.rows == 0) |
| 279 | Err("Cannot convert %d point shape to 17 points", shape.rows); |
| 280 | return shape17; |
| 281 | } |
| 282 | |
| 283 | static void CheckX( // check that the point "left" is leftwards of the point "right" |
| 284 | const Shape& shape, // in |
no test coverage detected