Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ operator==()

static bool System.Numerics.Matrix3x2.operator== ( Matrix3x2 value1,
Matrix3x2 value2 )
inlinestatic

Definition at line 62 of file Matrix3x2.cs.

63 {
64 if (value1.M11 == value2.M11 && value1.M22 == value2.M22 && value1.M12 == value2.M12 && value1.M21 == value2.M21 && value1.M31 == value2.M31)
65 {
66 return value1.M32 == value2.M32;
67 }
68 return false;
69 }

References System.Numerics.Matrix3x2.M11, System.Numerics.Matrix3x2.M12, System.Numerics.Matrix3x2.M21, System.Numerics.Matrix3x2.M22, System.Numerics.Matrix3x2.M31, and System.Numerics.Matrix3x2.M32.