Hi. How can you make a method that tells if an object is in the top-half and bottom-half of the world? The world is 700x400. I think it might be an if statement about the y-value. Also clockwise is turn(90); and counterclockwise turn(-90); ?


turn(getY() < 200 ? -90 : 90);
turn(90*Math.signum(getY()*2-399));