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

Draw() public method

Draws this instance.
public Draw ( ) : void
return void
        public void Draw()
        {
            Drawer.Draw(
                TextureStatic.Get("gradient"),
                this.DisplayRectangle,
                null,
                Color.Blue,
                0f,
                Vector2.Zero,
                SpriteEffects.None,
                this.layerDepth);
            foreach (Hypercube hypercube in this.hypercubes)
            {
                hypercube.Draw();
            }
        }