Categories

M Train-Code Interactive Sketch

int x=mouseX; int y=mouseY; int speedX=6; int speedY=8; void setup(){ size(800, 600); } void draw(){ background(255); if (keyPressed==false){ x=x+speedX; y=y+speedY; if ((x>width)||(x<0)){ speedX=speedX*(-1); } if ((y>height)||(y<0)){ speedY=speedY*(-1); } noStroke(); fill(0); ellipse(x, y, 20, 20); }else{ noStroke(); fill(200); ellipse(mouseX, mouseY, 20, 20); x=mouseX; y=mouseY; } }...

Continue Reading

Design References (Week 1)

SOLUBLE PACKAGING: The food packaging decays as you consume its contents so there is no wastage and the product and package are both consumed together. PAPERCLIP: It’s a great design because it’s one of the simplest designs there is, and it accomplishes a lot with just one thin...

Continue Reading

Design Week 1 Summary

DAY 1: We started off by introducing ourselves and discussing what the design class will include for this bootcamp. Then we looked at the different ways to create a mind map to help you in your design process. This was followed by a brainstorming...

Continue Reading

1st week of bootcamp

I am really excited to join in Bootcamp. In the first week, we have learned a lot of things about the web, processing, and design. In the design section, we watched some video, and I think it is quite inspiring. The most impressive video is...

Continue Reading