Polyline

data class Polyline(val start: Point, val points: List<Point>) : FigureInstruction

Instruction that draws a polyline from a given start and a list of points.

Parameters

start

The starting Point of the polyline.

points

A list of Points.

Constructors

Link copied to clipboard
constructor(start: Point, points: List<Point>)

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
open override var parent: Instruction?
Link copied to clipboard
Link copied to clipboard
open override val start: Point