nth derivative

This commit is contained in:
Simon Gardling
2022-04-12 12:47:36 -04:00
parent 927ca265e6
commit e46040d616
5 changed files with 123 additions and 8 deletions

View File

@@ -464,9 +464,19 @@ impl MathApp {
.clicked(),
);
function.settings_opened.bitxor_assign(
ui.add(Button::new(""))
.on_hover_text(match function.settings_opened {
true => "Close Settings",
false => "Open Settings",
})
.clicked(),
);
// Contains the function string in a text box that the user can edit
function.auto_complete(ui, i as i32)
});
function.settings(ctx);
}
// Remove function if the user requests it