예제 #1
0
 public static Matrix operator *(Matrix a, Matrix b)
 {
     NativeAPI.matrix_mul(a, b, out Matrix result);
     return(result);
 }