StrokeJoin
Kotlin
|Java
enum class StrokeJoin
kotlin.Any | ||
↳ | kotlin.Enum<androidx.compose.ui.graphics.StrokeJoin> | |
↳ | androidx.compose.ui.graphics.StrokeJoin |
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.
Summary
Enum values | |
---|---|
Joins between line segments connect the corners of the butt ends of the line segments to give a beveled appearance. |
|
Joins between line segments form sharp corners. |
|
Joins between line segments are semi-circular. |
Inherited extension functions | ||
---|---|---|
From androidx.core.util
|
Enum values
Bevel
enum val Bevel : StrokeJoin
Joins between line segments connect the corners of the butt ends of the line segments to give a beveled appearance.