xxxxxxxxxx
54
fish=['🐠','🐡','🐟'];
my_fish=[];
function setup() {
createCanvas(800, 500);
angleMode(DEGREES);
}
function draw() {
background(40,255,255);
translate(400,250);
for(let i=0;i<my_fish.length;i++){
my_fish[i].move(random(1,8));
my_fish[i].show();
}
}
function mousePressed(){
my_fish.push(new Fish(random(fish),random(20,50),mouseX,mouseY,30));
}
class Fish{
constructor(f,s,x,y,a,fwd=true){
this.fish=f;
this.s=s;
this.x=x;
this.y=y;
this.a=a;
self.fwd=fwd;
}
move(dx){
if(self.fwd && this.x+dx<width/2){
this.x += dx;
}
else if (self.fwd && this.x+dx>=width/2){
self.fwd=false;
this.a=this.a+90;
this.x -= dx;
}
else if (!self.fwd && this.x-dx>-width/2){
this.x -= dx;
}
else if (!self.fwd && this.x-dx<=-width/2){
self.fwd=true;
this.a=this.a+90;
this.x += dx;
}
}
show(){
rotate(this.a);
textSize(this.s);
text(this.fish,this.x,this.y);
}
}