* Maps a domain value to a range value. * * Notes: * - No clamping (will extrapolate outside the domain). * - If the domain span is 0 (min === max), returns the midpoint of the range.
(value: number)
| 17 | * - If the domain span is 0 (min === max), returns the midpoint of the range. |
| 18 | */ |
| 19 | scale(value: number): number; |
| 20 | |
| 21 | /** |
| 22 | * Maps a range value (pixel) back to a domain value. |
no outgoing calls
no test coverage detected