public static Mat22 operator +(Mat22 A, Mat22 B)
 {
     Mat22 C = new Mat22();
     C.Set(A.Col1 + B.Col1, A.Col2 + B.Col2);
     return C;
 }