Difference between revisions of "A Moving Circle"
From CodeStuff
(Created page with "<edcode> var x = 20; var y = 20; function move() { x += 0.5; y += 0.1; } function draw() { clear(); drawCircle(x,y,5); } run(move,draw,30); </edcode>") |
(No difference)
|