| 3835 | } |
| 3836 | |
| 3837 | void Tag(ImAxis axis, double v, const ImVec4& col, const char* fmt, ...) { |
| 3838 | va_list args; |
| 3839 | va_start(args, fmt); |
| 3840 | TagV(axis,v,col,fmt,args); |
| 3841 | va_end(args); |
| 3842 | } |
| 3843 | |
| 3844 | void Tag(ImAxis axis, double v, const ImVec4& color, bool round) { |
| 3845 | ImPlotContext& gp = *GImPlot; |
no test coverage detected