Beispiel #1
0
 public static MathMatrix operator +(MathMatrix A, MathMatrix B) => MatrixOperations.Add(A, B);
Beispiel #2
0
 public static MathMatrix operator -(MathMatrix A, MathMatrix B) => MatrixOperations.Subtract(A, B);
Beispiel #3
0
 public static MathMatrix operator *(MathMatrix A, MathMatrix B) => MatrixOperations.Multiply(A, B);