/// <summary> /// Constructs this matrix from a gmat3x2. Non-overwritten fields are from an Identity matrix. /// </summary> public gmat2(gmat3x2 <T> m) { this.m00 = m.m00; this.m01 = m.m01; this.m10 = m.m10; this.m11 = m.m11; }
/// <summary> /// Constructs this matrix from a gmat3x2. Non-overwritten fields are from an Identity matrix. /// </summary> public gmat2x3(gmat3x2 <T> m) { this.m00 = m.m00; this.m01 = m.m01; this.m02 = default(T); this.m10 = m.m10; this.m11 = m.m11; this.m12 = default(T); }
/// <summary> /// Constructs this matrix from a gmat3x2. Non-overwritten fields are from an Identity matrix. /// </summary> public gmat4x2(gmat3x2 <T> m) { this.m00 = m.m00; this.m01 = m.m01; this.m10 = m.m10; this.m11 = m.m11; this.m20 = m.m20; this.m21 = m.m21; this.m30 = default(T); this.m31 = default(T); }
/// <summary> /// Constructs this matrix from a gmat3x2. Non-overwritten fields are from an Identity matrix. /// </summary> public gmat3x4(gmat3x2 <T> m) { this.m00 = m.m00; this.m01 = m.m01; this.m02 = default(T); this.m03 = default(T); this.m10 = m.m10; this.m11 = m.m11; this.m12 = default(T); this.m13 = default(T); this.m20 = m.m20; this.m21 = m.m21; this.m22 = default(T); this.m23 = default(T); }
/// <summary> /// Returns an enumerator that iterates through all fields. /// </summary> public static IEnumerator <T> GetEnumerator <T>(gmat3x2 <T> m) => m.GetEnumerator();
/// <summary> /// Creates a 1D array with all values (internal order) /// </summary> public static T[] Values1D <T>(gmat3x2 <T> m) => m.Values1D;
/// <summary> /// Creates a 2D array with all values (address: Values[x, y]) /// </summary> public static T[,] Values <T>(gmat3x2 <T> m) => m.Values;
/// <summary> /// Returns true iff this equals rhs component-wise. /// </summary> public bool Equals(gmat3x2 <T> rhs) => (((EqualityComparer <T> .Default.Equals(m00, rhs.m00) && EqualityComparer <T> .Default.Equals(m01, rhs.m01)) && EqualityComparer <T> .Default.Equals(m10, rhs.m10)) && ((EqualityComparer <T> .Default.Equals(m11, rhs.m11) && EqualityComparer <T> .Default.Equals(m20, rhs.m20)) && EqualityComparer <T> .Default.Equals(m21, rhs.m21)));