homework week 2 1.1

This entry was posted in Uncategorized. Bookmark the permalink.

2 Responses to homework week 2 1.1

  1. Jeremy-

    Do you have the second part of the assignment? You were also supposed to reorganize your code into setup and draw. Please upload that as well to receive full credit.

    – Calli

    • Jay says:

      hey sorry heres my part 3 =)

      void setup (){
      size(850,600);
      background (255);

      }

      void draw() {

      fill(0,200);

      ellipse(mouseY,mouseX,150,150);

      ellipse(mouseX,mouseY,100,100);

      ellipse(mouseY,mouseX,100,100);

      ellipse(mouseX,mouseY,150,150);

      stroke(100,mouseY,mouseX,200);//line color

      line(mouseX,mouseY,150,100);

      line(mouseY,mouseX,150,100);

      line(mouseX,mouseY,200,150);

      line(mouseY,mouseX,200,150);

      line(mouseX,mouseY,250,200);

      line(mouseY,mouseX,250,200);

      line(mouseX,mouseY,300,250);

      line(mouseY,mouseX,300,250);

Leave a Reply

Your email address will not be published. Required fields are marked *