Line

data class Line(val start: Point, val end: Point) : FigureInstruction

Instruction that draws a line between the start and ends.

Parameters

start

The starting Point of the line.

end

The end Point of the line.

Constructors

Link copied to clipboard
constructor(start: Point, end: Point)

Functions

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

Properties

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