Example #1
0
 public static float Dot(Vector4f a, Vector4f b)
 {
     return(Vector4f.Dot(a, b));
 }
Example #2
0
 public void Dot()
 {
     Assert.AreEqual(Vector4f.Dot(Vector4f.One, Vector4f.One), 4);
 }