예제 #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);
 }