Method CreateInterpolation
CreateInterpolation(SKPath, SKPath, float)
Creates a new SKPath that is an interpolation between two paths at the given position.
public static SKPath CreateInterpolation(SKPath from, SKPath to, float t)
Parameters
fromSKPathThe starting path.
toSKPathThe ending path.
tfloatThe interpolation position, where 0 returns
fromand 1 returnsto.
Returns
Exceptions
- ArgumentNullException
fromortoisnull.