Skip to content

A responsive web page to explore and view Mandelbrot Set. Using web worker to run the expensive computations.

Notifications You must be signed in to change notification settings

quangvn2508/MandelbrotSetWebExplorer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MandelbrotSetWebExplorer link

A responsive web page to explore and view Mandelbrot Set. Since javascript is single threaded language, I have used web worker to run expensive computation in worker space seperated from the user-interface. There are several workers, each calculate part of the Mandelbrot set to speed up and utilise more CPU power.

This project is similar with my previous project (Mandelbrot-set-explorer) which is programmed with Java. FYI, see my Report for the explanation of the underline mechanism.

Current functionalities:

  • Zoom by scrolling
  • Pan by dragging
  • Display basic data (current zoom factor, real number range, top-left position, ellapsed time to compute a frame).
  • To be continue...