Advertisement
Guest User

something like this

a guest
May 8th, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // main.js
  2.  
  3. var s = function(p) {  
  4.     p.setup = function() {
  5.         p.createCanvas(768, 512);
  6.         p.m = new mandelbrot(p.createImage(p.height, p.width));
  7.     };
  8.  
  9.     p.draw = function() {
  10.             ...
  11.     };
  12. };
  13.  
  14. var sk = new p5(s, mandelbrot_set);
  15.  
  16.  
  17. // mandelbrot.js
  18.  
  19. function mandelbrot(image) {
  20.    ...
  21.       var c = color(56); // nope, cant do it
  22.    ...
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement