Code viewer for World: Fill with Faces (clone by ...

// Cloned by Alex Murphy on 19 May 2019 from World "Fill with Faces" by Alex Murphy 
// Please leave this clone trail here.
 
function setup() {
    $.getScript ( "uploads/alexmurphy1996/faces.js", function() {
        setup();
        //// Add code below ////
        size = fullwidth/20;
        x=0;
        while(x<fullwidth){
            for(y=0; y<fullheight; y+=size) {
                 makeFaces(x, y, size);
            }
            x+=size;
        }
        y=0;
       
        ///////////////////////
    });
}