Alexandria.Engines.Sciagi.Resources.PictureRenderer.Render C# (CSharp) Method

Render() public method

Draw the instructions.
public Render ( ICollection instructions ) : void
instructions ICollection
return void
        public void Render(ICollection<PictureInstruction> instructions)
        {
            if (instructions == null)
                throw new ArgumentNullException("instructions");
            Render(instructions, instructions.Count);
        }

Same methods

PictureRenderer::Render ( IEnumerable instructions, int count ) : void