add a todo comment

This commit is contained in:
Simon Gardling 2022-02-28 10:27:10 -05:00
parent 4f5a541604
commit c45386e05a

View File

@ -242,7 +242,7 @@ impl epi::App for MathApp {
let maxx_bounds: f64 = bounds.max()[0];
let mut i: usize = 0;
let mut functions_2: Vec<Function> = Vec::new();
let mut functions_2: Vec<Function> = Vec::new(); // Todo: figure out why this is required
for function_1 in self.functions.iter_mut() {
let function = function_1;
function.update_bounds(minx_bounds, maxx_bounds, available_width);