Returns a PathEffect that can turn sharp corners into rounded corners.
if <=0, returns null
Returns a PathEffect that add dashes to the path.
See SkDashPathEffect.h for more details.
even number of entries with even indicies specifying the length of the "on" intervals, and the odd indices specifying the length of "off".
Optionalphase: numberoffset length into the intervals array. Defaults to 0.
Returns a PathEffect that breaks path into segments of segLength length, and randomly move the endpoints away from the original path by a maximum of deviation.
length of the subsegments.
limit of the movement of the endpoints.
modifies the randomness. See SkDiscretePathEffect.h for more.
Returns a PathEffect that will fill the drawing path with a pattern made by applying the given matrix to a repeating set of infinitely long lines of the given width. For example, the scale of the provided matrix will determine how far apart the lines should be drawn its rotation affects the lines' orientation.
must be >= 0
Returns a PathEffect which implements dashing by replicating the specified path.
The path to replicate (dash)
The space between instances of path
distance (mod advance) along path for its initial position
how to transform path at each point (based on the current position and tangent)
Returns a PathEffect that will fill the drawing path with a pattern by repeating the given path according to the provided matrix. For example, the scale of the matrix determines how far apart the path instances should be drawn.
See SkPathEffect.h for more details.