Wednesday, September 16, 2015

art of code

Discuss:


The Art of Code

Learning Processing:


Day 8
void setup() {
size(500,400);
}

void draw() {
stroke(255, 255, 255);
fill(255, 110, 90);
ellipse(250, 200, 300, 300);

rect(245, 40, 10, 240);

ellipse(190, 200, 70, 70);

ellipse(190, 100, 70, 70);
}

Notes:


  • ellipse(x, y, width, height)
  • fill(R, G, B)


Resources:


Day 9 
void setup() {
  size(500,400);
  background(100, 100, 100);
}

void draw() {
 if (mousePressed) {
    background(10, 100, 100);
  }
  stroke(50, 50, 50);
  fill(200, 200, 200);
  ellipse(mouseX, mouseY, 100, 100);
}

Notes: 

  • change colors
  • change sizes
  • change shapes
  • add shapes
  • reflect! 

Reflect: 

Take 3 screenshots of your creations & one of your code then share on your blog. Write a reflection about your experience of learning Processing and describe the impact of code on digital art.