Added in API level 1
    Join
class Join
| kotlin.Any | ||
| ↳ | kotlin.Enum<android.graphics.Paint.Join> | |
| ↳ | android.graphics.Paint.Join | |
The Join specifies the treatment where lines and curve segments join on a stroked path. The default is MITER.
Summary
| Enum values | |
|---|---|
| The outer edges of a join meet with a straight line | |
| The outer edges of a join meet at a sharp angle | |
| The outer edges of a join meet in a circular arc. | |
Enum values
BEVEL
Added in API level 1
      enum val BEVEL : Paint.Join
The outer edges of a join meet with a straight line
MITER
Added in API level 1
      enum val MITER : Paint.Join
The outer edges of a join meet at a sharp angle
ROUND
Added in API level 1
      enum val ROUND : Paint.Join
The outer edges of a join meet in a circular arc.
