Added stairs plot support
This commit is contained in:
parent
7c477ec551
commit
1643032c7a
5 changed files with 80 additions and 4 deletions
|
@ -1,6 +1,7 @@
|
|||
pub mod bar_plots;
|
||||
pub mod line_plots;
|
||||
pub mod scatter_plots;
|
||||
pub mod stairs_plots;
|
||||
pub mod text_plots;
|
||||
|
||||
use imgui::Ui;
|
||||
|
@ -11,4 +12,5 @@ pub fn show_demos(ui: &Ui, plot_ui: &PlotUi) {
|
|||
line_plots::show_demo_window(ui, plot_ui);
|
||||
scatter_plots::show_demo_window(ui, plot_ui);
|
||||
text_plots::show_demo_window(ui, plot_ui);
|
||||
stairs_plots::show_demo_window(ui, plot_ui);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue