kCGLineJoinRound
kCGLineJoinRound is a constant used in Core Graphics, Apple's 2D drawing API for macOS and iOS. It specifies the style of the join between two line segments. When kCGLineJoinRound is applied, the sharp corner where two lines meet is replaced by a rounded arc. This creates a softer, more visually appealing appearance for paths and strokes.
This constant is a member of the CGLineJoin enumeration. When drawing a line or path using Core
Other possible values for CGLineJoin include `kCGLineJoinMiter` (the default, which creates sharp, angled corners) and `kCGLineJoinBevel`