Exemple #1
0
 public static bool Orthogonal(VectorN v1, VectorN v2)
 {
     return(VectorN.ScalarProduct(v1, v2) == 0);
 }