Project290.Screens.Shared.HypercubeDisplay.SetLayerDepth C# (CSharp) Method

SetLayerDepth() public method

Sets the layer depth.
public SetLayerDepth ( float layerDepth ) : void
layerDepth float The layer depth.
return void
        public void SetLayerDepth(float layerDepth)
        {
            this.layerDepth = layerDepth;
            for (int i = 0; i < this.hypercubes.Count; i++)
            {
                this.hypercubes[i].LayerDepth = layerDepth + 0.001f * (i + 1);
            }
        }