Beispiel #1
0
        } // default

        public CellularAutomatonMixIsland(uint loopNum, IList <int> list)
        {
            this.loopNum = loopNum;
            this.mixRect = new HalfMixRect(list);
        }
Beispiel #2
0
 public CellularAutomatonMixIsland(MatrixRange matrixRange, uint loopNum, IList <int> list)
 {
     this.loopNum           = loopNum;
     this.mixRect           = new HalfMixRect(matrixRange, list);
     this.cellularAutomaton = new CellularAutomaton(matrixRange);
 }
Beispiel #3
0
        /* Constructors */

        public CellularAutomatonMixIsland()
        {
            this.mixRect = new HalfMixRect();
        } // default