Windows.Win32.Graphics.GdiPlus.Matrix
A matrix is a special data type that contains between one and sixteen components. Every component of a matrix must be of the same type.
namespace Windows.Win32.Graphics.GdiPlus
{
internal readonly struct Matrix : IEquatable<Matrix>
{
public static implicit operator IntPtr(Matrix value);
public static explicit operator Matrix(IntPtr value);
public static bool operator ==(Matrix left, Matrix right);
public static bool operator !=(Matrix left, Matrix right);
public bool Equals(Matrix other);
}
}