Sets the limit at which a sharp corner is drawn beveled. Valid values are zero and greater. Has no effect if miter is less than zero. @param miter zero and greater miter limit @return this @see https://fiddle.skia.org/c/@Paint_setStr
(float miter)
| 365 | * @see <a href="https://fiddle.skia.org/c/@Paint_setStrokeMiter">https://fiddle.skia.org/c/@Paint_setStrokeMiter</a> |
| 366 | */ |
| 367 | @NotNull @Contract("_ -> this") |
| 368 | public Paint setStrokeMiter(float miter) { |
| 369 | Stats.onNativeCall(); |
| 370 | _nSetStrokeMiter(_ptr, miter); |
| 371 | return this; |
| 372 | } |
| 373 | |
| 374 | /** |
| 375 | * @return the geometry drawn at the beginning and end of strokes. |
no test coverage detected