class Emo{ int w, h; float cellw, cellh; PImage[] zqnce; int frame = 0; Emo(){ w = 100; h = 50; cellw = width/float(w); cellh = height/float(h); zqnce = new PImage[28]; for(int i=0; izqnce.length-1)frame=0; popStyle(); } void dddot(color k){ fill(k); scale(.8); ddot(); fill(0); scale(.6); ddot(); fill(k); scale(.6); ddot(); } void ddot(){ ellipse(0,0,cellw,cellh); } }