Edit

SKPathBuilder.LineTo Method

Definition

Overloads

Name Description
LineTo(SKPoint)

Appends a straight line segment from the current point to the specified point.

LineTo(Single, Single)

Appends a straight line segment from the current point to the specified coordinates.

LineTo(SKPoint)

Appends a straight line segment from the current point to the specified point.

public void LineTo(SkiaSharp.SKPoint point);

Parameters

point
SKPoint

The end point of the line segment.

Applies to

LineTo(Single, Single)

Appends a straight line segment from the current point to the specified coordinates.

public void LineTo(float x, float y);

Parameters

x
Single

The x-coordinate of the end point.

y
Single

The y-coordinate of the end point.

Applies to