use plotting::{Figure, quick_plot_3d_with_labels};
use std::path::Path;
fn main() {
let fig: Figure = quick_plot_3d_with_labels(
[1.0, 2.0, 10.0],
[1.0, 4.0, 9.0],
[2.0, 5.0, 10.0],
"x",
"y",
"z",
"z vs. x and y",
);
fig.save_inline_html(Path::new("book/src/figures/quick_plot_3d_with_labels.html"));
}