addPoints

fun addPoints(startIndex: Int, points: Iterable<Point>)

Adds the points in points to the part, starting at index startIndex.

Since

200.1.0

Parameters

startIndex

destination index for the first point in points. The points are added sequentially

points

points to add

Throws

if startIndex is out of range.


fun addPoints(points: Iterable<Point>)

Adds the points in points to the end of the part.

Since

200.1.0

Parameters

points

points to add