Source set: Common
public class StrokeJoin internal constructor(@Suppress("unused") private val value: Int)
Styles to use for line joins.
This only affects line joins for polygons drawn by Canvas.drawPath and rectangles, not points drawn as lines with Canvas.drawPoints. See Paint.strokeJoin.
Functions
toString
Source set: Common
override fun toString(): String
Members
Companion
Source set: Common
public companion object
Properties
Miter
Source set: Common
public val Miter: StrokeJoin
Joins between line segments form sharp corners.
Round
Source set: Common
public val Round: StrokeJoin
Joins between line segments are semi-circular.
Bevel
Source set: Common
public val Bevel: StrokeJoin
Joins between line segments connect the corners of the butt ends of the line segments to give a beveled appearance.