Beispiel #1
0
 public DynamicGridWPool(NodePool iNodePool)
 {
     MGridRect = new GridRect()
     {
         MinX = 0,
         MinY = 0,
         MaxX = 0,
         MaxY = 0
     };
     _mNotSet   = true;
     _mNodePool = iNodePool;
 }
Beispiel #2
0
 protected BaseGrid(BaseGrid b)
 {
     MGridRect = new GridRect(b.MGridRect);
     Width     = b.Width;
     Height    = b.Height;
 }
Beispiel #3
0
 protected BaseGrid()
 {
     MGridRect = new GridRect();
 }