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

// Cloned by ca400test 1 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(i=0; i<fullheight; i+=fullheight/10) {
                makeFaces(x, i, size);
            }
            x+=fullwidth/20;
        }
        y=0;
        
        ///////////////////////
    });
}