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