Advertisement
Arbitrator

Mandelbrot

Oct 3rd, 2019
6,865
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. Instructions
  2.  
  3. Speed up Mandelbrot by performing the computation directly instead of using Complex. Compare. Incorporate periodicity checking or boundary tracing for further improvements. Use divide-and-conquer: choose 4 corners of a rectangle and a few random points inside; if they're all the same color, color the whole rectangle that color; otherwise divide into 4 rectangles and recur.
  4.  
  5.  
  6. Mandelbrot.java
  7. http://introcs.cs.princeton.edu/java/32class/Mandelbrot.java.html
  8.  
  9. Look into the resources about Mandelbrot Set on this link: 3.2 Creating Data Types
  10. https://introcs.cs.princeton.edu/java/32class/
  11.  
  12.  
  13. Boundary tracing - Wikipedia
  14. https://en.wikipedia.org/wiki/Boundary_tracing
  15. Complex.java
  16. http://introcs.cs.princeton.edu/java/32class/Complex.java.html
  17.  
  18. WARNING: Documentation is 20% of your grade.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement