From 5850da382f2563c196b4ca386e8aeb1bb1d80526 Mon Sep 17 00:00:00 2001 From: Keyan Pishdadian Date: Tue, 15 Dec 2020 17:01:41 -0800 Subject: [PATCH] Update README.md --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dc4efcb..639aeba 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,14 @@ # mandelbrot -Interactive Mandelbrot set visualizer. Uses the [ebiten][3] game library to run an interactive window. +Interactive Mandelbrot set visualizer. + +Uses the [ebiten][3] game library to run an interactive window. To allow rendering in realtime with user input, some approximation is used to skip computations for some pixels, leading to frames improving in appearance as user input stops and re-rendering happens. + +A still frame from the visualizer: +![still](https://user-images.githubusercontent.com/6401746/102289976-e16ea800-3ef4-11eb-9559-23161ad58e88.png) + +Here is what the program looks like when used interactively, keep in mind the quality here is poor due to the low gif framerate and additional compression: +![live](https://user-images.githubusercontent.com/6401746/102290677-5bebf780-3ef6-11eb-90d6-be43bcebf90d.gif) ## Usage