| 10 | ) |
| 11 | |
| 12 | type Function struct { |
| 13 | Function func(x, y float64) float64 |
| 14 | Box Box |
| 15 | Direction Direction |
| 16 | } |
| 17 | |
| 18 | func NewFunction(function func(x, y float64) float64, box Box, direction Direction) Shape { |
| 19 | return &Function{function, box, direction} |
nothing calls this directly
no outgoing calls
no test coverage detected