Table of Contents

Constructor SKPathInterpolation

Namespace
SkiaSharp.Extended
Assembly
SkiaSharp.Extended.dll

SKPathInterpolation(SKPath, SKPath, float)

Initializes a new instance of SKPathInterpolation with the specified source and target paths.

public SKPathInterpolation(SKPath from, SKPath to, float maxSegmentLength = 5)

Parameters

from SKPath

The starting path.

to SKPath

The ending path.

maxSegmentLength float

The maximum length of a path segment used when normalizing curves. Smaller values produce smoother interpolation.

Exceptions

ArgumentNullException

from or to is null.