| 1078 | } |
| 1079 | |
| 1080 | ImPlotTime CeilTime(const ImPlotTime& t, ImPlotTimeUnit unit) { |
| 1081 | return AddTime(FloorTime(t, unit), unit, 1); |
| 1082 | } |
| 1083 | |
| 1084 | ImPlotTime RoundTime(const ImPlotTime& t, ImPlotTimeUnit unit) { |
| 1085 | ImPlotTime t1 = FloorTime(t, unit); |
no test coverage detected