path

abstract fun path(points: List<Point>, fill: Paint, fillRule: Renderer.FillRule? = null)

Fills a line path connecting the given points.

Parameters

points

list of points for the path

fill

to fill with

fillRule

indicating how to fill the path


abstract fun path(path: Path, fill: Paint, fillRule: Renderer.FillRule? = null)

Fills a line path connecting the given points.

Parameters

path

to draw

fill

to fill with

fillRule

indicating how to fill the path


abstract fun path(points: List<Point>, stroke: Stroke)

Draws a line path connecting the given points.

Parameters

points

list of points for the path

stroke

to outline with


abstract fun path(path: Path, stroke: Stroke)

Draws a line path connecting the given points.

Parameters

path

to draw

stroke

to outline with


abstract fun path(points: List<Point>, stroke: Stroke, fill: Paint, fillRule: Renderer.FillRule? = null)

Fills and outlines a line path connecting the given points.

Parameters

points

list of points for the path

stroke

to outline with

fill

to fill with

fillRule

indicating how to fill the path


abstract fun path(path: Path, stroke: Stroke, fill: Paint, fillRule: Renderer.FillRule? = null)

Fills and outlines a line path connecting the given points.

Parameters

path

to draw

stroke

to use for outlining the path

fill

to fill with

fillRule

indicating how to fill the path