class Feuille { //position float x, y; // X-coordinate, y-coordinate //speed PVector [] v; //aimed direction PVector vise=new PVector(); //"seeking" vector PVector deviation=new PVector(); //worm's length boolean typeVer=true; int limiteDown; PImage s; float largeur; float longueur; float trans; int couleur; float vitessevariation=0.02; float vx=.3; float vy=.5; int visex=0; int visey=0; float devx=0; float devy=0; float rot=0; boolean on = true; // Turns the display on and off // Constructor Feuille(float Xpos, float Ypos, float Largeur, float Longueur,int Couleur,float Trans,float Rot) { x = Xpos; y = Ypos; largeur = Largeur; longueur=Longueur; couleur = Couleur; rot=Rot; trans=Trans; } void start(float xpos, float ypos) { x = xpos; y = ypos; on = true; } void display() { if (on == true) { noStroke(); fill(couleur,trans); pushMatrix(); translate(x,y); rotate(rot); s = loadImage("leaf.png"); smooth(); image(s, -largeur/2, -longueur, largeur, longueur); tint(255,trans); popMatrix(); x+=vx; y+=vy; } } }