Orchid orchid; int leafCount; int maxLeaves; void setup(){ size(600,150); colorMode(RGB,255,255,255,100); background(255); smooth(); orchid = new Orchid(random(width), height+10); maxLeaves = 100; } void draw(){ if (orchid.timer == 0){ leafCount = leafCount +1; println(leafCount); } if (leafCount