Beispiel #1
0
 /**
  * deep copy
  *
  * @param source
  */
 public VoxelSelection(VoxelSelection source) {
   resize(source.xSize, source.ySize, source.zSize);
   voxels = (BitSet) source.voxels.clone();
 }
Beispiel #2
0
 public void resizeAndClear(int x, int y, int z) {
   resize(x, y, z);
 }
Beispiel #3
0
 public VoxelSelection(int xSize, int ySize, int zSize) {
   resize(xSize, ySize, zSize);
 }