xxxxxxxxxx
35
var x=0
var y=400
function setup() {
createCanvas(400, 400);
stroke(255,0,0);
}
function draw() {
fill("orange");
background(0,255,255);
ellipse(x,200,100,50);
triangle(-100+x,175,-100+x,225,-50+x,200);
arc(x,200,20,30,150,20);
arc(x-10,200,20,30,150,20);
stroke("black");
fill("black");
ellipse(x+20,190,10,10);
x=x+1
if(x>500){
x=-50
}
}
function draw(){
background(0,255,255);
fill("gray");
ellipse(y,100,100,50);
triangle(y+100,175-100,y+100,225-100,y+50,200-100)
ellipse(y-20,90,10,10)
y=y-1
if(y<-50){
y=450
}
}