Added a text plot example

This commit is contained in:
4bb4 2020-09-13 14:40:53 +02:00
parent 3d6e1ee938
commit f05d681d25
2 changed files with 73 additions and 8 deletions

View file

@ -1,5 +1,5 @@
// This example demonstrates how line plots are to be used, along with some querying features //! This example demonstrates how line plots are to be used, along with some querying features
// that will be applicable to all kinds of plots. //! that will be applicable to all kinds of plots.
use imgui::{im_str, CollapsingHeader, Condition, Ui, Window}; use imgui::{im_str, CollapsingHeader, Condition, Ui, Window};
use implot::{ use implot::{
@ -16,12 +16,14 @@ fn show_basic_plot(ui: &Ui) {
)); ));
let content_width = ui.window_content_region_width(); let content_width = ui.window_content_region_width();
Plot::new("Simple line plot") Plot::new("Simple line plot")
// The size call could also be omitted, though the defaults don't consider content // The size call could also be omitted, though the defaults don't consider window
// width, which is why we're not doing so here. // width, which is why we're not doing so here.
.size(content_width, 300.0) .size(content_width, 300.0)
.build(|| { .build(|| {
// If this is called outside a plot build callback, the program will panic. // If this is called outside a plot build callback, the program will panic.
PlotLine::new("A line").plot(&vec![0.1, 0.9], &vec![0.1, 0.9]); let x_positions = vec![0.1, 0.9];
let y_positions = vec![0.1, 0.9];
PlotLine::new("legend label").plot(&x_positions, &y_positions);
}); });
} }
@ -171,18 +173,19 @@ fn main() {
let system = support::init(file!()); let system = support::init(file!());
let mut showing_demo = false; let mut showing_demo = false;
system.main_loop(move |_, ui| { system.main_loop(move |_, ui| {
Window::new(im_str!("Hello world")) Window::new(im_str!("Line plots example"))
.size([430.0, 450.0], Condition::FirstUseEver) .size([430.0, 450.0], Condition::FirstUseEver)
.build(ui, || { .build(ui, || {
ui.text(im_str!("Hello from implot-rs!")); ui.text(im_str!("Hello from implot-rs!"));
ui.text_wrapped(im_str!( ui.text_wrapped(im_str!(
"The headers here demo some of the features of the library. \ "The headers here demo the line plotting features of the library. \
Have a look at the example source code to see how they are Have a look at the example source code to \
implemented.\n\ see how they are implemented.\n\
Check out the demo from ImPlot itself first \ Check out the demo from ImPlot itself first \
(by enabling the 'Show demo' checkbox) for instructions \ (by enabling the 'Show demo' checkbox) for instructions \
on how to interact with ImPlot plots." on how to interact with ImPlot plots."
)); ));
ui.checkbox(im_str!("Show demo"), &mut showing_demo); ui.checkbox(im_str!("Show demo"), &mut showing_demo);
// Show individual examples in collapsed headers // Show individual examples in collapsed headers

View file

@ -0,0 +1,62 @@
//! This example demonstrates how the text plotting features are to be used. For more general
//! features of the libray, see the line_plots example.
use imgui::{im_str, CollapsingHeader, Condition, Ui, Window};
use implot::{Plot, PlotText};
mod support;
fn show_basic_plot(ui: &Ui) {
ui.text(im_str!(
"This header just plots some text with as little code as possible."
));
let content_width = ui.window_content_region_width();
Plot::new("Simple text plot")
// The size call could also be omitted, though the defaults don't consider window
// width, which is why we're not doing so here.
.size(content_width, 300.0)
.build(|| {
// The text passed to "new" is what gets displayed.
let x_position: f64 = 0.5;
let y_position: f64 = 0.2;
let vertical: bool = false;
PlotText::new("horizontal displayed text").plot(x_position, y_position, vertical);
// The text passed to "new" is what gets displayed.
let x_position: f64 = 0.2;
let y_position: f64 = 0.2;
let vertical: bool = true;
PlotText::new("vertical displayed text").plot(x_position, y_position, vertical);
});
}
fn main() {
let system = support::init(file!());
let mut showing_demo = false;
system.main_loop(move |_, ui| {
Window::new(im_str!("Text plots example"))
.size([430.0, 450.0], Condition::FirstUseEver)
.build(ui, || {
ui.text(im_str!("Hello from implot-rs!"));
ui.text_wrapped(im_str!(
"The headers here demo the text plotting features of the library. \
Have a look at the example source code to see how they are \
implemented.\n\
Check out the demo from ImPlot itself first \
(by enabling the 'Show demo' checkbox) for instructions \
on how to interact with ImPlot plots."
));
ui.checkbox(im_str!("Show demo"), &mut showing_demo);
// Show individual examples in collapsed headers
if CollapsingHeader::new(im_str!("Basic text plot")).build(&ui) {
show_basic_plot(&ui);
}
});
if showing_demo {
implot::show_demo_window(&mut showing_demo);
}
});
}