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:
4bb4 2020-11-15 10:36:51 +01:00
parent 3f1a39861f
commit 4cd199071c
3 changed files with 137 additions and 1 deletions

View file

@ -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);
}