Example #1
0
 private void miProcessingCellular3_Click(object sender, EventArgs e)
 {
     if (this.cellular3 == null)
     {
         this.cellular3 = new Tests.Processing.CellularAutomata3();
     }
     else
     {
         this.cellular3.Dispose();
         this.cellular3 = null;
     }
     //Tests.Processing.Hairy h = new Tests.Processing.Hairy();
 }
 public Cell(int xin, int yin, CellularAutomata3 canvas)
 {
     x  = xin;
     y  = yin;
     cv = canvas;
 }
 public Cell(int xin, int yin, CellularAutomata3 canvas)
 {
     x = xin;
     y = yin;
     cv = canvas;
 }
Example #4
0
 private void miProcessingCellular3_Click(object sender, EventArgs e)
 {
     if (this.cellular3 == null)
         this.cellular3 = new Tests.Processing.CellularAutomata3();
     else
     {
         this.cellular3.Dispose();
         this.cellular3 = null;
     }
     //Tests.Processing.Hairy h = new Tests.Processing.Hairy();
 }