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

◆ Equals() [1/3]

bool Microsoft.Xna.Framework.BoundingFrustum.Equals ( BoundingFrustum other)
inline

Definition at line 77 of file BoundingFrustum.cs.

78 {
79 if (other == null)
80 {
81 return false;
82 }
83 return matrix == other.matrix;
84 }

References Microsoft.Xna.Framework.BoundingFrustum.matrix, and System.other.