| 89 | } |
| 90 | |
| 91 | void Path::addOval(const Rect& bounds, bool clockwise) { |
| 92 | getSkValue().addOval(bounds.getSkValue(), getPathDirection(clockwise)); |
| 93 | } |
| 94 | |
| 95 | void Path::arcTo(const Rect& oval, Scalar startAngle, Scalar sweepAngle) { |
| 96 | getSkValue().addArc(oval.getSkValue(), startAngle, sweepAngle); |
no test coverage detected