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

◆ Equals() [1/3]

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

Definition at line 347 of file Vector3.cs.

348 {
349 if (obj is Vector3 other)
350 {
351 return Equals(other);
352 }
353 return false;
354 }
override readonly bool Equals([NotNullWhen(true)] object? obj)
Definition Vector3.cs:347
Vector3(float value)
Definition Vector3.cs:44

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

Referenced by System.Numerics.Vector3.Equals(), and System.Numerics.Plane.Equals().