SetConvergePoint sets the value where the diverging colors should meet. The default value should be expected to be (Min() + Max()) / 2. It should be expected that calling either SetMax() or SetMin() will set a new default value, so for a custom convergence point this function should be called after
(float64)
| 77 | // SetMax() and SetMin(). The function should be expected to panic |
| 78 | // if the value is not between Min() and Max(). |
| 79 | SetConvergePoint(float64) |
| 80 | |
| 81 | // ConvergePoint returns the value where the diverging colors meet. |
| 82 | ConvergePoint() float64 |
no outgoing calls