| 58 | } |
| 59 | |
| 60 | type unitGrid struct{ mat.Matrix } |
| 61 | |
| 62 | func (g unitGrid) Dims() (c, r int) { r, c = g.Matrix.Dims(); return c, r } |
| 63 | func (g unitGrid) Z(c, r int) float64 { return g.Matrix.At(r, c) } |
nothing calls this directly
no outgoing calls
no test coverage detected