xxxxxxxxxx
18
function makeFish(x,y,w,h,c){
fill(c);
noStroke();
ellipse(x,y,w,h);
triangle(x-w/2,y,x-w/2-w/4,y-h/2,x-w/2-w/4,y+h/2);
fill(0);
ellipse(x+w/2-w/10,y,h/10,h/10);
}
function setup() {
createCanvas(600, 500);
}
var x=0;
function draw() {
background(53,253,255);
makeFish(x,100,50,30,color(200));
x++;
if(x>width) x=0;
}