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

◆ Intersects() [2/5]

PlaneIntersectionType Microsoft.Xna.Framework.Plane.Intersects ( BoundingFrustum frustum)
inline

Definition at line 315 of file Plane.cs.

316 {
317 if (null == frustum)
318 {
319 throw new ArgumentNullException("frustum", FrameworkResources.NullNotAllowed);
320 }
321 return frustum.Intersects(this);
322 }

References Microsoft.Xna.Framework.BoundingFrustum.Intersects(), and Microsoft.Xna.Framework.FrameworkResources.NullNotAllowed.