From 484267c1a456cbfb077eafd771fc745e97c77323 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 24 Mar 2022 14:44:48 -0400 Subject: [PATCH] add 2 comments --- src/function.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/function.rs b/src/function.rs index dfd4781..484e811 100644 --- a/src/function.rs +++ b/src/function.rs @@ -323,7 +323,7 @@ impl FunctionEntry { Points::new(Values::from_values(extrema_data)) .color(Color32::YELLOW) .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)) .color(Color32::LIGHT_BLUE) .name("Root") - .radius(5.0), + .radius(5.0), // Radius of points of Roots ); } }