(float x, float y, float radius)
| 79 | } |
| 80 | |
| 81 | @NotNull @Contract("_, _, _ -> new") |
| 82 | public static Path makeCircle(float x, float y, float radius) { |
| 83 | return makeCircle(x, y, radius, PathDirection.CLOCKWISE); |
| 84 | } |
| 85 | |
| 86 | @NotNull @Contract("_, _, _, _ -> new") |
| 87 | public static Path makeCircle(float x, float y, float radius, @NotNull PathDirection dir) { |
no test coverage detected