공 튀기기 |
|||||
---|---|---|---|---|---|
작성자 | 류희현 | 등록일 | 17.07.14 | 조회수 | 46 |
int x=0; int y=0; int speed=3; void setup() { size(500,500); } void draw() { background(0); ellipseMode(CENTER); ellipse(x,y,50,50); x=x+speed; y=y+speed; if(x>500 && y>500 || x<0 && y<0) speed=-speed; } |
이전글 | 공 움직 |
---|---|
다음글 | 공움직이기 정상훈 |