> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://bss.sketchpad.cc/sp/pad/view/ro.jC4hYUJ2ZrW/rev.4
 * 
 * authors: 
 *   Bezawit Alemu
 *   
 *   
 *   Russell Gordon

 * license (unless otherwise specified): 
 *   creative commons attribution-share alike 3.0 license.
 *   https://creativecommons.org/licenses/by-sa/3.0/ 
 */ 



// This sketch builds on a prior work, "ICS3U - Paintbrush clone", created by Jamie Haberman & Hana Zhauken & Bezawit Alemu & Athena Foo & Olivia Ford & Emma Syron & Russell Gordon & Kristina Shearson & Sally Keating & Patricia & Emily Cho & Simran Singh 
// http://studio.sketchpad.cc/sp/pad/view/ro.9bghdeWQTdn$a/rev.1820



// Pressing Control-R will render this sketch.

// Global variables
// Declare a variable:
// type name;
int i = 0; 

void setup() {  // this is run once.   
    
    // set the background color
    background(255); // white
    
    // canvas size (Variable aren't evaluated. Integers only, please.)
    size(300, 300); 
      
    // smooth edges
    smooth();
    
    // limit the number of frames per second
    frameRate(1);
    
    // turn off borders entirely
    noStroke();
    
} 

void draw() {  // this is run repeatedly.  

    // draw some ellipses
    fill(105, 163, 222);
    ellipse(random(1, 240), random(10, 228), 10, 10); //Emma

   //Hana's
    fill(31, 40, 1);
    ellipse(random(1,234), random(1,267), 110, 125); 

    fill(random(0,255),random(0,255),random(0,255));
    ellipse(random(0,300),random(0,300), 115,115); //Patricia

    fill(random(0, 255), random(0, 255), random(0, 255));
    ellipse(random(0, 300), random(0, 300), 75, 75); //Athena >u<\

    //Simran
    fill(0, 94, 255);
    ellipse(random(0, 250), random(0,250), 50, 50);

    fill(random(0,255), random(0,255), random(0,255));
    ellipse(random(0,300), random(0,300), 100, 100); //Bezawit

     //EMILY
    fill(65, 237, 255);
    ellipse(random(0,300), random(0,300), 50, 50);

    //JaMiE
    fill(91, 10, 255);
    ellipse(random(3,300), random(6,150), 40, 40); 

    fill(208,138,243);
    ellipse(10,20,99,34); //THIS WAS BY OLIVIA Kareeeeeeel

    //Sally xoxoxo Karel
    fill(98, 55, 22);
    ellipse( random(0,300),random(0, 300), 44, 44); 

    fill(31, 215, 184);  //blue
    ellipse(random(34,233),random(78,63),200,68); //kristina

/*    // Mr. Gordon
    fill(255, 162, 0);    // orange
    ellipse(random(0, 300), random(0,300), 25, 25);
*/

}