Enum StrokeJoinType
Definition
- Namespace:
- Tizen.NUI.BaseComponents.VectorGraphics
- Assembly:
- Tizen.NUI.dll
numeration for The join style to be used for stroking the path.
public enum StrokeJoinType
Fields
Name | Description |
---|---|
Bevel | Used to render beveled line joins. The outer corner of the joined lines is filled by enclosing the triangular region of the corner with a straight line between the outer corners of each stroke. |
Miter | Used to render mitered line joins. The intersection of the strokes is clipped at a line perpendicular to the bisector of the angle between the strokes, at the distance from the intersection of the segments equal to the product of the miter limit value and the border radius. This prevents long spikes being created. |
Round | Used to render rounded line joins. Circular arcs are used to join two lines smoothly. |