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

◆ Intersects() [2/9]

bool Microsoft.Xna.Framework.BoundingBox.Intersects ( BoundingFrustum frustum)
inline

Definition at line 200 of file BoundingBox.cs.

201 {
202 if (null == frustum)
203 {
204 throw new ArgumentNullException("frustum", FrameworkResources.NullNotAllowed);
205 }
206 return frustum.Intersects(this);
207 }

References Microsoft.Xna.Framework.FrameworkResources.NullNotAllowed.