Exemple #1
0
 public void Set(NeighborDirection nd, T item)
 {
     this[center + CubeNeighbors6.Relative(nd)] = item;
 }
Exemple #2
0
 public T Get(NeighborDirection nd)
 {
     return(this[center + CubeNeighbors6.Relative(nd)]);
 }