(@NotNull Point[] pts, boolean isClosed)
| 111 | } |
| 112 | |
| 113 | @NotNull @Contract("_, _ -> new") |
| 114 | public static Path makePolygon(@NotNull Point[] pts, boolean isClosed) { |
| 115 | return makePolygon(pts, isClosed, PathFillMode.WINDING, false); |
| 116 | } |
| 117 | |
| 118 | @NotNull @Contract("_, _, _ -> new") |
| 119 | public static Path makePolygon(@NotNull Point[] pts, boolean isClosed, @NotNull PathFillMode fillMode) { |
no test coverage detected