Example #1
0
float3 MUST_USE_RESULT float3::Lerp(const float3 &a, const float3 &b, float t)
{
	return a.Lerp(b, t);
}