Axiom.SceneManagers.Bsp.BspGeometry.GetSquaredViewDepth C# (CSharp) Method

GetSquaredViewDepth() public method

Returns the camera-relative squared depth of this renderable.
Used to sort transparent objects. Squared depth is used rather than actual depth to avoid having to perform a square root on the result.
public GetSquaredViewDepth ( Camera camera ) : float
camera Axiom.Core.Camera
return float
		public float GetSquaredViewDepth( Camera camera )
		{
			return 0;
		}