We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0e2d94 commit 2431ef2Copy full SHA for 2431ef2
examples/plot.rs
@@ -12,7 +12,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
12
.set_all_label_area_size(20)
13
.top_x_label_area_size(0)
14
.right_y_label_area_size(0)
15
- .build_cartesian_2d(-1.0..10.0, -3.0..2.0)?;
+ .build_cartesian_2d(-1.0..10.0, -4.0..2.0)?;
16
17
chart.configure_mesh().x_labels(20).y_labels(20).draw()?;
18
@@ -32,7 +32,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
32
.draw_series(LineSeries::new(
33
(0..steps)
34
.map(|x| f64::from(x) / f64::from(steps))
35
- .map(|t| NEG_INV_E - t * (NEG_INV_E + 0.15))
+ .map(|t| NEG_INV_E - t * (NEG_INV_E + 0.073))
36
.map(|x| (x, x.lambert_wm1())),
37
&RED,
38
))?
0 commit comments