| 572 | //----------------------------------------------------------------------------- |
| 573 | |
| 574 | ImPlotPlot* GetPlot(const char* title) { |
| 575 | ImGuiWindow* Window = GImGui->CurrentWindow; |
| 576 | const ImGuiID ID = Window->GetID(title); |
| 577 | return GImPlot->Plots.GetByKey(ID); |
| 578 | } |
| 579 | |
| 580 | ImPlotPlot* GetCurrentPlot() { |
| 581 | return GImPlot->CurrentPlot; |
no test coverage detected