3 references to GenericLerp
Microsoft.Maui (3)
Animations\AnimationLerpingExtensions.cs (1)
46 => start.HasValue && end.HasValue ? start.Value.Lerp(end.Value, progress) : start.GenericLerp(end, progress);
Animations\Lerp.cs (2)
67 Calculate = (s, e, progress) => ((bool)s).GenericLerp((bool)e, progress) 170 Calculate = (s, e, progress) => (s).GenericLerp(e, progress)