Beispiel #1
0
 /// <summary>
 /// Constructs this matrix from a mat2. Non-overwritten fields are from an Identity matrix.
 /// </summary>
 public mat2(mat2 m)
 {
     this.m00 = m.m00;
     this.m01 = m.m01;
     this.m10 = m.m10;
     this.m11 = m.m11;
 }
Beispiel #2
0
 /// <summary>
 /// Constructs this matrix from a mat2. Non-overwritten fields are from an Identity matrix.
 /// </summary>
 public mat2x3(mat2 m)
 {
     this.m00 = m.m00;
     this.m01 = m.m01;
     this.m02 = 0f;
     this.m10 = m.m10;
     this.m11 = m.m11;
     this.m12 = 0f;
 }
Beispiel #3
0
 /// <summary>
 /// Constructs this matrix from a mat2. Non-overwritten fields are from an Identity matrix.
 /// </summary>
 public mat3x2(mat2 m)
 {
     this.m00 = m.m00;
     this.m01 = m.m01;
     this.m10 = m.m10;
     this.m11 = m.m11;
     this.m20 = 0f;
     this.m21 = 0f;
 }
Beispiel #4
0
 /// <summary>
 /// Constructs this matrix from a mat2. Non-overwritten fields are from an Identity matrix.
 /// </summary>
 public mat3(mat2 m)
 {
     this.m00 = m.m00;
     this.m01 = m.m01;
     this.m02 = 0f;
     this.m10 = m.m10;
     this.m11 = m.m11;
     this.m12 = 0f;
     this.m20 = 0f;
     this.m21 = 0f;
     this.m22 = 1f;
 }
Beispiel #5
0
 /// <summary>
 /// Executes a component-wise - (subtract).
 /// </summary>
 public static mat2 CompSub(mat2 A, mat2 B) => new mat2(A.m00 - B.m00, A.m01 - B.m01, A.m10 - B.m10, A.m11 - B.m11);
Beispiel #6
0
 /// <summary>
 /// Executes a component-wise + (add).
 /// </summary>
 public static mat2 CompAdd(mat2 A, mat2 B) => new mat2(A.m00 + B.m00, A.m01 + B.m01, A.m10 + B.m10, A.m11 + B.m11);
Beispiel #7
0
 /// <summary>
 /// Executes a component-wise / (divide).
 /// </summary>
 public static mat2 CompDiv(mat2 A, mat2 B) => new mat2(A.m00 / B.m00, A.m01 / B.m01, A.m10 / B.m10, A.m11 / B.m11);
Beispiel #8
0
 /// <summary>
 /// Executes a component-wise * (multiply).
 /// </summary>
 public static mat2 CompMul(mat2 A, mat2 B) => new mat2(A.m00 * B.m00, A.m01 * B.m01, A.m10 * B.m10, A.m11 * B.m11);
Beispiel #9
0
 /// <summary>
 /// Returns true iff this equals rhs component-wise.
 /// </summary>
 public bool Equals(mat2 rhs) => ((m00.Equals(rhs.m00) && m01.Equals(rhs.m01)) && (m10.Equals(rhs.m10) && m11.Equals(rhs.m11)));
Beispiel #10
0
 /// <summary>
 /// Returns an enumerator that iterates through all fields.
 /// </summary>
 public static IEnumerator <float> GetEnumerator(mat2 m) => m.GetEnumerator();
Beispiel #11
0
 /// <summary>
 /// Creates a 1D array with all values (internal order)
 /// </summary>
 public static float[] Values1D(mat2 m) => m.Values1D;
Beispiel #12
0
 /// <summary>
 /// Creates a 2D array with all values (address: Values[x, y])
 /// </summary>
 public static float[,] Values(mat2 m) => m.Values;