| 22 | ) |
| 23 | |
| 24 | type offsetUnitGrid struct { |
| 25 | XOffset, YOffset float64 |
| 26 | |
| 27 | Data *mat.Dense |
| 28 | } |
| 29 | |
| 30 | func (g offsetUnitGrid) Dims() (c, r int) { r, c = g.Data.Dims(); return c, r } |
| 31 | 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