| 19 | ) |
| 20 | |
| 21 | type offsetUnitGrid struct { |
| 22 | XOffset, YOffset float64 |
| 23 | |
| 24 | Data mat.Matrix |
| 25 | } |
| 26 | |
| 27 | func (g offsetUnitGrid) Dims() (c, r int) { r, c = g.Data.Dims(); return c, r } |
| 28 | func (g offsetUnitGrid) Z(c, r int) float64 { return g.Data.At(r, c) } |
nothing calls this directly
no outgoing calls
no test coverage detected