Dims returns the dimensions of the grid.
()
| 20 | type GridXYZ interface { |
| 21 | // Dims returns the dimensions of the grid. |
| 22 | Dims() (c, r int) |
| 23 | |
| 24 | // Z returns the value of a grid value at (c, r). |
| 25 | // It will panic if c or r are out of bounds for the grid. |
no outgoing calls