Adds circle centered at (x, y) of size radius to Path, appending PathVerb#MOVE, four PathVerb#CONIC, and PathVerb#CLOSE. Circle begins at: (x + radius, y) Has no effect if radius is zero or negative. @param x center of circle @param y center of cir
(float x, float y, float radius)
| 1338 | * @return reference to Path |
| 1339 | */ |
| 1340 | public Path addCircle(float x, float y, float radius) { |
| 1341 | return addCircle(x, y, radius, PathDirection.CLOCKWISE); |
| 1342 | } |
| 1343 | |
| 1344 | /** |
| 1345 | * <p>Adds circle centered at (x, y) of size radius to Path, appending {@link PathVerb#MOVE}, |