コード例 #1
0
ファイル: uint2x2.cs プロジェクト: xposure/Atma.Math
 /// <summary>
 /// Constructs this matrix from a uint2x2. Non-overwritten fields are from an Identity matrix.
 /// </summary>
 public uint2x2(uint2x2 m)
 {
     this.m00 = m.m00;
     this.m01 = m.m01;
     this.m10 = m.m10;
     this.m11 = m.m11;
 }
コード例 #2
0
 /// <summary>
 /// Constructs this matrix from a uint2x2. Non-overwritten fields are from an Identity matrix.
 /// </summary>
 public uint3x2(uint2x2 m)
 {
     this.m00 = m.m00;
     this.m01 = m.m01;
     this.m10 = m.m10;
     this.m11 = m.m11;
     this.m20 = 0u;
     this.m21 = 0u;
 }
コード例 #3
0
ファイル: uint2x3.cs プロジェクト: xposure/Atma.Math
 /// <summary>
 /// Constructs this matrix from a uint2x2. Non-overwritten fields are from an Identity matrix.
 /// </summary>
 public uint2x3(uint2x2 m)
 {
     this.m00 = m.m00;
     this.m01 = m.m01;
     this.m02 = 0u;
     this.m10 = m.m10;
     this.m11 = m.m11;
     this.m12 = 0u;
 }
コード例 #4
0
ファイル: uint3x3.cs プロジェクト: xposure/Atma.Math
 /// <summary>
 /// Constructs this matrix from a uint2x2. Non-overwritten fields are from an Identity matrix.
 /// </summary>
 public uint3x3(uint2x2 m)
 {
     this.m00 = m.m00;
     this.m01 = m.m01;
     this.m02 = 0u;
     this.m10 = m.m10;
     this.m11 = m.m11;
     this.m12 = 0u;
     this.m20 = 0u;
     this.m21 = 0u;
     this.m22 = 1u;
 }
コード例 #5
0
 /// <summary>
 /// Returns an enumerator that iterates through all fields.
 /// </summary>
 public static IEnumerator <uint> GetEnumerator(uint2x2 m) => m.GetEnumerator();
コード例 #6
0
 /// <summary>
 /// Creates a 1D array with all values (internal order)
 /// </summary>
 public static uint[] Values1D(uint2x2 m) => m.Values1D;
コード例 #7
0
 /// <summary>
 /// Creates a 2D array with all values (address: Values[x, y])
 /// </summary>
 public static uint[,] Values(uint2x2 m) => m.Values;
コード例 #8
0
ファイル: uint2x2.cs プロジェクト: xposure/Atma.Math
 /// <summary>
 /// Executes a component-wise - (subtract).
 /// </summary>
 public static uint2x2 CompSub(uint2x2 A, uint2x2 B) => new uint2x2(A.m00 - B.m00, A.m01 - B.m01, A.m10 - B.m10, A.m11 - B.m11);
コード例 #9
0
ファイル: uint2x2.cs プロジェクト: xposure/Atma.Math
 /// <summary>
 /// Executes a component-wise + (add).
 /// </summary>
 public static uint2x2 CompAdd(uint2x2 A, uint2x2 B) => new uint2x2(A.m00 + B.m00, A.m01 + B.m01, A.m10 + B.m10, A.m11 + B.m11);
コード例 #10
0
ファイル: uint2x2.cs プロジェクト: xposure/Atma.Math
 /// <summary>
 /// Executes a component-wise / (divide).
 /// </summary>
 public static uint2x2 CompDiv(uint2x2 A, uint2x2 B) => new uint2x2(A.m00 / B.m00, A.m01 / B.m01, A.m10 / B.m10, A.m11 / B.m11);
コード例 #11
0
ファイル: uint2x2.cs プロジェクト: xposure/Atma.Math
 /// <summary>
 /// Executes a component-wise * (multiply).
 /// </summary>
 public static uint2x2 CompMul(uint2x2 A, uint2x2 B) => new uint2x2(A.m00 * B.m00, A.m01 * B.m01, A.m10 * B.m10, A.m11 * B.m11);
コード例 #12
0
ファイル: uint2x2.cs プロジェクト: xposure/Atma.Math
 /// <summary>
 /// Returns true iff this equals rhs component-wise.
 /// </summary>
 public bool Equals(uint2x2 rhs) => ((m00.Equals(rhs.m00) && m01.Equals(rhs.m01)) && (m10.Equals(rhs.m10) && m11.Equals(rhs.m11)));