Registry / other / implot

implot

JSON →
library0.17vcpkgunverified

Advanced 2D Plotting for Dear ImGui

vcpkg install implot
INSTALL
IMPORT
SIG · IMPLOT
I
implot
othercppv0.17
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

implot.h
#include <implot.h>

Create a simple line plot

#include <implot.h> #include <imgui.h> int main() { ImGui::CreateContext(); ImPlot::CreateContext(); ImGui::NewFrame(); if (ImPlot::BeginPlot("My Plot")) { ImPlot::PlotLine("Line", [](int idx) { return (float)idx; }, [](int idx) { return (float)idx * idx; }, 100); ImPlot::EndPlot(); } ImGui::Render(); ImPlot::DestroyContext(); ImGui::DestroyContext(); return 0; }
Debug
Known issues
gotchaimplot requires Dear ImGui; ensure you link both libraries.
fix
Add imgui to your vcpkg dependencies and link both imgui and implot.
affects: *
Upgrade
Version history
0.17latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources

No resource links recorded.

implot — pip install implot · libregistry