| 15 | ) |
| 16 | |
| 17 | type field struct { |
| 18 | c, r int |
| 19 | fn func(x, y float64) plotter.XY |
| 20 | } |
| 21 | |
| 22 | func (f field) Dims() (c, r int) { return f.c, f.r } |
| 23 | func (f field) Vector(c, r int) plotter.XY { return f.fn(f.X(c), f.Y(r)) } |
nothing calls this directly
no outgoing calls
no test coverage detected