2013年1月14日 星期一

表板樣式

同學表板樣是以放在dropbox,請自行下載ps檔做修改。
自行輸出a3表板。

注意當天教室改至RB-403教室,系辦對面的電腦教室。

2012年12月21日 星期五

修改時程

因廠商備貨不及,故本週工作坊將改成承接上次課程,考慮大家的負荷程度應該只會上9:30 -12:30。Arduino課程將擇期再上。

今後課程調整如下:
12/14(六)Data Visualization: Processing
12/21(五)Arduino Hello World
12/28(五)Arduino LED, Servo motor, 光敏
01/04(五)Prototyping Check
01/05(六)Arduino - Processing 軟硬體溝通
01/11(五)Arduino - Processing 2 軟硬體溝通
-> 範本

01/18(五)期末報告 - 期末作品集初版
                期末展覽 - 期末作品集最終版

希望大家提早準備。

2012年12月14日 星期五

[公告] 12/15 工作坊時程異動與課程調整

因廠商備貨不及,故本週工作坊將改成承接上次課程,考慮大家的負荷程度應該只會上9:30 -12:30。Arduino課程將擇期再上。

今後課程調整如下:
12/14(六)Data Visualization: Processing
12/21(五)Designing Interaction with Processing: Mouse and Keyboard
12/28(五)Designing Interaction with Processing: Arduino- Processing 軟硬體溝通
1/4(五)Prototyping Check
1/5(六)Arduino - Processing 軟硬體溝通
1/11(五)期末報告 - 期末作品集初版
報告架構

  • 觀察
    • 空間觀察
    • 行為觀察
    • 脈絡觀察
  • 互動模式(Interactive model)
  • 互動原型製作(Prototype)
    • 點子描繪(Idea Sketch)
    • 草模(1-N)
    • 最後發展原型
  • 反思回饋(Reflection)
    • 旁人的反應
    • 自己的反應
    • 修正方向

1/18(五)期末展覽 - 期末作品集最終版

希望大家提早準備。

2012年12月7日 星期五

B10010104_張舒涵_聖誕樹



size(200,300);
background(218,177,178);


for(int i=10; i<100 ; i+=3){
 line(100,20,i+45,100);
}
for(int i=10; i<100 ; i+=3){
 line(100,60,i+45,140);
}
for(int i=10; i<100 ; i+=3){
 line(100,100,i+45,180);
}

for(int i=5; i<50 ; i+=4){
 line(100,120,i+70,250);
}
noStroke();
ellipse(20,150, 10, 10);
noStroke();
ellipse(40, 50,10, 10);
noStroke();
ellipse(80,90,10, 10);
noStroke();
ellipse(150,200,10, 10);
noStroke();
ellipse(120,70,10, 10);
noStroke();
ellipse(180,120,10, 10);

rect(0,250,200,300);

textSize(15);
fill(0, 50, 153, 70);
text("Merry Christmas", 40, 270);

B10010126_徐玲琪_聖誕樹




PFont font;//delare the font
font = loadFont("Cambria-BoldItalic-48.vlw"); //load
textFont(font);
size(299,780);
background(230,240,200);

smooth();
for(int i=100; i<200 ; i+=3){
 line(150,500,i,750);
}

for(int i=50; i<250 ; i+=3){
  line(150,20,i,250);
}

for(int i=20; i<290 ; i+=6){
 line(150,50,i,500);
}

 for(int i=20; i<290 ; i+=3){
 line(150,300,i,500);
}

for(int i=100; i<200 ; i+=3){
 line(150,200,i,750);
}

color c = color(30,20,55,30);
noStroke();
fill(c);
for(int i=5; i<700 ; i+=30){
  ellipse(30, i, i, i);
  ellipse(90, i, 10, 10);
  ellipse(150, i, 10, 10);
  ellipse(210, i, 10, 10);
  ellipse(270, i, i, i);
}

fill(255);
textSize(20);
text("Merry", 130, 400);
text("Christmas ", 110 ,420);
color(255, 204, 0);
smooth();

noStroke();
fill(255);
ellipse(20, 500, 7, 7);
ellipse(80, 500, 7, 7);
ellipse(130, 500, 7, 7);
ellipse(180, 500, 7, 7);
ellipse(230, 500, 7, 7);
ellipse(280, 500, 7, 7);

ellipse(50, 250, 5, 5);
ellipse(90, 250, 5, 5);
ellipse(130, 250, 5, 5);
ellipse(170, 250, 5, 5);
ellipse(210, 250, 5, 5);
ellipse(250, 250, 5, 5);

B10034005_薛天惠_聖誕樹



    

size (400, 600);
background(23, 100, 203);

for (int i=3; i<400; i=i+1){
  stroke(23+i,100+i,203+i);
  line(0,150-i/2,400,100-i);
}

for (int i=3; i<400; i=i+1){
  stroke(23-i,100-i,203-i);
  line(0,450+i,400,400+i*2/3);
}

for (int i=1; i<40; i=i+1) {
  stroke(108,88,7);
  line(200+i*2/3,270,200+i,400);
}

for (int i=1; i<40; i=i+1) {
  stroke(108,88,7);
  line(200-i*2/3,270,200-i,400);
}

for (int i=1; i<160; i=i+1) { //down
  stroke(30,147,120);
  line(200,150,120+i,300+i/7);
}

for (int i=1; i<100; i=i+1) { //up
  stroke(156,253,234);
  line(200,130,240-i,190+i/4);
}