mirror of
https://github.com/gwm17/implot.git
synced 2024-11-23 02:38:53 -05:00
Update README.md
This commit is contained in:
parent
adbec89ae9
commit
f506f94c08
|
@ -48,9 +48,9 @@ ImPlot is an immediate mode, GPU accelerated plotting library for [Dear ImGui](h
|
||||||
The API is used just like any other ImGui `BeginX`/`EndX` pair. First, start a new plot with `ImPlot::BeginPlot()`. Next, plot as many items as you want with the provided `PlotX` functions (e.g. `PlotLine()`, `PlotBars()`, `PlotErrorBars()`, etc). Finally, wrap things up with a call to `ImPlot::EndPlot()`. That's it!
|
The API is used just like any other ImGui `BeginX`/`EndX` pair. First, start a new plot with `ImPlot::BeginPlot()`. Next, plot as many items as you want with the provided `PlotX` functions (e.g. `PlotLine()`, `PlotBars()`, `PlotErrorBars()`, etc). Finally, wrap things up with a call to `ImPlot::EndPlot()`. That's it!
|
||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
int bar_data[11];
|
int bar_data[11] = ...;
|
||||||
float x_data[1000];
|
float x_data[1000] = ...;
|
||||||
float y_data[1000];
|
float y_data[1000] = ...;
|
||||||
|
|
||||||
ImGui::Begin("My Window");
|
ImGui::Begin("My Window");
|
||||||
if (ImPlot::BeginPlot("My Plot")) {
|
if (ImPlot::BeginPlot("My Plot")) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user