public static MatrixProxy Negate(MatrixProxy matrix) { throw new InvalidOperationException(); }
public static MatrixProxy Lerp(MatrixProxy matrix1, MatrixProxy matrix2, float amount) { throw new InvalidOperationException(); }
public static void Lerp(ref MatrixProxy matrix1, ref MatrixProxy matrix2, float amount, out MatrixProxy result) { throw new InvalidOperationException(); }
public static MatrixProxy Divide(MatrixProxy matrix1, float divider) { throw new InvalidOperationException(); }
public static void Divide(ref MatrixProxy matrix1, float divider, out MatrixProxy result) { throw new InvalidOperationException(); }
public static MatrixProxy Multiply(MatrixProxy matrix1, MatrixProxy matrix2) { throw new InvalidOperationException(); }
public static MatrixProxy Multiply(MatrixProxy matrix1, float scaleFactor) { throw new InvalidOperationException(); }
public static MatrixProxy Subtract(MatrixProxy matrix1, MatrixProxy matrix2) { throw new InvalidOperationException(); }
public static void Multiply(ref MatrixProxy matrix1, float scaleFactor, out MatrixProxy result) { throw new InvalidOperationException(); }
public static void Negate(ref MatrixProxy matrix, out MatrixProxy result) { throw new InvalidOperationException(); }
public static void Subtract(ref MatrixProxy matrix1, ref MatrixProxy matrix2, out MatrixProxy result) { throw new InvalidOperationException(); }
public static MatrixProxy Transpose(MatrixProxy matrix) { throw new InvalidOperationException(); }
public static void Multiply(ref MatrixProxy matrix1, ref MatrixProxy matrix2, out MatrixProxy result) { throw new InvalidOperationException(); }
public static void Transpose(ref MatrixProxy matrix, out MatrixProxy result) { throw new InvalidOperationException(); }