From 6d76758223f91f66c9a4a2f41dca91be2303d12f Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 24 May 2022 12:40:41 -0400 Subject: [PATCH] add some missing docs --- src/math_app.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/math_app.rs b/src/math_app.rs index 5fea490..03ccca8 100644 --- a/src/math_app.rs +++ b/src/math_app.rs @@ -26,8 +26,10 @@ pub struct AppSettings { /// Max value for calculating an pub integral_max_x: f64, + /// Minimum x bound of plot pub min_x: f64, + /// Maximum x bound of plot pub max_x: f64, /// Stores whether or not integral settings have changed @@ -66,9 +68,16 @@ impl const Default for AppSettings { /// Used to store the opened of windows/widgets struct Opened { + /// Help window pub help: bool, + + /// Info window pub info: bool, + + /// Sidepanel pub side_panel: bool, + + /// Welcome introduction pub welcome: bool, }