plot

The plot module allows the user to draw lines.

Line

class etki.plot.Line(x1, y1, x2, y2, *, color='black')
Argument
Purpose
Type
Note

x1

The starting x-coordinate of the Line.

float

y1

The starting y-coordinate of the Line.

float

x2

The ending x-coordinate of the Line

float

y2

The ending y-coordinate of the Line

float

color

The color of the Line

str

Optional

Last updated