November 6th- still life

This is my code and image for processing! It is certainly taking me a bit of time to get used to the grid in finding coordinates. Proud of my progress! I used layering to make the bottle!


void setup() {
//canvas color
background(255);

//size of the canvas
size(500, 500);
}

void draw() {
  stroke(190,0,0);
  fill(190,0,0);
rect(192, 208, 265, 265);
stroke(255, 255, 170);
fill(255, 255, 170);
ellipse(394, 140, 73, 121);
stroke(255, 255, 170);
fill(255, 255, 170);
rect(359, 117, 70, 90);
stroke(255, 255, 170);
fill(255, 255, 170);
quad(380, 50,
    400, 50,
    420, 110,
    370, 110
    );




noLoop();

//end of code

}

Comments