import java.util.Vector; /** * Uniform spatial subdivision grid cell * @author: Phil Gage */ class Voxel { /** Linked list of shapes in this cell */ Vector objects = new Vector(); /** Minimum and maximum values of cell */ // Extent bounds; /** Bitmap for Jevans algorithm */ // TemporalBitmap bitmap = null; boolean changed; Voxel () { } }