xtd 0.2.0
Loading...
Searching...
No Matches

◆ line_join

Specifies how to join consecutive line or curve segments in a figure (subpath) contained in a xtd::drawing::drawing_2d::graphics_path object.

Namespace
xtd::drawing::drawing_2d
Library
xtd.drawing
Remarks
Compositing is done during rendering when the source pixels are combined with the destination pixels to produce the resultant pixels. The quality of compositing directly relates to the visual quality of the output and is inversely proportional to the render time. The higher the quality, the slower the render time. This is because the higher the quality level, the more surrounding pixels need to be taken into account during the composite. The linear quality setting (AssumeLinear) compromises by providing better quality than the default quality at a slightly lower speed.
Enumerator
miter 

Specifies a mitered join. This produces a sharp corner or a clipped corner, depending on whether the length of the miter exceeds the miter limit.

bevel 

Specifies a beveled join. This produces a diagonal corner.

round 

Specifies a circular join. This produces a smooth, circular arc between the lines.

miter_clipped 

Specifies a mitered join. This produces a sharp corner or a beveled corner, depending on whether the length of the miter exceeds the miter limit.