공 위아래로 튀기기 |
|||||
---|---|---|---|---|---|
작성자 | 이정은 | 등록일 | 17.07.14 | 조회수 | 52 |
int x=200; int y=200; int speed=20; void setup(){ size(500,500); } void draw(){ background(0); ellipseMode(CENTER); ellipse(x,y,50,50); if (x>500 || x<0 && y>500 || y<0) speed=-speed; x=x+speed; y=y+speed; }
|
이전글 | 공움직이기 |
---|---|
다음글 | 공움직이기 |