Returns the filled equivalent of the stroked path. @param src Path read to create a filled version @return resulting Path
(@NotNull Path src)
| 435 | * @return resulting Path |
| 436 | */ |
| 437 | @NotNull @Contract("!null -> new; null -> fail") |
| 438 | public Path getFillPath(@NotNull Path src) { |
| 439 | return getFillPath(src, null, 1); |
| 440 | } |
| 441 | |
| 442 | /** |
| 443 | * Returns the filled equivalent of the stroked path. |
no test coverage detected