Axiom.SceneManagers.PortalConnected.PCZFrustum.RemoveAllCullingPlanes C# (CSharp) Метод

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

public RemoveAllCullingPlanes ( ) : void
Результат void
		public void RemoveAllCullingPlanes()
		{
			foreach ( PCPlane plane in mActiveCullingPlanes )
			{
				// put the plane back in the reservoir
				mCullingPlaneReservoir.Add( plane );
			}

			mActiveCullingPlanes.Clear();
		}