Sets the geometry drawn at the corners of strokes. @return this @see https://fiddle.skia.org/c/@Paint_setStrokeJoin
(@NotNull PaintStrokeJoin join)
| 421 | * @see <a href="https://fiddle.skia.org/c/@Paint_setStrokeJoin">https://fiddle.skia.org/c/@Paint_setStrokeJoin</a> |
| 422 | */ |
| 423 | @NotNull @Contract("!null -> this; null -> fail") |
| 424 | public Paint setStrokeJoin(@NotNull PaintStrokeJoin join) { |
| 425 | assert join != null : "Paint::setStrokeJoin expected join != null"; |
| 426 | Stats.onNativeCall(); |
| 427 | _nSetStrokeJoin(_ptr, join.ordinal()); |
| 428 | return this; |
| 429 | } |
| 430 | |
| 431 | /** |
| 432 | * Returns the filled equivalent of the stroked path. |
no test coverage detected