Axiom.SceneManagers.PortalConnected.PCZFrustum.RemoveAllCullingPlanes C# (CSharp) Method

RemoveAllCullingPlanes() public method

public RemoveAllCullingPlanes ( ) : void
return void
		public void RemoveAllCullingPlanes()
		{
			foreach ( PCPlane plane in mActiveCullingPlanes )
			{
				// put the plane back in the reservoir
				mCullingPlaneReservoir.Add( plane );
			}

			mActiveCullingPlanes.Clear();
		}