2020-08-01 16:28:17 +00:00
|
|
|
use imgui::*;
|
2020-08-08 13:40:04 +00:00
|
|
|
use implot::{Plot, PlotLine};
|
2020-08-01 16:28:17 +00:00
|
|
|
|
|
|
|
mod support;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let system = support::init(file!());
|
2020-08-08 12:42:22 +00:00
|
|
|
let mut showing_demo = false;
|
2020-08-01 16:28:17 +00:00
|
|
|
system.main_loop(move |_, ui| {
|
2020-08-08 12:42:22 +00:00
|
|
|
// Create the window from time imgui example, just... with an added plot
|
2020-08-01 16:28:17 +00:00
|
|
|
Window::new(im_str!("Hello world"))
|
2020-08-08 12:42:22 +00:00
|
|
|
.size([430.0, 450.0], Condition::FirstUseEver)
|
2020-08-01 16:28:17 +00:00
|
|
|
.build(ui, || {
|
2020-08-08 12:42:22 +00:00
|
|
|
ui.text(im_str!("Hello from implot-rs!"));
|
2020-08-01 16:28:17 +00:00
|
|
|
ui.separator();
|
|
|
|
let mouse_pos = ui.io().mouse_pos;
|
|
|
|
ui.text(format!(
|
|
|
|
"Mouse Position: ({:.1},{:.1})",
|
|
|
|
mouse_pos[0], mouse_pos[1]
|
|
|
|
));
|
2020-08-08 12:42:22 +00:00
|
|
|
ui.checkbox(im_str!("Show demo"), &mut showing_demo);
|
2020-08-01 16:28:17 +00:00
|
|
|
|
2020-08-08 12:42:22 +00:00
|
|
|
// Draw a plot
|
2020-08-08 13:40:04 +00:00
|
|
|
Plot::new("Demo plot")
|
2020-08-08 12:42:22 +00:00
|
|
|
.size(400.0, 300.0)
|
|
|
|
.x_label("awesome x label")
|
|
|
|
.y_label("awesome y label")
|
|
|
|
.build(|| {
|
2020-08-08 13:40:04 +00:00
|
|
|
PlotLine::new("Left eye").plot(&vec![2.0, 2.0], &vec![2.0, 1.0]);
|
|
|
|
PlotLine::new("Right eye").plot(&vec![4.0, 4.0], &vec![2.0, 1.0]);
|
2020-08-08 12:42:22 +00:00
|
|
|
|
|
|
|
let x_values = vec![1.0, 2.0, 4.0, 5.0];
|
|
|
|
let y_values = vec![1.0, 0.0, 0.0, 1.0];
|
2020-08-08 13:40:04 +00:00
|
|
|
PlotLine::new("Mouth").plot(&x_values, &y_values);
|
2020-08-08 12:42:22 +00:00
|
|
|
});
|
2020-08-01 16:28:17 +00:00
|
|
|
});
|
2020-08-08 12:42:22 +00:00
|
|
|
|
|
|
|
if showing_demo {
|
|
|
|
implot::show_demo_window(&mut showing_demo);
|
|
|
|
}
|
2020-08-01 16:28:17 +00:00
|
|
|
});
|
|
|
|
}
|