Edit

SKPath.Iterator.Next Method

Definition

Overloads

Name Description
Next(SKPoint[])

Returns the next verb in this iteration of the path.

Next(Span<SKPoint>)

Returns the next verb in this iteration of the path.

Next(SKPoint[])

Returns the next verb in this iteration of the path.

public SkiaSharp.SKPathVerb Next(SkiaSharp.SKPoint[] points);

Parameters

points
SKPoint[]

The array to receive the points for the current segment. Must have at least 4 elements.

Returns

The verb of the current segment, or Done when finished.

Applies to

Next(Span<SKPoint>)

Returns the next verb in this iteration of the path.

public SkiaSharp.SKPathVerb Next(Span<SkiaSharp.SKPoint> points);

Parameters

points
Span<SKPoint>

The span to receive the points for the current segment. Must have at least 4 elements.

Returns

The verb of the current segment, or Done when finished.

Applies to