Rect::SetLerp

Rect::SetLerp
inline Rect<T>& SetLerp(const Rect<T>& a, const Rect<T>& b, T t);
Description

SetLerp set to a + (b - a) * t

Parameters
Parameters 
Description 
const Rect<T>& a 
Two-dimensional rectangle 1 
const Rect<T>& b 
Two-dimensional rectangle 2. 
T t 
Amount to interpolate between the values of the two rectangles. 
Return Value

A Rect reference to the lerp of the Rect.