line

fun Canvas.line(x1: Int, y1: Int, x2: Int, y2: Int, color: Color = Color.BLACK)

Draws a line on the canvas.

Parameters

x1

The X coordinate of the first point

y1

The Y coordinate of the second point

x2

The X coordinate of the first point

y2

The Y coordinate of the second point

color

The color of the line


fun Canvas.line(x1: Int, y1: Int, x2: Int, y2: Int, thick: Float, color: Color = Color.BLACK)

Draws a line on the canvas using triangles and quads.

Parameters

x1

The X coordinate of the first point

y1

The Y coordinate of the second point

x2

The X coordinate of the first point

y2

The Y coordinate of the second point

thick

The thickness of the line.

color

The color of the line