add 2 comments

This commit is contained in:
Simon Gardling 2022-03-24 14:44:48 -04:00
parent 442c3b403c
commit 484267c1a4

View File

@ -323,7 +323,7 @@ impl FunctionEntry {
Points::new(Values::from_values(extrema_data)) Points::new(Values::from_values(extrema_data))
.color(Color32::YELLOW) .color(Color32::YELLOW)
.name("Extrema") .name("Extrema")
.radius(5.0), .radius(5.0), // Radius of points of Extrema
); );
} }
} }
@ -335,7 +335,7 @@ impl FunctionEntry {
Points::new(Values::from_values(roots_data)) Points::new(Values::from_values(roots_data))
.color(Color32::LIGHT_BLUE) .color(Color32::LIGHT_BLUE)
.name("Root") .name("Root")
.radius(5.0), .radius(5.0), // Radius of points of Roots
); );
} }
} }