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