Axiom.Core.StaticGeometry.PackIndex C# (CSharp) Method

PackIndex() protected method

protected PackIndex ( ushort x, ushort y, ushort z ) : uint
x ushort
y ushort
z ushort
return uint
		protected uint PackIndex( ushort x, ushort y, ushort z )
		{
			return (uint)( x + ( y << 10 ) + ( z << 20 ) );
		}