2012年9月11日 星期二

week01,HW01


Processing + Arduino + Servo.mp4


size(600,600);

PImage webImg;
background(255, 204, 0);
 webImg = loadImage("http://buytheway.buyble.com.tw/wp-content/uploads/2011/01/hello-kitty-fredscorner1.jpg", "jpg");
image(webImg, 0, 0);
課堂心得:
開始了解processing的程式,也學了一些他的使用方法,也更想學其他相關的東西,使用電腦搭配其他東西做應用。
原圖:

以下是畫的很不像的小機器人:
size(400, 330);//畫布大小
background(255, 255, 255);//白色背景
fill(240, 235, 230);//右手顏色
ellipse(380, 350, 40, 120);//右肩位置
fill(240, 235, 230);//身軀顏色
rect(240, 280, 150, 150, 50, 40, 12, 18);//身軀
noStroke();//無邊
fill(0, 0, 0);//脖子顏色
ellipse(320, 260, 110, 80);//脖子位置
ellipse(250, 320, 30, 60);//右肩位置
stroke(0,0,0);//黑邊
fill(240, 235, 230);//右手顏色
ellipse(245, 350, 40, 120);//右肩位置
fill(245, 240, 235);//頭形顏色
ellipse(320, 200, 180, 180);//頭形位置
ellipseMode(CORNER);//漸層一在其頭的一角
noStroke();//無邊
fill(253, 248, 242,72);//漸層一顏色
ellipse(315, 130, 80, 80);//漸層一位置
noStroke();//無邊
fill(255, 255, 255,72);//漸層二顏色 
ellipse(340, 140, 50, 50);//漸層二位置
stroke(0,0,0);//黑邊
noFill();//不放顏色
bezier(230, 215,  230, 195,  410, 195,  410,215);//曲線
fill(22, 165, 24,80);//右眼顏色
triangle(300, 201, 265, 202, 280, 220);//右眼位置
fill(22, 165, 24,80);//左眼顏色
triangle(350, 201, 382, 203, 369, 218);//左眼位置


1 則留言: