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

◆ Equals() [1/3]

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

Definition at line 164 of file Plane.cs.

165 {
166 if (obj is Plane other)
167 {
168 return Equals(other);
169 }
170 return false;
171 }
override readonly bool Equals([NotNullWhen(true)] object? obj)
Definition Plane.cs:164
Plane(float x, float y, float z, float d)
Definition Plane.cs:13

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

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