| 1631 | } |
| 1632 | |
| 1633 | static inline double RoundAxisValue(const ImPlotAxis& axis, double value) { |
| 1634 | return RoundTo(value, AxisPrecision(axis)); |
| 1635 | } |
| 1636 | |
| 1637 | void LabelAxisValue(const ImPlotAxis& axis, double value, char* buff, int size, bool round) { |
| 1638 | ImPlotContext& gp = *GImPlot; |
no test coverage detected