เขียนรูปเครื่องหมายบวก โดยใช้การกำหนดตัวแปร
//Positive Sign
void setup() {
int dX=120;//diameterX
int dY=160;//diameterY
int w=100;//weight
int h=100;//height
size(500, 500);
background(#E4DBFF); //blue
//rectangular area
stroke(#FF0505);//red
strokeWeight(0);
fill(#FF0505);//red
rect(dX,dY,w*3,h);//horizontal rect
rect(dX+100,dY-100,w,h*3);//vertical rect
//Title
textSize(20);
text("Positive Sign",dX+90,550-dY);
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น