Z returns the value of a grid value at (c, r). It will panic if c or r are out of bounds for the grid.
(c, r int)
| 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. |
| 26 | Z(c, r int) float64 |
| 27 | |
| 28 | // X returns the coordinate for the column at the index c. |
| 29 | // It will panic if c is out of bounds for the grid. |
no outgoing calls
no test coverage detected