Ticker creates Ticks in a specified range
| 18 | |
| 19 | // Ticker creates Ticks in a specified range |
| 20 | type Ticker interface { |
| 21 | // Ticks returns Ticks in a specified range |
| 22 | Ticks(min, max float64) []Tick |
| 23 | } |
| 24 | |
| 25 | // Normalizer rescales values from the data coordinate system to the |
| 26 | // normalized coordinate system. |
no outgoing calls
no test coverage detected