MCPcopy Create free account
hub / github.com/HumbleUI/Skija / setStrokeJoin

Method setStrokeJoin

shared/java/Paint.java:423–429  ·  view source on GitHub ↗

Sets the geometry drawn at the corners of strokes. @return this @see https://fiddle.skia.org/c/@Paint_setStrokeJoin

(@NotNull PaintStrokeJoin join)

Source from the content-addressed store, hash-verified

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.

Calls 2

onNativeCallMethod · 0.95
_nSetStrokeJoinMethod · 0.95

Tested by

no test coverage detected