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

◆ Equals() [1/3]

override readonly bool System.Numerics.Matrix3x2.Equals ( [NotNullWhen(true)] object? obj)
inline

Definition at line 365 of file Matrix3x2.cs.

366 {
367 if (obj is Matrix3x2 other)
368 {
369 return Equals(other);
370 }
371 return false;
372 }
Matrix3x2(float m11, float m12, float m21, float m22, float m31, float m32)
Definition Matrix3x2.cs:40
override readonly bool Equals([NotNullWhen(true)] object? obj)
Definition Matrix3x2.cs:365

References System.Numerics.Matrix3x2.Equals(), System.obj, and System.other.

Referenced by System.Numerics.Matrix3x2.Equals().