public DynamicGridWPool(NodePool iNodePool)
     : base()
 {
     m_gridRect      = new GridCube();
     m_gridRect.minX = 0;
     m_gridRect.minY = 0;
     m_gridRect.maxX = 0;
     m_gridRect.maxY = 0;
     m_gridRect.minZ = 0;
     m_gridRect.maxZ = 0;
     m_notSet        = true;
     m_nodePool      = iNodePool;
 }
Example #2
0
 public PartialGridWPool(NodePool iNodePool, GridCube iGridRect = null)
     : base()
 {
     if (iGridRect == null)
     {
         m_gridRect = new GridCube();
     }
     else
     {
         m_gridRect = iGridRect;
     }
     m_nodePool = iNodePool;
 }
 public DynamicGridWPool(DynamicGridWPool b)
     : base(b)
 {
     m_notSet   = b.m_notSet;
     m_nodePool = b.m_nodePool;
 }
Example #4
0
 public PartialGridWPool(PartialGridWPool b)
     : base(b)
 {
     m_nodePool = b.m_nodePool;
 }