Find a size between two other sizes using linear interpolation.
Syntax

[C#]

static Size Tween(Size first, Size last, double t);

[Visual Basic]

Shared Function Tween(first As Size, last As Size, t As Double) As Size
Params
Name Description
first The first size.
last The last size.
t A tween value between 0 and 1.
Notes

None.

Example

None.