PdfLineJoin enum
Shape to be used at the corners of paths that are stroked
Values
- miter → const PdfLineJoin
-
The outer edges of the strokes for the two segments shall be extended until they meet at an angle, as in a picture frame. If the segments meet at too sharp an angle (as defined by the miter limit parameter, a bevel join shall be used instead.
- round → const PdfLineJoin
-
An arc of a circle with a diameter equal to the line width shall be drawn around the point where the two segments meet, connecting the outer edges of the strokes for the two segments. This pie-slice-shaped figure shall be filled in, producing a rounded corner.
- bevel → const PdfLineJoin
-
The two segments shall be finished with butt caps and the resulting notch beyond the ends of the segments shall be filled with a triangle.
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
PdfLineJoin> - A constant List of the values in this enum, in order of their declaration.