示例#1
0
 public Vector4f Lerp(Vector4f dest, float lerpFactor)
 {
     return(dest.Sub(this).Mul(lerpFactor).Add(this));
 }
示例#2
0
 public Vector4f Lerp(Vector4f dest, float lerpFactor)
 {
     return dest.Sub(this).Mul(lerpFactor).Add(this);
 }