Exemplo n.º 1
0
 public PartialGridWPool(PartialGridWPool b)
     : base(b)
 {
     m_nodePool = b.m_nodePool;
 }
Exemplo n.º 2
0
        public override BaseGrid Clone()
        {
            PartialGridWPool tNewGrid = new PartialGridWPool(m_nodePool, m_gridRect);

            return(tNewGrid);
        }
Exemplo n.º 3
0
 public override BaseGrid Clone()
 {
     PartialGridWPool tNewGrid = new PartialGridWPool(m_nodePool,m_gridRect);
     return tNewGrid;
 }
Exemplo n.º 4
0
 public PartialGridWPool(PartialGridWPool b)
     : base(b)
 {
     m_nodePool = b.m_nodePool;
 }
Exemplo n.º 5
0
		private BaseGrid createPartialGridWithPool(bool[][] array)
		{
			NodePool nodePool = new NodePool ();
			var grid = new PartialGridWPool (nodePool, new GridRect(0, 0, array.Length, array[0].Length));
			initGrid(grid, array);
			return grid;
		}