//fish // Juan delgado float horizon; float wavesX, wavesY void setup(){ //setup size(800,600); horizon= height/3; } void draw() { //next frame scene(); waves(); } void scene(){ // sky, ocean background(10,178,242); fill(10,42,242); rectMode(CORNERS); rect (0, 120, width, height *4/4); //ocean }