• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • about this course
  • syllabus
  • rubric
  • labs
  • blog

HCI | TechX

August 11, 2020

Harry Hao HW DAY5

void setup(){

  size(1000,1000);

  background(0);

}

void draw(){

      rect(255, 255, 50,50);

      fill(#8E2323);

      stroke(#D8D8BF);

    }

void setup(){

  size(1000,1000);

  background(0);

}

void draw(){

  float angle = map(mouseX, 0, width, 0, PI);

  for(int x=0; x<width; x+=500){

    for(int y=0; y<width; y+=500){

      float d= dist(100,y,mouseX,mouseY);

      d=map(d,0,500,3,0.5);

      pushMatrix();

      translate(x,y);

      rotate(angle);

      scale(d);

      rect(random(0, 500), random(0, 500), 50,50);

      fill(#8E2323);

      stroke(#D8D8BF);

      popMatrix();

    }

  }

}

Inspiration
  • Is there any value in recreating an existing image/drawing/graphic using computational media? What is it? I personally believe there is value in recreating an existing image, drawing or graphic using computational media. Because it can help people explore a new way to create art. The value is the creativity and the interaction.
  • Do you think that both, hand and computational drawings cause the same feelings in the viewer?  I think it is totally different. Artificial art contains sentiments and the specific human’s feeling.
  • Do you think technology will replace humans in the future? What about art? Using the computer to draw, makes the computer the artist? can computers be artists? No, I don’t, even though how advanced the technology is in the future. Also, only a small portion of art will be replaced by computers’ software. Computers can only be a tool to make artwork, but never an artist who has feeling. They can not be artists

Filed Under: blog

Reader Interactions

Leave a Reply Cancel reply

You must be logged in to post a comment.

Primary Sidebar

Recent Posts

  • Homework Day 8 – Simon Hsieh
  • homework day 8 – Michael
  • Homework-day8-Sophie
  • Harry Hao HW DAY8
  • homework day 8 – dora

Copyright © 2025 HCI | TechX on the Brunch Pro Theme