From 3b6ddfa24c1c1afebf94afda9c92e0274e32f6ce Mon Sep 17 00:00:00 2001 From: djonker Date: Sat, 11 Mar 2023 04:56:53 +0100 Subject: [PATCH] readmeupdate --- Readme.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Readme.md b/Readme.md index a1bd8d4..bcce8f8 100644 --- a/Readme.md +++ b/Readme.md @@ -4,19 +4,19 @@ Fractol is a Fractal zoomer using the mlx library --- ## Improvements ### Features -auto zoom to current center. -Seperate Calculation from drawing so that color flowing can be controlled without recalculating -calulate and display fractal dimension?, count edge pixels at standard zoom? -option to display numbers of the numberplane?, if so how to shrink with zoom? -add an option to blend colors in a gradient -vector graphic fractols based on lines if possible? +auto zoom to current center.\ +Seperate Calculation from drawing so that color flowing can be controlled without recalculating\ +calulate and display fractal dimension?, count edge pixels at standard zoom?\ +option to display numbers of the numberplane?, if so how to shrink with zoom?\ +add an option to blend colors in a gradient\ +vector graphic fractols based on lines if possible?\ ### Faster Rendering -multithreading, give every Y line to the next thread. -If both numbers get very close to zero it is definitely in the mandelbrot (mess up precision?) -Check if the last number is very close to the current number every 10 iterations, if so break, it is in the mandelbrot (mess up precision?) -Use Symmetric properties to draw the first line and last line at the same time (only helpful with very low zoom values else it only adds conditions.) -Somehow stop calculating if a new calculation is next in line -Edge Detection? +multithreading, give every Y line to the next thread.\ +If both numbers get very close to zero it is definitely in the mandelbrot (mess up precision?)\ +Check if the last number is very close to the current number every 10 iterations, if so break, it is in the mandelbrot (mess up precision?)\ +Use Symmetric properties to draw the first line and last line at the same time (only helpful with very low zoom values else it only adds conditions.)\ +Somehow stop calculating if a new calculation is next in line\ +Edge Detection?\ --- ## Bugs