Beispiel #1
0
 /// <summary>
 /// IVector * Vector
 /// </summary>
 public static double operator *(IVector l, Vector r)
 {
     return(Vectors.Dot(l, r));
 }