วาดรูปแบตเตอรี่โดยใช้ตัวแปรทำให้สามารถเคลื่อนย้ายรูปได้ง่ายโดยการเปลี่ยนค่าที่ตัวแปรที่ประกาศ
void setup() {
int countX=70;
int countY=220;
int space=40;
int w=180;//width
int h=90;//height
size(500, 500);
background(255);//white
stroke(#0041E0);//dark blue
strokeWeight(8);
fill(#0393FF);//blue
//big square
rect(countX, countY, w, h);
fill(255);//white
//batt head
rect(countX+180,countY+35, w/9, h-70);
fill(#FF0011);//blue
//battery quntity
rect(countX, countY, space, h);//#1 batt
fill(255);//white
rect(countX+space, countY, space, h);//#2 batt
rect(countX+space*2, countY, space, h);//#3 batt
rect(countX+space*3, countY, space, h);//#4 batt
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น