Esempio n. 1
0
 public Vect4f ExteriorProduct(Vect4f v)
 {
     throw new NotImplementedException();
 }
Esempio n. 2
0
 public Vect4f Lerp(Vect4f end, float t)
 {
     return((1 - t) * this + t * end);
 }
Esempio n. 3
0
 public float DotProduct(Vect4f v)
 {
     return(X * v.X + Y * v.Y + Z * v.Z + W * v.W);
 }
Esempio n. 4
0
 protected bool Equals(Vect4f other)
 {
     return(X.NearlyEquals(other.X) && Y.NearlyEquals(other.Y) && Z.NearlyEquals(other.Z) && W.NearlyEquals(other.W));
 }