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

// Cloned by CA400_tst1 on 6 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 //
        y=0;
        size = fullwidth/20;
        while(y<fullheight) {
            for(x=0; x<fullwidth; x++) {
                
                makeFaces(x*size, y, size);
            }
            y+=fullwidth/20;
        }
        makeFaces(0,0,500);
    });
}