예제 #1
0
 public void SetBC(BCPosition thisBC, int _value)
 {
     for (int x = 0; x < tissueSize; x++)
     {
         BCCells[(int) thisBC, x] = _value;
     }
 }
예제 #2
0
 public void SetRandomBoolAll(BCPosition thisBC)
 {
     for (int i = 0; i < 4; i++)
     {
         BCCorners[i] = rand.Next(0, 2);
         for (int x = 0; x < tissueSize; x++)
         {
             BCCells[i, x] = rand.Next(0, 2);
         }
     }
 }
예제 #3
0
 public void SetRandomBoolBC(BCPosition thisBC)
 {
     for (int x = 0; x < tissueSize; x++)
     {
         BCCells[(int)thisBC, x] = rand.Next(0,2);
     }
 }