addPath

fun addPath(src: Path?, extend: Boolean = false): Path

Appends src to Path.

src verb array, Point array, and conic weights are added unaltered.

Return

reference to Path

Parameters

src

Path verbs, Point, and conic weights to add


fun addPath(src: Path?, dx: Float, dy: Float, extend: Boolean = false): Path

Appends src to Path, offset by (dx, dy).

Src verb array, Point array, and conic weights are added unaltered.

Return

reference to Path

Parameters

src

Path verbs, Point, and conic weights to add

dx

offset added to src Point array x-axis coordinates

dy

offset added to src Point array y-axis coordinates


fun addPath(src: Path?, matrix: Matrix33, extend: Boolean = false): Path

Appends src to Path, transformed by matrix. Transformed curves may have different verbs, Point, and conic weights.

Src verb array, Point array, and conic weights are added unaltered.

Return

reference to Path

Parameters

src

Path verbs, Point, and conic weights to add

matrix

transform applied to src