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