วันอังคารที่ 2 กันยายน พ.ศ. 2557

Lab2 : pencil


void setup() {
size(300, 300);
background(#2EB82E);
draw_rectPencil(100,125,15,90,5);

draw_pencilTriangle(100,210,122,250,145,210); //wood

}
void draw_rectPencil(int x,int y,int w,int h,int r){
fill(255,255,0); //yellow
rect(x,y,w,h,r); //left
fill(0,255,0); //green
rect(x+15,y,w,h,r); //middle
fill(255,255,0); //yellow1
rect(x+30,y,w,h,r); //right
fill(204,204,0);//yellow2
rect(x,y-20,w+30,h-65,r-5);//eraser
fill(255,255,255);//white
rect(x,y-20,w+30,h-80,r-2);//eraser
fill(0,0,0);
rect(x+20,y+121,w-10,h-85,r-5);//graphite

}
void draw_pencilTriangle(int x1,int y1,int x2,int y2,int x3,int y3){
fill(255,255,255);
triangle(x1,y1,x2,y2,x3,y3);
}

ไม่มีความคิดเห็น:

แสดงความคิดเห็น