Plotter is an interface that wraps the Plot method. Some standard implementations of Plotter can be found in plotters.
| 7 | // Plotter is an interface that wraps the Plot method. |
| 8 | // Some standard implementations of Plotter can be found in plotters. |
| 9 | type Plotter interface { |
| 10 | // Plot draws the data to the Plot Paint |
| 11 | Plot(pt *Plot) |
| 12 | |
| 13 | // returns the data for this plot as X,Y points, |
| 14 | // including corresponding pixel data. |
| 15 | // This allows gui interface to inspect data etc. |
| 16 | XYData() (data XYer, pixels XYer) |
| 17 | } |
| 18 | |
| 19 | // DataRanger wraps the DataRange method. |
| 20 | type DataRanger interface { |
no outgoing calls
no test coverage detected