Animations\AnimationLerpingExtensions.cs (8)
30			new Size(start.Width.Lerp(end.Width, progress), start.Height.Lerp(end.Height, progress));
33			new Point(start.X.Lerp(end.X, progress), start.Y.Lerp(end.Y, progress));
53				start.Left.Lerp(end.Left, progress),
54				start.Top.Lerp(end.Top, progress),
55				start.Right.Lerp(end.Right, progress),
56				start.Bottom.Lerp(end.Bottom, progress)