| 1040 | } |
| 1041 | |
| 1042 | ImPlotTime CeilTime(const ImPlotTime& t, ImPlotTimeUnit unit) { |
| 1043 | return AddTime(FloorTime(t, unit), unit, 1); |
| 1044 | } |
| 1045 | |
| 1046 | ImPlotTime RoundTime(const ImPlotTime& t, ImPlotTimeUnit unit) { |
| 1047 | ImPlotTime t1 = FloorTime(t, unit); |
no test coverage detected