VyrekaMap
A map of locations that are arranged in a 3-dimensional grid. Each location within bounds should contain a cell, except stated otherwise by an implementation. A cell can be accessed through its location. The map has a width, height and depth, which represent the x, y and z axes respectively.
Since
1.0.0
See also
Inheritors
Functions
Tries to retrieve a cell at the given location. If there is no cell at the location, for example since the location is out of bounds, null is returned. However, as long as the location is within the bounds of the map, this method should never return null.
Creates a list of all cells in the map. The order of the cells is not specified and may vary between different implementations.
Removes the cell at the given location. If there is no cell at the location, null is returned. Otherwise, the removed cell is returned.