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

◆ Intersects() [2/9]

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

Definition at line 252 of file BoundingSphere.cs.

253 {
254 if (null == frustum)
255 {
256 throw new ArgumentNullException("frustum", FrameworkResources.NullNotAllowed);
257 }
258 frustum.Intersects(ref this, out var result);
259 return result;
260 }

References Microsoft.Xna.Framework.FrameworkResources.NullNotAllowed.