Axiom.Core.Frustum.IsObjectVisible C# (CSharp) Метод

IsObjectVisible() публичный Метод

Overloaded method.
public IsObjectVisible ( AxisAlignedBox box ) : bool
box Axiom.Math.AxisAlignedBox
Результат bool
		public bool IsObjectVisible( AxisAlignedBox box )
		{
			// this overload doesnt care about the clipping plane, but we gotta
			// pass in something to the out param anyway
			FrustumPlane dummy;
			return IsObjectVisible( box, out dummy );
		}

Same methods

Frustum::IsObjectVisible ( AxisAlignedBox box, FrustumPlane &culledBy ) : bool
Frustum::IsObjectVisible ( Sphere sphere ) : bool
Frustum::IsObjectVisible ( Sphere sphere, FrustumPlane &culledBy ) : bool
Frustum::IsObjectVisible ( Vector3 vertex ) : bool
Frustum::IsObjectVisible ( Vector3 vertex, FrustumPlane &culledBy ) : bool