コード例 #1
0
 public AABCGridSetAABCIterator(AABCGrid grid)
     : base(grid)
 {
     position = new AABCPosition(0, 0, 0);
     if (grid.IsAABCSet(position))
     {
         nextPosition = position;
     }
     nextFound = true;
 }
コード例 #2
0
 public bool IsSet()
 {
     return(grid.IsAABCSet(x, y, z));
 }