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

◆ Equals() [1/3]

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

Definition at line 1318 of file Matrix4x4.cs.

1319 {
1320 if (obj is Matrix4x4 other)
1321 {
1322 return Equals(other);
1323 }
1324 return false;
1325 }
override readonly bool Equals([NotNullWhen(true)] object? obj)
Matrix4x4(float m11, float m12, float m13, float m14, float m21, float m22, float m23, float m24, float m31, float m32, float m33, float m34, float m41, float m42, float m43, float m44)
Definition Matrix4x4.cs:93

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

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