Axiom.Graphics.Material.GetLodIndex C# (CSharp) Метод

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

Gets the LOD index to use at the given distance.
The value passed in is the 'transformed' value. If you are dealing with an original source value (e.g. distance), use to turn this into a lookup value.
public GetLodIndex ( Real distance ) : int
distance Real
Результат int
		public int GetLodIndex( Real distance )
		{
			return LodStrategy.GetIndex( distance, _lodValues );
		}