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