public ReactionDiffusion(int width, int height, float diffusionRateA, float diffusionRateB, float killRate, float feed)
        {
            CurrentCells = new CellGrid(width, height);
            NextCells    = new CellGrid(width, height);
            CurrentCells.FillGrid();
            NextCells.FillGrid();

            DiffusionRateA = diffusionRateA;
            DiffusionRateB = diffusionRateB;
            KillRate       = killRate;
            Feed           = feed;

            SetAndCalculateImageFormatProperties();
        }