| 2349 | } |
| 2350 | |
| 2351 | void SetupAxesLimits(double x_min, double x_max, double y_min, double y_max, ImPlotCond cond) { |
| 2352 | SetupAxisLimits(ImAxis_X1, x_min, x_max, cond); |
| 2353 | SetupAxisLimits(ImAxis_Y1, y_min, y_max, cond); |
| 2354 | } |
| 2355 | |
| 2356 | void SetupLegend(ImPlotLocation location, ImPlotLegendFlags flags) { |
| 2357 | ImPlotContext& gp = *GImPlot; |
no test coverage detected