Exercise 09
by Haig. Average Reading Time: less than a minute.
// Animation Basics
float circle_x = 0;
void setup() {
size(400,400);
noStroke();
fill(#C1FF3E);
}
void draw() {
background(#1BB1F5);
ellipse(circle_x,50, 50, 50);
circle_x = circle_x + 1;
}
No comments on ‘Exercise 09’
Leave a Reply