SKPath.Iterator.Next Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.