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

LODBucket() public method

public LODBucket ( Axiom.Core.Region parent, ushort lod, float lodDist ) : System
parent Axiom.Core.Region
lod ushort
lodDist float
return System
			public LODBucket( Region parent, ushort lod, float lodDist )
                : base()
			{
				this.parent = parent;
				this.lod = lod;
				this.squaredDistance = lodDist;
				materialBucketMap = new Dictionary<string, MaterialBucket>();
				queuedGeometryList = new List<QueuedGeometry>();
			}