Added heatmap support. See comments.
The basic functionality seems to work, though setting the drawing area seems buggy. I'll have to investigate more.
This commit is contained in:
parent
3f1a39861f
commit
4cd199071c
3 changed files with 137 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
pub mod bar_plots;
|
||||
pub mod heatmaps;
|
||||
pub mod line_plots;
|
||||
pub mod scatter_plots;
|
||||
pub mod stairs_plots;
|
||||
|
@ -13,4 +14,5 @@ pub fn show_demos(ui: &Ui, plot_ui: &PlotUi) {
|
|||
scatter_plots::show_demo_window(ui, plot_ui);
|
||||
text_plots::show_demo_window(ui, plot_ui);
|
||||
stairs_plots::show_demo_window(ui, plot_ui);
|
||||
heatmaps::show_demo_window(ui, plot_ui);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue