HW#3 - a
HW#3, Fan Lan, MLA 3rd-yr, Sep. 7
void setup(){
size(620, 620);
smooth();
fill(102);
noStroke();
}
void draw() {
background(204);
fill(0,0,0);
stroke(2);
float diameter = pmouseX+100;
int y=310;
int x=310;
ellipse (x, y, diameter, diameter);
}
Comments
Post a Comment