StrokeJoin enum
Styles to use for line joins.
This only affects line joins for polygons drawn by Canvas.drawPath and rectangles, not points drawn as lines with Canvas.drawPoints.
See Paint.strokeJoin.
Constants
- bevel → const StrokeJoin
-
Joins between line segments connect the corners of the butt ends of the line segments to give a beveled appearance.
const StrokeJoin(2)
- miter → const StrokeJoin
-
Joins between line segments form sharp corners.
const StrokeJoin(0)
- round → const StrokeJoin
-
Joins between line segments are semi-circular.
const StrokeJoin(1)
- values → const List<StrokeJoin>
-
A constant List of the values in this enum, in order of their declaration.
const List<StrokeJoin>
Properties
Methods
-
toString(
) → String - Returns a string representation of this object.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
Operators
-
operator ==(
other) → bool -
The equality operator. [...]
inherited