public Vector4f Lerp(Vector4f dest, float lerpFactor) { return(dest.Sub(this).Mul(lerpFactor).Add(this)); }
public Vector4f Lerp(Vector4f dest, float lerpFactor) { return dest.Sub(this).Mul(lerpFactor).Add(this); }